/*
  ======================================================================
  DESIGN-DATEI – style.css
  ======================================================================
  Diese Datei bestimmt NUR das Aussehen (Farben, Schriftarten, Abstände)
  der Webseite – keine Texte oder Kurse. Für die normale Pflege
  (Texte ändern, Kurse pflegen, Fotos tauschen) musst du diese Datei
  NICHT anfassen. Farben werden ganz oben unter ":root" zentral
  festgelegt, z. B. --peach steuert überall den Pfirsich-Ton.
  ======================================================================
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --peach: #F5C8A8;
    --peach-light: #FAE8D8;
    --peach-mid: #EDB98A;
    --sage: #C2D4BE;
    --sage-light: #DDE9DA;
    --cream: #FDFAF6;
    --dark: #2A1F1A;
    --brown: #5C3D2E;
    --text: #3A2E28;
    --text-light: #7A6A60;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
  }

  .script { font-family: 'Dancing Script', cursive; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 250, 246, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(194, 212, 190, 0.4);
    padding: 0.75rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand { font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--brown); text-decoration: none; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-light); font-size: 0.9rem; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--brown); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-blob-1 {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: var(--peach-light); top: -100px; right: -150px; opacity: 0.7;
  }
  .hero-blob-2 {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: var(--sage-light); bottom: -80px; left: -100px; opacity: 0.6;
  }
  .hero-inner {
    max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-text h1 { font-family: 'Dancing Script', cursive; font-size: 4rem; line-height: 1.1; color: var(--brown); margin-bottom: 1rem; }
  .hero-text .tagline { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
  .hero-text .sub { color: var(--text-light); font-size: 1rem; margin-bottom: 2rem; font-style: italic; }
  .hero-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .pill {
    background: white; border: 1px solid var(--peach-mid); color: var(--brown);
    padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700;
  }
  .btn {
    display: inline-block; background: var(--peach-mid); color: var(--dark);
    padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none;
    font-weight: 700; font-size: 0.95rem; transition: background 0.2s, transform 0.15s;
  }
  .btn:hover { background: var(--brown); color: white; transform: translateY(-2px); }
  .btn-outline {
    background: transparent; border: 1.5px solid var(--brown); color: var(--brown);
    margin-left: 1rem;
  }
  .btn-outline:hover { background: var(--brown); color: white; }
  .hero-image { position: relative; }
  .hero-image .img-frame {
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    overflow: hidden; width: 100%; aspect-ratio: 1;
    background: linear-gradient(135deg, var(--peach) 0%, var(--sage) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-image .badge {
    position: absolute; bottom: 1.5rem; left: -1rem;
    background: white; border-radius: 1rem; padding: 0.75rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-size: 0.85rem; font-weight: 700; color: var(--brown);
    border-left: 3px solid var(--peach-mid);
  }

  /* ── SECTION BASE ── */
  section { padding: 5rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem;
    font-weight: 700; color: var(--peach-mid); margin-bottom: 0.5rem;
  }
  .section-title { font-family: 'Dancing Script', cursive; font-size: 2.8rem; color: var(--brown); margin-bottom: 1.5rem; }
  .section-title.center { text-align: center; }
  p.lead { font-size: 1.05rem; color: var(--text-light); max-width: 620px; }
  p.lead.center { margin: 0 auto; text-align: center; }

  /* ── ABOUT ── */
  .about { background: white; }
  .about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%; aspect-ratio: 3/4; border-radius: 2rem; object-fit: cover;
    background: var(--sage-light);
  }
  .about-img-blob {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: var(--peach-light); bottom: -60px; right: -60px; z-index: -1;
  }
  .about-text h2 { font-family: 'Dancing Script', cursive; font-size: 2.8rem; color: var(--brown); margin-bottom: 1rem; }
  .about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
  .about-text strong { color: var(--text); }
  .about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
  .about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
  .about-feature .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--peach-mid);
    margin-top: 7px; flex-shrink: 0;
  }
  .about-feature span { color: var(--text); font-weight: 700; }

  /* ── MOMENTS ── */
  .moments { background: var(--cream); position: relative; overflow: hidden; }
  .moments-blob {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: var(--sage-light); top: -150px; right: -200px; opacity: 0.5;
  }
  .moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .moment-card {
    background: white; border-radius: 1.5rem; padding: 2rem;
    border: 1px solid rgba(194, 212, 190, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .moment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
  .moment-card.peach { border-top: 3px solid var(--peach-mid); }
  .moment-card.sage { border-top: 3px solid var(--sage); }
  .moment-card.warm { border-top: 3px solid #D4A574; }
  .moment-card h3 { font-family: 'Dancing Script', cursive; font-size: 1.7rem; color: var(--brown); margin-bottom: 1rem; }
  .moment-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .moment-card ul li { font-size: 0.95rem; color: var(--text-light); padding-left: 1.2rem; position: relative; font-weight: 700; }
  .moment-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--peach-mid); }

  /* ── PROCESS ── */
  .process { background: white; }
  .process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .process-text .big-quote {
    font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--brown);
    border-left: 3px solid var(--peach-mid); padding-left: 1.5rem;
    margin: 1.5rem 0; line-height: 1.5;
  }
  .process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
  .process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
  .step-num {
    width: 36px; height: 36px; border-radius: 50%; background: var(--peach-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: var(--brown); flex-shrink: 0;
  }
  .step-text h3 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 0.25rem; font-family: 'Lato', sans-serif; }
  .step-text p { font-size: 0.9rem; color: var(--text-light); }

  /* ── GALLERY ── */
  .gallery { background: var(--cream); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
  .gallery-item {
    border-radius: 1rem; overflow: hidden; aspect-ratio: 1;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--peach-light) 100%);
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .gallery-item .placeholder {
    font-family: 'Dancing Script', cursive; font-size: 1.3rem; color: rgba(90,60,45,0.4);
    text-align: center; padding: 1rem;
  }

  /* ── KURSE TEASER ── */
  .kurse-teaser {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--peach-light) 100%);
    text-align: center;
  }
  .kurse-teaser .container { max-width: 700px; }
  .kurse-teaser h2 { margin-bottom: 1rem; }
  .kurse-teaser p { color: var(--text-light); margin-bottom: 2rem; }

  /* ── INFO NOTE ── */
  .info-note {
    background: #FFF6E9; border: 1.5px dashed var(--peach-mid); border-radius: 0.75rem;
    padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--brown);
    max-width: 620px;
  }

  /* ── CONTACT ── */
  .contact {
    background: white; position: relative; overflow: hidden;
  }
  .contact-blob {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: var(--peach-light); bottom: -200px; left: -200px; opacity: 0.5;
  }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; position: relative; z-index: 1; }
  .contact-info h2 { font-family: 'Dancing Script', cursive; font-size: 2.8rem; color: var(--brown); margin-bottom: 1rem; }
  .contact-info p { color: var(--text-light); margin-bottom: 1.5rem; }
  .contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
  .contact-row { display: flex; align-items: center; gap: 0.75rem; }
  .contact-icon {
    width: 36px; height: 36px; border-radius: 50%; background: var(--peach-light);
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
  }
  .contact-row a { color: var(--brown); text-decoration: none; font-weight: 700; }
  .contact-row a:hover { text-decoration: underline; }
  .contact-form { background: var(--cream); border-radius: 1.5rem; padding: 2rem; }
  .contact-form h3 { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: var(--brown); margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(194, 212, 190, 0.6);
    border-radius: 0.75rem; font-family: 'Lato', sans-serif; font-size: 0.95rem;
    background: white; color: var(--text); outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--peach-mid);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn-full { width: 100%; text-align: center; cursor: pointer; border: none; font-family: 'Lato', sans-serif; }
  .form-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 2rem; text-align: center; font-size: 0.85rem;
  }
  footer .footer-brand { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: white; margin-bottom: 0.5rem; }
  footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
  footer a:hover { color: white; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero-inner, .about-grid, .contact-inner, .process-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .moments-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .hero-text h1 { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
  }

/* ── LEGAL PAGES ── */
.legal-hero { padding: 8rem 2rem 2rem; text-align: center; }
.legal-hero h1 { font-family: 'Dancing Script', cursive; font-size: 3rem; color: var(--brown); }
.legal { background: white; }
.legal .container { max-width: 780px; }
.legal h2 { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: var(--brown); margin: 2.5rem 0 0.75rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text-light); margin-bottom: 0.75rem; }
.legal ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal strong { color: var(--text); }
.legal .info-note { margin: 0.75rem 0 1.25rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; color: var(--brown); font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* ── KURSE PAGE ── */
.kurse-hero { padding: 8rem 2rem 3rem; text-align: center; background: linear-gradient(135deg, var(--peach-light) 0%, var(--sage-light) 100%); }
.kurse-hero h1 { font-family: 'Dancing Script', cursive; font-size: 3.2rem; color: var(--brown); margin-bottom: 0.75rem; }
.kurse-hero p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.kurse-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.kurse-card {
  background: white; border: 1px solid rgba(194,212,190,0.5); border-radius: 1.25rem;
  padding: 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.kurse-card h3 { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--brown); margin-bottom: 0.35rem; }
.kurse-card .meta { color: var(--text-light); font-size: 0.9rem; }
.kurse-card .meta span { display: inline-block; margin-right: 1rem; }

/* ── BILDSCHUTZ (nur Erschwerung, siehe Hinweis) ── */
img { -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }

/* ======================================================================
   BARRIEREFREIHEIT (Accessibility / WAI-ARIA)
   ====================================================================== */

/* Nur für Screenreader sichtbarer Text (visuell versteckt, aber vorlesbar) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* "Zum Inhalt springen"-Link: unsichtbar, bis er per Tastatur (Tab) fokussiert wird */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--brown); color: white; padding: 0.75rem 1.25rem;
  border-radius: 0.5rem; text-decoration: none; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Deutlich sichtbarer Fokus-Rahmen für Tastatur-Bedienung (Links, Buttons, Felder) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--brown); outline-offset: 2px;
}

