@font-face{font-family:"Roboto";font-style:normal;font-weight:400;font-display:swap;src:url("/fonts/roboto/Roboto-Regular.woff2") format("woff2");}
@font-face{font-family:"Roboto";font-style:normal;font-weight:700;font-display:swap;src:url("/fonts/roboto/Roboto-Bold.woff2") format("woff2");}
body,h1,h2,h3,h4,h5,h6{font-family:"Roboto",Arial,sans-serif;}
*{margin:0;padding:0;box-sizing:border-box;}
body{line-height:1.6;background:#ffffff;color:#333333;}
.container{width:80%;margin:0 auto;padding:20px;}
header{background:#4CAF50;color:#fff;padding:20px 0;}
header h1{text-align:center;font-size:2.5em;}
nav ul{list-style:none;display:flex;justify-content:center;}
nav ul li{margin:0 15px;}
nav ul li a{color:#fff;text-decoration:none;font-size:1.2em;}
main{padding:40px 0;}
section{margin-bottom:40px;}
section h2{font-size:2em;margin-bottom:20px;}
section p{font-size:1.1em;margin-bottom:20px;}
.produkt-card{display:flex;flex-direction:column;align-items:center;background:#fff;border:1px solid #ddd;padding:20px;text-align:center;box-shadow:0 4px 8px rgba(0,0,0,0.1);margin-bottom:20px;transition:transform .3s;}
.produkt-card:hover{transform:translateY(-5px);}
.produkt-card img{max-width:100%;height:auto;margin-bottom:20px;}
.produkt-card h3{margin-top:20px;font-size:1.5em;}
.produkt-card p{font-size:1.1em;margin-top:10px;}

.btn {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
  /* Übergang für die Skalierung */
  transition: transform 0.3s ease;
  /* Transform-Origin mittig, damit das Skalieren zentriert */
  transform-origin: center center;
}

.btn:hover {
  /* Keine Farbänderung mehr */
  background: #e74c3c;
  /* Skaliere um 20% */
  transform: scale(1.2);
}

form{display:flex;flex-direction:column;}
form label{font-size:1.1em;margin-bottom:8px;}
form input,form textarea{padding:10px;margin-bottom:20px;border:1px solid #ddd;border-radius:5px;font-size:1em;}
footer{background:#4CAF50;color:#fff;text-align:center;padding:10px 0;}
.ueber-uns-bild{width:100%;height:auto;margin-top:20px;}
#testimonials{background:#ffffff;padding:40px 0;}
.testimonial-card{background:#ffffff;border:1px solid #ddd;padding:20px;margin-bottom:20px;box-shadow:0 4px 8px rgba(0,0,0,0.1);text-align:center;transition:transform .3s;}
.testimonial-card:hover{transform:translateY(-5px);}
.testimonial-text{font-size:1.2em;font-style:italic;margin-bottom:10px;}
.testimonial-author{font-size:1.1em;font-weight:bold;color:#4CAF50;}
.faq-item{margin-bottom:20px;}
.faq-question{font-size:1.3em;color:#4CAF50;cursor:pointer;transition:color .3s;}
.faq-question:hover{color:#45a049;}
.faq-answer{font-size:1.1em;margin-top:10px;display:none;padding-left:20px;}
@media (max-width:768px){
  .container{width:90%;}
  header h1{font-size:2em;}
  nav ul{flex-direction:column;align-items:center;}
  .produkt-card{width:100%;}
  .btn{font-size:1.1em;}
  section h2{font-size:1.8em;}
  section p{font-size:1em;}
}
@media (max-width:480px){
  header h1{font-size:1.8em;}
  .btn{font-size:1em;padding:8px 16px;}
}

/* Hero-Grid: 2 Spalten nebeneinander */
.hero-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Linke Spalte: Text */
.hero-text {
  flex: 1 1 50%;
}

/* Rechte Spalte: Bild */
.hero-image {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile-Responsive: Einspaltig */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-image {
    flex: none;
    width: 100%;
  }
  .hero-image {
    margin-top: 20px;
    text-align: center;
  }
}
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #4CAF50;  /* stelle sicher, dass der Hintergrund deckend ist */
}
@font-face {
  font-family: "Roboto";
  src:
    local("Roboto"),
    url("/fonts/roboto/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.features {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.features li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.8em;
  font-size: 1.1em;
}

.features li::before {
  content: "\2705";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
.rating {
  font-size: 1.5em;      /* Größe der Sterne */
  line-height: 1;
  display: flex;
  align-items: center;
}

.rating .stars {
  color: #f1c40f;        /* gold-gelb */
  margin-right: 0.5em;
}

.rating .rating-value {
  font-size: 0.8em;      /* kleinere Schrift für die Zahl */
  color: #333;           /* dunkelgrau oder passend zu deinem Design */
}

/* Header-Grid: 3 Spalten */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
}

/* Logo */
.header-logo img {
  display: block;
  max-height: 50px;
}

/* Navigation */
.header-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger (hidden desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Verstecke Desktop-Navigation und CTA */
  .header-nav {
    display: none;
  }

  /* Zeige Hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile-Nav (geschlossen per default) */
  .header-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #4CAF50;
  }
  .header-nav.open ul {
    flex-direction: column;
    gap: 0;
  }
  .header-nav.open li {
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .header-nav.open a {
    display: block;
    padding: 12px;
  }
}

/* ACCORDION FAQ */
.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1em;
  background: #f4f4f4;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 1.1em;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:hover {
  background: #eaeaea;
}
.accordion-button[aria-expanded="true"] {
  background: #e0f7fa;
}
.accordion-icon {
  transition: transform 0.3s;
}
.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding: 0 1em;
}
.accordion-content p {
  margin: 1em 0;
}

/* When expanded, allow content to show */
.accordion-button[aria-expanded="true"] + .accordion-content {
  max-height: 500px; /* genug, um den Inhalt aufzunehmen */
}



/* Review-Section im Google-Stil */
.reviews {
  padding: 40px 0;
}

/* Reviews-Title zentrieren wie bei Ingredients */
.reviews h2,
#reviews-title {
  /* Wenn Du CSS Grid nutzt */
  grid-column: 1 / -1;
  /* Horizontale Zentrierung */
  text-align: center;
  /* Abstand nach unten wie bei den Ingredients */
  margin-bottom: 40px;
  /* Optional: gleiche Schriftgröße */
  font-size: 2em;
}

.review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.review-author {
  font-weight: bold;
  font-size: 1em;
}

.review-header meta + text {
  color: #555;
  font-size: 0.9em;
}

.review-rating {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review-rating .stars {
  color: #f1c40f; /* goldgelb */
  font-size: 1.6em;
  margin-right: 8px;
}

.review-body {
  font-style: italic;
  color: #333;
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid #f1c40f;
}

/* Responsive */
@media (max-width: 768px) {
  
  .container {
    width: 90%;          /* oder dein gewünschter Wert */
    margin: 0 auto;      /* horizontal zentrieren */
    padding-left: 10px;   /* reduziert links auf 10px */
    padding-right: 10px;  /* reduziert rechts auf 10px */
    text-align: center;  /* Text und Inline-Elemente zentrieren */
  }
  
  .description-section {
      padding-left: 10px;
      padding-right: 10px;
  }
  
  .ingredients-image {
    text-align: center;
  }
  .ingredients-image img {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  .rating {
    display: flex !important;
    justify-content: center;
    margin: 1em 0;
  }
  
  /* Review-Rating (Sterne) auf Mobil sichtbar und zentriert */
  .review-rating {
    display: flex !important;
    justify-content: center;
    margin: 0.5em 0 1em;
  }
  
  .review-card {
    padding: 16px;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-avatar {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  footer img {
    display: block;       /* Block-Element für margin auto */
    margin: 0 auto 20px;  /* Zentriert horizontal, 20px Abstand nach unten */
    height: auto;         /* Seitenverhältnis beibehalten */
  }
}


/* Desktop: drei Reviews nebeneinander */
.reviews {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-card {
  flex: 1 1 calc(33.333% - 20px);
}

/* Mobile: untereinander */
@media (max-width: 768px) {
  .reviews {
    flex-direction: column;
    gap: 0;
  }
  .review-card {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Einnahme-Section */
.einnahme-section {
  padding: 40px 0;
}

.einnahme-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.einnahme-content {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 80%;   /* Optional: Begrenzung für bessere Lesbarkeit */
  margin: 0 auto;     /* Zentriert im Container */
  text-align: justify;
}

/* Beschreibung-Section */
.description-section {
  padding: 40px 0;
}

.description-section h2 {
  grid-column: 1 / -1;      /* falls du Grid nutzt */
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.description-content {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 80%;         /* Optional: Lesbarkeit erhöhen */
  margin: 0 auto;           /* zentriert im Container */
  text-align: justify;      /* schöner Blocksatz */
}


/* Section als Grid mit Überschrift über beide Spalten */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center; /* beide Spalten vertikal zentriert */
  padding: 40px 0;
}

/* H2 über alle Spalten */
.ingredients-grid h2 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
}

/* Text-Spalte */
.ingredients-text {
  font-size: 1.1em;
  text-align: start;
  max-width: 80%;   /* Optional: Begrenzung für bessere Lesbarkeit */
  margin: 0 auto;     /* Zentriert im Container */
}
.ingredients-text .features {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.ingredients-text .features li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.8em;
  font-size: 1.1em;
}
.ingredients-text .features li::before {
  content: "\2705";
  position: absolute;
  left: 0;
  top: 0;
}

/* Bild-Spalte */
.ingredients-image img {
  max-width: 80%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Mobile-Responsive: Einspaltig */
@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ingredients-image {
    margin-top: 20px;
  }
}

/* Desktop: 3 Spalten */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Smartphones: 1 Spalte */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
