/* Grundstil */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  min-height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #496A8A;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
body {
  scroll-padding-top: 120px; /* sorgt dafür, dass der Abschnitt unter der Navigation nicht verdeckt wird */
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
   min-height: 50vh;
  background-image: url('Header.webp');
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  
}

header p {
  color: #F58886 !important;
  font-size: clamp(3rem, 10vw, 11rem); /* Mindestens 3rem, bevorzugt 10vw und maximal 8rem */
  z-index: 2;
  margin-top: 250px; /* Fügt Abstand oberhalb der Überschrift hinzu */
}

header h1
{
  color: #F58886 !important;
  font-size: clamp(3rem, 10vw, 11rem); /* Mindestens 3rem, bevorzugt 10vw und maximal 8rem */
  z-index: 2;
  margin-top: 350px; /* Fügt Abstand oberhalb der Überschrift hinzu */
  margin-bottom: 0px; /* fügt Abstand nach unten hinzu – aber klein halten */

}


.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 1.5rem;
}


.subheader {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #F58886;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0;  /* reduziert Abstand nach oben */
}

/* Hamburger Menu (für kleine Bildschirme) */
.hamburger {
  display: none;  /* Hamburger-Menü ist standardmäßig nicht sichtbar */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  margin-right: 15px;
  margin-top: 10px;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 5px;  /* Höhe der einzelnen Linien */
  width: 100%;
  background-color: white;
  border-radius: 5px;
}

nav {
  position: sticky;
  top: 0;
  background: #496A8A;
  padding: 1rem 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: space-between; /* Verhindert, dass alles aneinanderklebt */
  align-items: center;
}

.nav-logo {
  display: flex;
  justify-content: flex-start; /* Positioniert das Logo links */
  padding-left: 20px; /* Fügt einen kleinen Abstand links hinzu */
}

.logo {
  height: 50px; /* Setzt eine feste Höhe für das Logo */
}

.nav-links {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 1.8rem;
}

  .nav-links.show {
    display: flex; /* Sichtbar machen, wenn die Klasse 'show' hinzugefügt wird */
  }

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}


/* Sektionen */
section {
  padding: 3.5rem 1.5rem /* Erhöht den Abstand oben */
  width: 100%;
  flex-shrink: 0;
}

.section-dark,
.section-light {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-dark {
  background-color: #496A8A;
  color: white;
  padding: 80px 2rem; /* Erhöht das Padding, um mehr Abstand oben und unten zu schaffen */
  min-height: 50vh; /* Erhöht die minimale Höhe des Abschnitts auf 70% der Bildschirmhöhe */
}

.section-light {
  background-color: #ffffff;
  color: #496A8A;
  padding: 80px 2rem; /* Erhöht das Padding, um mehr Abstand oben und unten zu schaffen */
  min-height: 50vh; /* Erhöht die minimale Höhe des Abschnitts auf 70% der Bildschirmhöhe */
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top:0px; /* Fügt oben mehr Abstand hinzu */
  margin-bottom:60px
}

h1, h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

ul li::before {
  content: "\2022";
  color: #496A8A;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.section-dark ul li::before {
  color: white;
}

.checkbox-container {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #ffffff;
}

.checkbox-container a {
  color: #ff726f;
  text-decoration: underline;
}

/* Cards: Was wir bieten */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  font-size: 2.5rem;
}

.card h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #496A8A;
}

.card p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #555;
}

