/* =========================================================
   BBG-Flex – Stylesheet (barrierefreie Version)
   Aufbau:
   1) Design Tokens
   2) Basis-Styles + Accessibility-Helfer
   3) Layout-Helper
   4) Komponenten
   5) Responsive Breakpoints
   6) prefers-reduced-motion
   ========================================================= */


/* ---------- 1) Design Tokens ---------- */
:root {
  /* Farben – auf WCAG-AA-Kontrast geprüft.
     Alle Texte auf weißem oder hellem Hintergrund nutzen --ink oder --ink-soft.
     --green-800 ist die kontraststarke Variante für Text auf Weiß (Kontrast > 7:1).
     Hinweis: --green-500/700 sind für FLÄCHEN gedacht, nicht für kleinen Text auf Weiß. */
  --green-800: #009846;   
  --green-_800: #3f6315;          /* dunkles Grün für TEXT auf Weiß – AAA-konform */
  --green-700: #5a8a1f;          /* dunkles Logo-Grün – für Flächen */
  --green-500: #8cbf3f;          /* helles Logo-Grün – für Flächen */
  --green-100: #eef6dc;          /* sehr helles Grün für Sektionen */
  --green-50:  #f6faec;          /* fast weiß, grünlich */

  --accent:      #c20069;        /* CTA-Pink – etwas dunkler als zuvor für besseren Kontrast (4.5:1+) */
  --accent-dark: #8e004d;
  --accent-focus: #5c0032;       /* sehr dunkles Pink für Fokus-Ringe */

  --ink:       #1f2a1a;          /* fast schwarz – Kontrast auf Weiß: 16:1 */
  --ink-soft:  #3d4a35;          /* dunkleres Grau-Grün für Fließtext – Kontrast 8:1 */
  --paper:     #ffffff;

  /* Schatten */
  --shadow-sm: 0 2px 6px rgba(31, 42, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(31, 42, 26, 0.12);
  --shadow-lg: 0 18px 50px rgba(31, 42, 26, 0.16);

  /* Radien & Maße */
  --radius:    14px;
  --radius-lg: 22px;
  --max-width: 1200px;

  /* Schriften */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Fokus-Indikator */
  --focus-ring: 3px solid var(--accent-focus);
  --focus-offset: 3px;
}


/* ---------- 2) Basis-Styles + Accessibility-Helfer ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

/* Sichtbarer Fokus-Indikator für ALLE interaktiven Elemente.
   :focus-visible greift nur bei Tastatur-Fokus, nicht bei Mausklick. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 4px;
}

/* Visually-hidden-Klasse: für Screenreader sichtbar, optisch versteckt. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-Link: erst sichtbar bei Tastatur-Fokus. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}


/* ---------- 3) Layout-Helper ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- 4a) Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 138, 31, 0.18);
  transition: box-shadow 0.25s ease;
}

/* Beim Scrollen: leichter Schatten unter dem Header */
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(31, 42, 26, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
  transition: padding 0.25s ease;
}

/* Im gescrollten Zustand: weniger Padding → Header wird flacher */
.site-header.is-scrolled .header-inner {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Logo verkleinert sich sanft mit */
.site-header .logo-mark {
  transition: height 0.25s ease;
}
.site-header.is-scrolled .logo-mark {
  height: 38px;
}

/* Schriftgröße im Logo schrumpft mit */
/*.site-header .logo {
  transition: font-size 0.25s ease;
}
.site-header.is-scrolled .logo {
  font-size: 1.35rem;
}*/

/* Schriftgröße im Logo: groß am Anfang, schrumpft beim Scrollen */
.site-header .logo {
  font-size: 1.6rem;
  transition: font-size 0.25s ease;
}
.site-header.is-scrolled .logo {
  font-size: 1.35rem;
}

/* Untertitel im Logo beim Scrollen ausblenden – spart Platz */
.site-header .logo-text small {
  transition: opacity 0.2s ease, max-height 0.25s ease;
  max-height: 30px;
  overflow: hidden;
}
.site-header.is-scrolled .logo-text small {
  opacity: 0;
  max-height: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--green-800);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ---------- Hamburger-Button (auf Desktop unsichtbar) ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Animation: Hamburger wird zum X, wenn geöffnet */
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Auf kleinen Bildschirmen kompakteres Header-Layout */
@media (max-width: 700px) {
  /* Header-Innenraum dichter packen */
  .header-inner {
    padding: 6px 16px;
    gap: 12px;
  }

  /* Logo-Bereich: alles für sich allein */
  .logo {
    font-size: 1.2rem;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-mark {
    height: 40px;
    flex-shrink: 0;
    transition: height 0.25s ease;
  }

  .site-header.is-scrolled .logo-mark {
    height: 30px;
  }

  .logo-text {
    line-height: 1.15;
    min-width: 0;
  }

  /* Untertitel auf dem Smartphone ausblenden */
  .logo-text small {
    display: none;
  }

  /* Hamburger einblenden */
  .nav-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  /* Navigation: standardmäßig versteckt, klappt von oben ein */
  nav[aria-label="Hauptnavigation"] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(90, 138, 31, 0.18);
    box-shadow: 0 8px 24px rgba(31, 42, 26, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  /* Wenn geöffnet: sichtbar */
  .site-header.nav-open nav[aria-label="Hauptnavigation"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Menüpunkte untereinander statt nebeneinander */
  nav[aria-label="Hauptnavigation"] ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 4px;
  }

  nav[aria-label="Hauptnavigation"] a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

/* Sehr kleine Bildschirme */
@media (max-width: 380px) {
  .logo {
    font-size: 1.05rem;
  }
  .logo-mark {
    height: 38px;
  }
}

nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
  background: var(--green-100);
  text-decoration: none;
}

nav a.active,
nav a[aria-current="page"] {
  background: var(--accent);
  color: white;
}

nav a.active:hover,
nav a[aria-current="page"]:hover {
  background: var(--accent-dark);
}


/* ---------- 4b) Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, var(--green-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--green-50) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'><path d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23eef6dc'/></svg>") no-repeat bottom / cover;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow-Zeile mit optionalem Partner-Logo */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Wenn eyebrow-row vorhanden, eigenes margin entfernen */
.hero-eyebrow-row .hero-eyebrow {
  margin-bottom: 0;
}

.eyebrow-partner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-partner-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.eyebrow-partner-logo {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.eyebrow-partner a:hover .eyebrow-partner-logo {
  opacity: 0.75;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--green-800);
  font-style: italic;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Google-Badge ist von Haus aus größer – auf gleiche Höhe bringen */
.store-badge {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-badge--apple {
  height: 40px;
}

.hero-store-badges a:hover .store-badge {
  opacity: 0.85;
  transform: translateY(-2px);
}

.hero-or-divider {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 20px 0 12px;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}


/* ---------- 4c) Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--green-700);
}

.btn-secondary:hover {
  background: var(--green-100);
}


/* ---------- 4d) Sections (Basis) ---------- */
section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}


/* ---------- 4e) Was ist BBG-Flex ---------- */
.about {
  background: var(--paper);
}

/* Toggle-Button */
.about-more {
  margin-top: 40px;
  text-align: center;
}

.about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  border: 2px solid var(--green-700);
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-800);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-toggle:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-1px);
}

.about-toggle:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 999px;
}

.about-toggle-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-toggle[aria-expanded="true"] .about-toggle-icon {
  transform: rotate(180deg);
}

/* Aufklappbarer Inhaltsbereich */
.about-details {
  margin-top: 40px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-details-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

/* Volle Breite für den Vorteile-Block */
.info-block--wide {
  grid-column: 1 / -1;
}

.info-block {
  background: var(--green-50);
  border: 1px solid rgba(90, 138, 31, 0.2);
  border-left: 4px solid var(--green-700);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}

.info-block h3 {
  font-size: 1.1rem;
  color: var(--green-800);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.info-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}

.info-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

.info-list--benefits {
  gap: 10px;
}

.info-note {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(90, 138, 31, 0.2);
  font-size: 0.9rem !important;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .about-details-inner {
    grid-template-columns: 1fr;
  }
  .info-block--wide {
    grid-column: 1;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  background: var(--paper);
  border: 1px solid rgba(90, 138, 31, 0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-700);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}


/* ---------- 4e²) Karte ---------- */
.media-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items: start;
}

.media-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(90, 138, 31, 0.2);
  display: flex;
  flex-direction: column;
}

.media-map-wrap {
  flex: 1;
  min-height: 480px;
}

.media-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

.media-card--flyer {
  justify-self: center;
  width: 100%;
}

.media-flyer-img {
  width: 100%;
  height: 480px;
  display: block;
  transition: opacity 0.2s ease;
}

.media-card--flyer a:hover .media-flyer-img {
  opacity: 0.9;
}

.media-card figcaption {
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: white;
  border-top: 1px solid rgba(90, 138, 31, 0.15);
  text-align: center;
}

.media-card figcaption a {
  color: var(--green-800);
  font-weight: 600;
}

@media (max-width: 820px) {
  .media-row {
    grid-template-columns: 1fr;
  }
  .media-map-wrap,
  .media-map-wrap iframe {
    min-height: 260px;
  }
}


/* ---------- 4f) Betriebszeiten ---------- */
.hours {
  background: var(--green-50);
  position: relative;
}

.hours-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--green-700);
}