/* Mobiles Menü (Hamburger) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--brown);
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(194, 212, 190, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 1rem 2rem; border-top: 1px solid rgba(194,212,190,0.3);
  }
}

/* Formular: Fehler- und Erfolgsmeldungen */
.form-message {
  border-radius: 0.75rem; padding: 0.85rem 1.1rem; margin-bottom: 1.25rem;
  font-size: 0.9rem; font-weight: 700;
}
.form-message.success { background: #E3EEDF; color: #2F5233; border: 1.5px solid var(--sage); }
.form-message.error { background: #FBEAEA; color: #8A2C2C; border: 1.5px solid #C0392B; }
.field-error {
  color: #C0392B; font-size: 0.8rem; font-weight: 700; margin-top: 0.3rem; display: block;
}
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
  border-color: #C0392B;
}

/* Honeypot-Feld (Spam-Falle): für Menschen unsichtbar, für Bots trotzdem "sichtbar" im Code */
.hp-field {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ── BREADCRUMBS ── */
.breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--brown); text-decoration: none; font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CASE STUDIES ── */
.cases { background: white; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.case-card {
  background: var(--cream); border-radius: 1.25rem; padding: 1.75rem;
  border: 1px solid rgba(194,212,190,0.4);
}
.case-card .case-img {
  width: 100%; aspect-ratio: 16/10; border-radius: 0.9rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--peach-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.case-card h3 { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--brown); margin-bottom: 0.5rem; }
.case-card p { color: var(--text-light); font-size: 0.92rem; }

/* ── BEWERTUNGEN / TESTIMONIALS ── */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.review-card {
  background: white; border-radius: 1.25rem; padding: 1.5rem;
  border: 1px solid rgba(194,212,190,0.4);
}
.review-card .stars { color: var(--peach-mid); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.review-card p { color: var(--text); font-style: italic; margin-bottom: 0.75rem; }
.review-card .author { color: var(--text-light); font-size: 0.85rem; font-weight: 700; font-style: normal; }

/* ── FAQ ── */
.faq { background: white; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid rgba(194,212,190,0.5); border-radius: 1rem; padding: 0; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.5rem; font-weight: 700; color: var(--brown);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--peach-mid); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.25rem; color: var(--text-light); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: var(--cream); border-top: 1px solid rgba(194,212,190,0.5);
    padding: 0.75rem 1rem; box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .sticky-cta .btn { width: 100%; text-align: center; }
  body { padding-bottom: 4.2rem; } /* Platz, damit der Footer nicht verdeckt wird */
}

/* ── COOKIE-CONSENT-BANNER (für Google Analytics, Punkt 19) ── */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 300;
  max-width: 600px; margin: 0 auto;
  background: white; border: 1px solid rgba(194,212,190,0.6); border-radius: 1.25rem;
  padding: 1.5rem; box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.cookie-banner p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1rem; }
.cookie-banner .cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner .btn, .cookie-banner .btn-outline { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.cookie-settings-link { background: none; border: none; color: rgba(255,255,255,0.6); text-decoration: underline; cursor: pointer; font-size: inherit; font-family: inherit; padding: 0; }
.cookie-settings-link:hover { color: white; }
