:root {
  --deep-green: #1E2F26;
  --moss: #5E7C5A;
  --sand: #F4F1EA;
  --offwhite: #FAF8F4;
  --text: #2B2B2B;
}

/* ===============================
   FONTS
================================= */

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'),
       url('fonts/cormorant-garamond-v21-latin-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'),
       url('fonts/cormorant-garamond-v21-latin-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Inter */
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'),
       url('fonts/inter-v20-latin-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v20-latin-400.woff2') format('woff2'),
       url('fonts/inter-v20-latin-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'),
       url('fonts/inter-v20-latin-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}




/* ===============================
   GLOBAL RESET
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}

/* ===============================
   HEADER
================================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,248,244,0.75);

-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* Navigation */
.nav {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--deep-green);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--moss);
}

/* ACTIVE LINK */
.nav-links a.active {
  color: var(--moss);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--moss);
}

/* Trennlinie Desktop */
.nav-links a:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: rgba(0,0,0,0.2);
}

/* ===============================
   Spacing
================================= */


.section + .image-break {
  margin-top: 40px;
}

.image-break + .section {
  margin-top: 40px;
}

/* ===============================
   HERO
================================= */


.hero {
  margin-top: 90px;
  height: 40vh;
  background-image: url('assets/images/fluss.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay für bessere Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Text Container */
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Headline */
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-shadow: 0 6px 30px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}

/* Subtext */
.hero p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===============================
   MOBILE OPTIMIERUNG
================================= */

@media (max-width: 768px) {

  .hero {
    height: 50vh;
    background-position: center 10%;
  }

  .hero-content {
    top: 15%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

}





/* ===============================
   IMAGE BREAK
================================= */

.image-break {
  position: relative;
  height: 60vh;
  overflow: hidden;

  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;

  will-change: background-position;
  transform: translateZ(0); /* GPU Layer */
}

.image-bg {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* ===============================
   SECTIONS
================================= */

.section {
  padding: 120px 10%;
  max-width: 1300px;
  margin: auto;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}

.alt {
  background: var(--sand);
}

/* ===============================
   CTA - Call to action
================================= */


.cta-box {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* ===============================
   Typografie und Hierachie
================================= */


.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.section p {
  text-align: center;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 20px auto;
}

.subpage .section p,
.subpage .section h2,
.subpage .section h1 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}


/* ===============================
   PRICING
================================= */

.pricing {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
justify-content: center;
}

.price-card {
  background: var(--moss);
  padding: 40px;
  border-radius: 20px;
  width: 280px;
  color: white;
}
.pricing-section {
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 40px;
}
/* ===============================
   FAQ HERO
================================= */

.faq-hero {
  margin-top: 90px;
  height: 40vh;
  background-image: url('assets/images/frosch1.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay für bessere Lesbarkeit */
.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Text Container */
.faq-hero-content {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Headline */
.faq-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-shadow: 0 6px 30px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}

/* Subtext */
.faq-hero p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===============================
   MOBILE OPTIMIERUNG
================================= */

@media (max-width: 768px) {

  .faq-hero {
    height: 50vh;
    background-position: center 10%;
  }

  .faq-hero-content {
    top: 15%;
  }

  .faq-hero h1 {
    font-size: 2rem;
  }

  .faq-hero p {
    font-size: 1rem;
  }

}


/* ===============================
   KAMBO HERO
================================= */

.kambo-hero {
  margin-top: 90px;
  height: 40vh;
  background-image: url('assets/images/froesche.jpg');
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay für bessere Lesbarkeit */
.kambo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Text Container */
.kambo-hero-content {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Headline */
.kambo-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-shadow: 0 6px 30px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}

/* Subtext */
.kambo-hero p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===============================
   MOBILE OPTIMIERUNG
================================= */

@media (max-width: 768px) {

  .kambo-hero {
    height: 50vh;
    background-position: center 10%;
  }

  .kambo-hero-content {
    top: 15%;
  }

  .kambo-hero h1 {
    font-size: 2rem;
  }

  .kambo-hero p {
    font-size: 1rem;
  }

}


/* ===============================
  Testimonials HERO
================================= */

.testimonials-hero {
  margin-top: 90px;
  height: 40vh;
  background-image: url('assets/images/stickgross.jpg');
  background-size: cover;
  background-position: center 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay für bessere Lesbarkeit */
.testimonials-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Text Container */
.testimonials-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Headline */
.testimonials-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-shadow: 0 6px 30px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}

/* Subtext */
.testimonials-hero p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===============================
   MOBILE OPTIMIERUNG
================================= */

@media (max-width: 768px) {

  .testimonials-hero {
    height: 50vh;
    background-position: center 10%;
  }

  .testimonials-hero-content {
    top: 15%;
  }

  .testimonials-hero h1 {
    font-size: 2rem;
  }

  .testimonials-hero p {
    font-size: 1rem;
  }

}



/* ===============================
   UEBER MICH HERO
================================= */

.ueber-mich-hero {
  margin-top: 90px;
  height: 40vh;
  background-image: url('assets/images/ich.jpg');
  background-size: cover;
  background-position: center 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay für bessere Lesbarkeit */
.ueber-mich-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Text Container */
.ueber-mich-content {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Headline */
.ueber-mich-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-shadow: 0 6px 30px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}

/* Subtext */
.ueber-mich-hero p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===============================
   MOBILE OPTIMIERUNG
================================= */

@media (max-width: 768px) {

  .ueber-mich-hero {
    height: 50vh;
    background-position: center 10%;
  }

  .ueber-mich-hero-content {
    top: 15%;
  }

  .ueber-mich-hero h1 {
    font-size: 2rem;
  }

  .ueber-mich-hero p {
    font-size: 1rem;
  }

}



/* ===============================
   FORM
================================= */

form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

/* ===============================
   BUTTONS
================================= */

.button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  background: var(--moss);
  color: white;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.price-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;

  background: transparent;
  border: 1px solid var(--deep-green);
  color: var(--deep-green);
}

.price-button:hover {
  background: var(--deep-green);
  color: #fff;
}

.section a.price-button {
  display: block;
  margin: 20px auto 0 auto;
  width: fit-content;
}

/* ===============================
   MOBILE MENU – CLEAN VERSION
================================= */

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none; /* Desktop: aus */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #1E2F26;
  display: block;
}

/* Animation zu X */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CLOSE BUTTON */
.menu-close {
  display: none;
}

/* ===============================
   MOBILE STYLES
================================= */

@media (max-width: 768px) {

  /* 👉 Hamburger sichtbar */
  .menu-toggle {
    display: flex;
  }

  /* 👉 Desktop Menü komplett verstecken */
  .nav {
    display: none;
  }

  /* 👉 Aktives Mobile Menü */
  .nav.active {
    display: flex;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    z-index: 9999;

    background: rgba(20,30,25,0.96);

    justify-content: center;
    align-items: center;

    flex-direction: column;

    transform: translateX(0);
  }

  /* 👉 Links im Mobile Menü */
  .nav-links {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1.6rem;

    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
  }

  /* 👉 Animation rein */
  .nav.active .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  /* 👉 Close Button sichtbar */
  .menu-close {
    display: block;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 10000;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* 👉 Body fix */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===============================
   DESKTOP RESET (wichtig!)
================================= */

@media (min-width: 769px) {

  .nav {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    transform: none !important;
  }

  .menu-close {
    display: none;
  }
}

/* 👉 Link Animation Delay */
.nav.active .nav-links a:nth-child(1) { transition-delay: 0.1s; }
.nav.active .nav-links a:nth-child(2) { transition-delay: 0.18s; }
.nav.active .nav-links a:nth-child(3) { transition-delay: 0.26s; }
.nav.active .nav-links a:nth-child(4) { transition-delay: 0.34s; }
.nav.active .nav-links a:nth-child(5) { transition-delay: 0.42s; }
.nav.active .nav-links a:nth-child(6) { transition-delay: 0.5s; }

@media (min-width: 769px) {
  .nav {
    position: static;
    transform: none !important;
    height: auto;
    background: none;
    backdrop-filter: none;
  }
}

/* ===============================
   LEGAL PAGES
================================= */

.section-top {
  margin-top: 90px;
}


/* ===============================
   TESTIMONIALS
================================= */

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--moss);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
}



/* ===============================
   TESTIMONIAL CARDS
================================= */

/* Vertikale Anordnung der Testimonials */
.testimonial-list {
  display: flex;
  flex-direction: column; /* Stapelt die Karten untereinander */
  gap: 30px;              /* Abstand zwischen den Karten */
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  font-style: italic;
  overflow: visible; /* vorher: hidden */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;       /* automatische Höhe */
  min-height: 200px;  /* Mindesthöhe für kurze Testimonials */
}

.testimonial-card:hover{

transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);

}

.testimonial-card::before{

content:"“";
position:absolute;
top:-20px;
left:10px;
font-size:120px;
color:rgba(94,124,90,0.15);
font-family:'Cormorant Garamond',serif;
line-height:1;

}

.testimonial-card span{

display:block;
margin-top:18px;
font-size:0.9rem;
opacity:0.7;
font-style:normal;

}
/* ===============================
   FAQ
================================= */

.faq {

margin-top: 40px;

}

.faq-item {

border-bottom: 1px solid #ddd;

}

.faq-question {

width: 100%;
padding: 20px 0;
font-size: 1.1rem;
background: none;
border: none;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;

}

.faq-arrow {

width: 10px;
height: 10px;
border-right: 2px solid var(--deep-green);
border-bottom: 2px solid var(--deep-green);
transform: rotate(45deg);
transition: transform 0.3s ease;

}

.faq-question.active .faq-arrow {

transform: rotate(-135deg);

}

.faq-answer {

max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease;

}

.faq-answer p {

padding-bottom: 20px;

}

/* ===============================
   HEADER SCROLL EFFECT
================================= */

.header.scrolled{

height:70px;
background:rgba(250,248,244,0.98);
box-shadow:0 4px 15px rgba(0,0,0,0.08);

}

.header.scrolled .logo img{

height:45px;

}

/* ===============================
   HERO ANIMATION
================================= */

.hero-content{

opacity:0;
transform:translateY(30px);
animation:heroFade 1.2s ease forwards;

}

@keyframes heroFade{

to{
opacity:1;
transform:translateY(0);
}

}

/* ===============================
   TESTIMONIAL SLIDER
================================= 

.testimonial-slider{

display:flex;
gap:30px;
overflow-x:auto;
scroll-snap-type:x mandatory;
padding-bottom:20px;

}

.testimonial-slider::-webkit-scrollbar{

display:none;

}

.testimonial-card{

min-width:320px;
scroll-snap-align:start;

}
*/


/* ===============================
   FOOTER
================================= */

footer {
  padding: 40px 10%;
  text-align: center;
  background: var(--sand);
}

/* ===============================
   SCROLL REVEAL
================================= */

.header.scrolled {
  backdrop-filter: blur(10px);
}

.reveal{

opacity:0;
transform:translateY(40px);
transition:all 1s ease;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   STORY LAYOUT
================================= */

.story-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* wechselt Bildseite */
.story-block.reverse {
  flex-direction: row-reverse;
}

/* Mobile Anpassung */

@media (max-width: 768px) {

  .story-block {
    flex-direction: column;
    gap: 30px;
  }

  .story-block.reverse {
    flex-direction: column;
  }

}

.story-block {

opacity:0;
transform:translateY(40px);
transition:all 0.9s ease;

}

.story-block.visible {

opacity:1;
transform:translateY(0);

}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.cta-box .button {
  margin-top: 10px;
}
body.kontakt-page .section {
  opacity: 1;
  transform: none;
}

body.faq-page .section {
  opacity: 1;
  transform: none;
}
body.subpage .section {
  opacity: 1;
  transform: none;
}

.disclaimer-hint {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

footer a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--deep-green);
  font-weight: 500;
}