/* Preis-Stil */
.price-box {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.price-box .price-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.price-box .price-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.price-box .price-text {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* Kontaktformular */
.contact-box {
  max-width: 700px;
  margin: 0 auto;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-box label {
  font-weight: 600;
}

.contact-box input,
.contact-box select,
.contact-box textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

.contact-box textarea {
  resize: vertical;
}

.contact-box .success-message {
  display: none;
  background-color: #d4edda;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  color: #155724;
  font-weight: 500;
}

/* Button */

.cta-button:hover {
  transform: scale(1.1);
  background-color: #ff9900; /* Helleres Orange beim Hover */
}

.cta-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.cta-hero {
  margin-top: 0rem;      /* Weniger Abstand nach oben (zum Text) */
  margin-bottom: 3rem;   /* Mehr Abstand nach unten */
}
.cta-hero {
  background-color: #ff726f  !important;
  color: white !important;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0rem;
  border: none;
  cursor: pointer;
  text-align: center;
}


.cta-alt {
  background-color: #ff726f  !important;
  color: white !important;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-alt:hover {
  opacity: 0.9;
}
.submit-button {
  width: auto; /* Damit der Button nur so breit ist wie der Text */
  padding: 0.75rem 1.5rem; /* Gleiche Padding wie bei den anderen Buttons */
  margin-left: 0; /* Verschiebe den Button nach links */
  margin-right: auto; /* Verhindert, dass der Button nach rechts geht */
  background-color: #ff726f  !important;
  color: white !important; /* Weiße Schriftfarbe für den Button */
  display: inline-block;
  border-radius: 8px; /* Gleiche abgerundeten Ecken wie bei den anderen CTAs */
  font-weight: 600; /* Gleiche Schriftstärke wie bei anderen Buttons */
  font-size: 1rem; /* Gleiche Schriftgröße wie bei anderen Buttons */
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  text-align: center;
}


.submit-button:hover {
  background-color: #ff9900; /* Gleicher Hover-Effekt wie bei den anderen CTAs */
  transform: scale(1.05); /* Gleicher Hover-Effekt wie bei den anderen Buttons */
}

/* FAQ Grid */
.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem; /* Erhöht den Abstand zwischen den FAQ und dem Button */


}
.faq-container details {
  background-color: transparent;
  border-radius: 6px;
}

.faq-container details p {
  background-color: transparent;  /* Macht den Hintergrund der Antwort transparent */
  color: inherit;  /* Erbt die Textfarbe der restlichen Seite */
}
.faq-container summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-container p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}

/* Footer */
footer {
  background-color: #496A8A;
  text-align: center;
  padding: 0rem; /* Reduziert das Padding, um den Footer kleiner zu machen */
  font-size: 1rem; /* Macht den Text kleiner */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: auto;
  flex-shrink: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  flex: 1;
  text-align: left;
  color: white;
  font-size: 0.9rem;
}

.footer-left .footer-link {
  color: white;
  text-decoration: none;
  margin-left: 0.5rem;
  font-weight: 500;
}

.footer-left .footer-link:hover {
  text-decoration: underline;
}

.footer-middle {
  flex-shrink: 0;
  text-align: center;
}

.footer-contact {
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
  color: white;
}

.footer-contact a {
  color: white;
  text-decoration: underline;
}

.footer-contact p {
  margin: 0.25rem 0;
}

.whatsapp-icon {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  display: inline-block;
  line-height: 1;
}

.whatsapp-icon i {
  color: #F58886;
  font-size: 1.8rem;
}

/* Responsiv */
@media (max-width: 768px) {

/* Abstand nach Sektionen zum Botton */
  .section-inner {
    margin-top: 10px
    margin-bottom: 0rem; /* Statt z. B. 100px – passt du nach Wunsch an */
  }

  .faq-container {
    margin-bottom: 2rem; /* Optional auch weniger hier */
  }16:24 12.04.2025

  .cta-wrapper {
    margin-top: 1rem; /* Weniger Abstand zu den Cards */
    margin-bottom: 1rem; /* Optional: mehr oder weniger Abstand nach unten */
  }

  .card-container {
    gap: 1rem; /* kleinerer Abstand zwischen den Karten */
  }

  .card {
    padding: 1.2rem; /* optional: kleineres Padding innerhalb */
    margin-bottom: 0.5rem; /* falls nötig, zusätzlichen Abstand reduzieren */
  }

/* Zentrierung Überschriften */ 
  h2, h3 {
    text-align: center;
  }

  /* Hamburger-Menü Container */
  #hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 101;
  }

  .hamburger {
    display: flex; /* Zeigt das Hamburger-Menü nur auf kleineren Bildschirmen */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 140px;
    background-color: #496A8A;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    /* 💥 Wichtig – entfernt zentrierenden Effekt */
    left: auto;
    transform: none;

    /* Nur für Inhalt */
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    width: 100%;
  }

  header {
    padding-top: 150px; /* Weniger Abstand oben */
    min-height: 80vh; /* Optional: Höhe reduzieren */
  }

  header h1 {
    margin-top: 180px; /* Statt 180px oder ähnlichem */
  }

  header p {
    margin-top: 80px;
  }

  .cta-top {
    margin-top: 20px;
    margin-bottom: 10px; /* Abstand nach unten lassen */
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start; /* <- wichtig */
    text-align: left;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .footer-left,
  .footer-contact {
    width: 100%;
    text-align: left; /* <- wichtig */
  }

  .footer-contact {
    margin-right: 0;
  }

.footer-left p,
.footer-contact p {
  margin: 0.25rem 0;
}

  .footer-middle {
    align-self: center;
    text-align: center;
    order: 2;
  }

  .footer-left {
    order: 1;
  }

  .footer-contact {
    order: 3;
  }

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  margin: 40px 0 0 0; /* mehr Abstand nach oben */
}

 h2 {
    font-size: 1.5rem;
  }

  .faq-container {
    grid-template-columns: 1fr;
  }
}


/* Bewertungen / Testimonials */
#bewertungen h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.reviews-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.reviews-stars {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reviews-rating-text {
  font-size: 0.95rem;
  opacity: 0.8;
}

.reviews-link {
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ff7b73; /* dein Korall-Ton */
  font-weight: 600;
}

.reviews-link i {
  font-size: 1rem;
}

.reviews-link:hover {
  text-decoration: underline;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.section-dark .review-card {
  background-color: #1f2430;
}

.review-text {
  margin: 0 0 0.9rem 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.review-meta {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Ab Tablet: zwei Spalten */
@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Ab Desktop: mehr Raum */
@media (min-width: 1024px) {
  .review-card {
    padding: 1.75rem;
  }
}