.hours-card h2 {
  text-align: center;
  margin-bottom: 8px;
}

.hours-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
}

.hours-table tbody tr {
  background: var(--green-50);
}

.hours-table th[scope="row"],
.hours-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: middle;
}

.hours-table th[scope="row"] {
  font-weight: 600;
  color: var(--ink);
  border-left: 4px solid var(--green-700);
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body); /* Tabellen-Header sind sonst evtl. fett kursiv */
}

.hours-table .time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-800);
  text-align: right;
  border-radius: 0 var(--radius) var(--radius) 0;
}



/* Overlay über dem Buchungs-iframe */
.booking-frame-wrap {
  position: relative; /* bereits gesetzt, zur Sicherheit */
}

.booking-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  /* Zum Deaktivieren: display: none; */
}

.booking-overlay-inner {
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--green-800);
}

.booking-overlay-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--ink);
  margin: 0;
}

.booking-overlay-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.booking-overlay-sub a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}

.booking-overlay-sub a:hover {
  text-decoration: underline;
}

/* ---------- 4f²) Online-Buchung ---------- */
.booking {
  background: var(--green-50);
}

.booking-frame-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--accent);
  overflow: hidden;
  /* Mindesthöhe damit der Inhalt des iFrames sichtbar ist */
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.booking-frame-wrap iframe {
  width: 100%;
  flex: 1 1 auto;
  min-height: 1200px;
  border: none;
  display: block;
}


