/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v50-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-v50-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/roboto-v50-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root{
  --pink: #c32564;
  --pink-hover: #9d1a4f;
  --text: #333;
  --muted: #777;
  --grau: #5d5d5d;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  color: var(--text);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f3f3f3;
}

p, li{
  font-weight: 400;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header{
  padding: 28px 0 14px;
  background: #fff;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo{
  max-width: 360px;
  height: auto;
  display: block;
}

/* Navigation (immer sichtbar) */
.mainnav{
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;

}

.site-main {
	background: #fff;
	padding-bottom: 50px;	
	  position: relative;
  z-index: 2;
  box-shadow: 0 28px 18px rgba(0,0,0,0.12);
}

.home-link{
  text-decoration: none;
  color: var(--pink);
  font-size: 24px;
  padding-right: 8px;
}

.home-icon{
  display: inline-flex;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.home-link{
  text-decoration: none;
}

.home-icon{
  font-size: 26px;          /* größer */
  color: var(--pink);          /* pink */
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-link:hover .home-icon{
  color: var(--pink-hover);          /* dunkleres Pink bei Hover */
}



.th-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
/* Wrapper aus deinem mod_menu override */
.th-nav{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* <- Burger rechts */
  gap: 12px;
}


.nav-toggle{
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #777;
}

/* Desktop/Mobil Logik */
.th-nav-desktop{ display:block; }
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .th-nav-desktop{ display:none; }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:0;
    background:transparent;
    color: var(--pink);
    font-size:28px;
    line-height:1;
    cursor:pointer;
  }
}

/* Bootstrap-Offcanvas Branding */
.th-offcanvas{
  background: var(--pink);
  color: #fff;
  width: min(86vw, 380px);
}

.th-offcanvas .offcanvas-title{
  color:#fff;
  letter-spacing:.08em;
  font-weight:600;
  font-size:18px;
  text-transform:uppercase;
}

/* Menü im Offcanvas */
.th-offcanvas .navlist{
  display:flex;
  flex-direction:column;
  gap:0;
  margin: 6px 0 0;
  padding:0;
}

.th-offcanvas .navlist li{
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 16px 0;
}

.th-offcanvas .navlist a{
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:18px;
}

.th-offcanvas .navlist a.is-active{
  font-weight:600;
  opacity:1;
}

.th-offcanvas .navlist a:hover{
  color: rgba(255,255,255,0.6);
}

.th-offcanvas .navlist a.is-active{
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}


.navlist{
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* wichtig für mobil */
}

.navlist a{
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 16px;
  color: var(--grau);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.navlist a:hover{
  color: var(--pink);
}

.navlist a.is-active{
  color: var(--pink);
  font-weight: 600;
}

/* Content */
.content-wrap{
  padding: 18px 0 40px;

}

/* Grüner Block */
.pink-panel{
  background: var(--pink);
  padding: 30px 0;
}

.pink-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pink-col{
  color: #fff;
  padding: 0 30px;
}

.pink-col h1,
.pink-col h2,
.pink-col h3{
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 24px;
  margin-top: 0;
}
.pink-col p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
   letter-spacing: .01em;
}

.pink-col a {
  color: #fff;
  text-decoration: underline;
}

.pink-col a:hover {
  color: #fff;
  text-decoration: none;
}

.cta-wrap{
  padding: 60px 0;
  background: #fff;
  position: relative;
  z-index: 2;
  /*box-shadow: 0 18px 28px rgba(0,0,0,.12); */
}

.cta-wrap .container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Linien links & rechts */
.cta-wrap .container::before,
.cta-wrap .container::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* Button größer */
.cta-button{
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 18px 32px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.6;
  min-width: 380px;
  transition: background-color .2s ease, transform .2s ease; /* für weichen Effekt */
}

/* Hover-Effekt */
.cta-button:hover{
   background: var(--pink-hover);
  color: #fff;

}

/* Footer = nur grauer Bereich bis ganz unten */
.site-footer{
  background: #f3f3f3;
  padding: 40px 0 60px;
}

.footer-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
  position: relative; /* WICHTIG für das Signet */
}

/* Signet */
.footer-signet{
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.signet{
  height: 128px;
  width: auto;
  display: block;
  opacity: .95;
}

/* Footer-Menü ohne Box */
.footer-nav{
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 130px 0 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav a{
  text-decoration: none;
  color: var(--grau);
  font-size: 18px;
  font-weight: 600;
}

.footer-nav a:hover{
  text-decoration: none;
  color: var(--pink);

}

/* Responsive */
@media (max-width: 900px){
  .header-inner{
    flex-direction: row;      /* nicht mehr column */
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .brand-logo{
    max-width: 240px;         /* damit Platz für Burger bleibt */
  }

  /* NAV soll direkt neben dem Logo sitzen */
  .mainnav{
    margin-left: 0;           /* wichtig: nicht nach rechts schieben */
  }


  .home-link{ display:none; } 

  .pink-inner{
    grid-template-columns: 1fr;
  }

  .footer-card{
    padding-top: 54px;
  }

   .header-inner{
    flex-direction: row;
    align-items: center;
  }

  .brand-logo{
    max-width: 240px; /* damit Platz für Burger bleibt */
    height: auto;
  }

  .mainnav{
    margin-left: auto;
  }
}

.inhalt {padding: 0 60px;}
.inhalt h1, .inhalt h2, .inhalt h3 {color: var(--pink); }
.inhalt a {color: var(--pink); text-decoration: none;}
.inhalt a:hover {color: var(--pink-hover); text-decoration: underline;}

.leistungen {padding-top: 40px;}
.leistung-widget {padding: 0 40px 40px 15px;}
.leistungsbeschreibung {
  border: solid 0px #777;
}
.leistungsbeschreibung h2 {font-size: 20px;}

.teamoben {padding-top: 40px;}
.teamunten {padding-top: 70px;}

.teamoben h2, .teamunten h2 {font-size: 28px}

.team2 {padding-top: 20px;}
.team2 h3, .team h3 {font-size: 20px;}

.start_img {padding-bottom: 30px;}