/* ---------- 4g) CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: white;
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: white;
  color: var(--accent-dark);
}

.cta-band .btn-primary:hover {
  background: var(--green-50);
  color: var(--accent-focus);
}


/* ---------- 4h) Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
  padding: 50px 0 30px;
}

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

.footer-brand {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: white;
  text-decoration-thickness: 2px;
}


.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-partner-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-partner-logo {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-partner a:hover .footer-partner-logo {
  opacity: 1;
}

@media (max-width: 820px) {
  .footer-partner {
    order: -1; /* Auf Mobile ganz oben im Footer */
  }
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}


/* ---------- 5) Responsive ---------- */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 50px 0 70px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hours-card {
    padding: 32px 24px;
  }

  .header-inner {
    /* Header bleibt einzeilig, kein Umbruch */
    flex-wrap: nowrap;
  }

  nav ul {
    flex-wrap: nowrap;
  }

  nav a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}


/* ---------- 6) Bewegungs-Reduzierung ---------- */
/* Respektiert Systemeinstellung "Bewegung reduzieren" (z. B. iOS/macOS/Windows). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-primary:hover,
  .feature-card:hover {
    transform: none;
  }
}


/* ---------- 7) Hoher Kontrast (Windows / forced-colors) ---------- */
@media (forced-colors: active) {
  .btn-primary,
  .btn-secondary,
  nav a.active {
    border: 2px solid currentColor;
  }

  .feature-card,
  .hours-card,
  .hero-image {
    border: 1px solid currentColor;
  }
}


/* =========================================================
   FAQ-Seite
   ========================================================= */

/* Hero */
.faq-hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(ellipse at top right, var(--green-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--green-50) 100%);
}

.faq-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.faq-hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 560px;
}

/* Akkordeon */
.faq-section {
  padding: 60px 0 90px;
  background: var(--paper);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(90, 138, 31, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:has(.faq-toggle[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--green-700);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--paper);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-toggle:hover {
  background: var(--green-50);
}

.faq-toggle[aria-expanded="true"] {
  background: var(--green-50);
  color: var(--green-800);
  border-bottom: 1px solid rgba(90, 138, 31, 0.15);
}

.faq-toggle:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--green-700);
  transition: transform 0.25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px 24px 24px;
  background: var(--green-50);
  margin: 0;
  animation: slideDown 0.25s ease;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--green-800);
  font-weight: 600;
}

@media (max-width: 820px) {
  .faq-toggle {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 16px 18px 20px;
  }
}
