/**
 * Rückenwind für Naunhof - Stylesheet
 * Farben aus offiziellem Grüne-Styleguide + Linke ROT
 * Plus Windrad-Töne (Rosa/Lila) aus Flyern
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  /* GRÜNE STYLEGUIDE FARBEN (offiziell) */
  --tanne: #005538;          /* Grüne Tanne - dunkel */
  --klee: #008939;           /* Grüne Klee - Hauptgrün */
  --klee-hell: #33A15D;      /* Klee aufgehellt */
  --klee-dunkel: #006E2E;    /* Klee abgedunkelt */
  --grashalm: #8ABD24;       /* Grüne Grashalm - hellgrün */
  --sonne: #FFF17A;          /* Grüne Sonne - offiziell */
  --sand: #F5F1E9;           /* Grüne Sand - offiziell */

  --rot: #E3000F;            /* Linke Rot - offiziell */
  --rot-hell: #FF1A29;       /* Rot aufgehellt */
  --rot-dunkel: #B8000C;     /* Rot abgedunkelt */

  /* DIE LINKE Styleguide Farben */
  --linke-rot: #FF0000;       /* Linke Primärrot */
  --linke-bordeaux: #6F003C;  /* Linke Bordeaux/Dunkelrot */
  --linke-lila: #8100A1;      /* Linke Lila/Violett */
  --linke-rosa: #D675D8;      /* Linke Rosa/Pink */

  /* GRÜNE Akzentfarben (erweitert) */
  --gruene-mint: #6CCD87;     /* Grüne Mint/Hellgrün */

  /* Windrad-Akzentfarben (aus Flyer) */
  --windrad-rosa: #D980A8;
  --windrad-lila: #9B7BB8;
  --windrad-magenta: #5C2751;

  /* Neutrale Farben */
  --weiss: #FFFFFF;
  --schwarz: #1A1A1A;
  --grau-hell: #F5F5F5;
  --grau: #E0E0E0;
  --grau-dunkel: #666666;

  /* Text */
  --text-dunkel: #333333;
  --text-hell: #FFFFFF;

  /* Abstände */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Typografie */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 18px;
  --line-height: 1.6;

  /* Effekte */
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-dunkel);
  background-color: var(--weiss);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--klee);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--klee-hell);
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--klee);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: var(--spacing-sm); }

.text-center { text-align: center; }
.text-weiss { color: var(--weiss); }
.text-klee { color: var(--klee); }
.text-rot { color: var(--rot); }

/* Abstand-Utilities für Buttons (mehr Abstand zu Boxen) */
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--klee {
  background-color: var(--klee);
  color: var(--text-hell);
}

.section--klee h1, .section--klee h2, .section--klee h3 {
  color: var(--weiss);
}

.section--light,
.section--hell {
  background-color: var(--grau-hell);
}

.section--rot {
  background-color: var(--rot);
  color: var(--text-hell);
}

.section--rot h1, .section--rot h2, .section--rot h3 {
  color: var(--weiss);
}

/* TKT-10076: Dunkelrot (Linke Bordeaux) für "Warum NEIN?" Sektion */
.section--linke-bordeaux {
  background-color: var(--linke-bordeaux);
  color: var(--text-hell);
}

.section--linke-bordeaux h1, .section--linke-bordeaux h2, .section--linke-bordeaux h3 {
  color: var(--weiss);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--klee);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header--scrolled {
  box-shadow: var(--shadow-lg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header__logo-icon {
  width: 45px;
  height: 45px;
}

.header__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--weiss);
  /* TKT-10101: Vollständig lesbar, nicht abschneiden */
  white-space: nowrap;
  flex-shrink: 0;
}

/* Navigation - TKT-10101: Kompakter für Desktop */
.nav__list {
  display: flex;
  gap: 0.3rem;
}

.nav__link {
  color: var(--weiss);
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background var(--transition);
  white-space: nowrap;
  font-size: 0.85rem;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255,255,255,0.15);
  color: var(--weiss);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.nav__toggle-bar {
  width: 25px;
  height: 3px;
  background: var(--weiss);
  border-radius: 2px;
  transition: var(--transition);
}

/* Tablet: Navigation etwas kompakter */
@media (max-width: 1200px) {
  .nav__link {
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
  }

  .nav__list {
    gap: 0.15rem;
  }
}

/* Tablet Portrait & kleiner: Burger-Menü aktivieren */
@media (max-width: 1199px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 85, 56, 0.92); /* Tanne mit Transparenz */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari */
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav__list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    display: block;
    padding: var(--spacing-sm);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ============================================
   HERO SECTION (wie Flyer)
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--klee);
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

/* Diagonale Teilung wie im Flyer - scharfe Farbkante (Desktop) */
/* TKT-10087: Ursprüngliche Desktop-Version wiederhergestellt */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;  /* Breiter = Diagonale weiter links */
  height: 100%;
  background: var(--linke-bordeaux);  /* Linke Bordeaux #6F003C */
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: flex-start; /* Beide Seiten oben ausrichten für gleiche Höhe */
  width: 100%;
}

.hero__text {
  color: var(--weiss);
  text-align: center;  /* Text und Buttons zentriert */
  padding-top: 2rem; /* Gleiche Höhe wie hero__visual */
}

/* TKT-10082: Hero Datum - normaler Text statt Badge */
.hero__date {
  color: var(--weiss);
  font-size: 1.5rem;  /* TKT-10084: Gleiche Größe wie hero__subtitle */
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  opacity: 0.95;
}

/* TKT-10084: 2pt größer */
.hero__title {
  font-size: clamp(3.15rem, 6.5vw, 5.15rem);
  color: var(--weiss);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

/* Hero CTA Buttons - AUSGEBLENDET */
.hero__cta {
  display: none !important;
}


/* Hero rechte Seite */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 5.5rem; /* "Zukunft verhindern?" auf Höhe von "für Naunhof" */
}

/* TKT-10084: 2pt größer */
.hero__question {
  font-size: clamp(3.15rem, 6.5vw, 5.15rem);  /* Gleiche Größe wie hero__title */
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF !important;  /* Explizit weiß auf Bordeaux-Hintergrund (TKT-10031) */
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);  /* Gleicher Schatten wie hero__title */
}

/* NEIN-Button (exakt wie Flyer) */
.nein-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--rot);
  color: var(--weiss);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  transform: rotate(-2deg);
  transition: transform var(--transition);
  cursor: default;
}

.nein-button:hover {
  transform: rotate(0deg) scale(1.05);
  color: var(--weiss);
}

.nein-kreuz {
  width: 55px;
  height: 55px;
  background: var(--weiss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nein-kreuz::before,
.nein-kreuz::after {
  content: '';
  position: absolute;
  background: var(--windrad-magenta);
  border-radius: 3px;
}

.nein-kreuz::before {
  width: 32px;
  height: 6px;
  transform: rotate(45deg);
}

.nein-kreuz::after {
  width: 32px;
  height: 6px;
  transform: rotate(-45deg);
}

/* Windrad (links unten wie Flyer) */
.windrad {
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 180px;
  height: 180px;
  z-index: 2;
}

.windrad__rotor {
  animation: windrad-drehen 8s linear infinite;
  transform-origin: center;
}

@keyframes windrad-drehen {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.countdown__item {
  text-align: center;
  background: var(--klee);
  color: var(--weiss);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px;
}

.countdown__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.countdown__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--klee {
  background: var(--klee);
  color: var(--weiss);
}

.btn--klee:hover {
  background: var(--klee-hell);
  color: var(--weiss);
  transform: translateY(-2px);
}

.btn--rot {
  background: var(--rot);
  color: var(--weiss);
}

.btn--rot:hover {
  background: var(--rot-hell);
  color: var(--weiss);
  transform: translateY(-2px);
}

.btn--weiss {
  background: var(--weiss);
  color: var(--klee);
}

.btn--weiss:hover {
  background: var(--grau-hell);
  color: var(--klee);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--weiss);
  color: var(--weiss);
}

.btn--outline:hover {
  background: var(--weiss);
  color: var(--klee);
}

.btn--klee-outline {
  background: transparent;
  border: 2px solid var(--weiss);
  color: var(--weiss);
}

.btn--klee-outline:hover {
  background: var(--weiss);
  color: var(--klee);
  transform: translateY(-2px);
}

.btn--gross {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.25rem;
}

/* ============================================
   CARDS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

/* TKT-10070: 2x2 Raster für "4 Gründe" auf Desktop */
.cards-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

/* TKT-10073: JA/NEIN Boxen - 2 Spalten Desktop, 1 Spalte Mobile */
.cards-grid--ja-nein {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid--ja-nein {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--weiss);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--klee);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;  /* Nummerierung zentriert auf Desktop */
}

.card__title,
.card__text {
  text-align: left;  /* Text bleibt linksbündig */
}

/* Aufzählungen in Karten linksbündig (TKT-10041) */
.card ul,
.card ol,
.card li {
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--linke-bordeaux);  /* TKT-10109: Dunkelrot statt Hellrot */
  color: var(--weiss);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 4px 15px rgba(111, 0, 60, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
  border: 3px solid var(--weiss);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card__number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--linke-bordeaux);
  opacity: 0.3;
}

.card:hover .card__number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(111, 0, 60, 0.5), inset 0 2px 4px rgba(255,255,255,0.2);
}

.card__title {
  font-size: 1.25rem;
  color: var(--klee);
  margin-bottom: var(--spacing-xs);
}

.card__text {
  color: var(--text-dunkel);
}

/* ============================================
   EVENT BOX (wie Flyer)
   ============================================ */

.event-box {
  background: var(--windrad-magenta);
  color: var(--weiss);
  border-radius: 12px;
  padding: var(--spacing-lg);
  max-width: 650px;
  margin: 0 auto;
}

.event-box__label {
  display: inline-block;
  background: var(--klee);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.event-box__title {
  font-size: 1.5rem;
  color: var(--weiss);
  margin-bottom: var(--spacing-md);
}

.event-box__speakers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.event-box__speaker {
  text-align: center;
}

.event-box__speaker-name {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
}

.event-box__speaker-party {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: var(--spacing-xs);
}

.event-box__ampersand {
  font-size: 2rem;
  color: var(--klee);
  font-weight: 700;
}

/* Speaker Portraits - runde Bilder */
.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
}

.speaker-card__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--weiss);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.speaker-card__image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.speaker-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--weiss);
  margin-bottom: var(--spacing-xs);
}

.speaker-card__role {
  font-size: 1rem;
  color: var(--weiss);  /* TKT-10030: Verbesserter Kontrast */
  margin-bottom: var(--spacing-xs);
}

.speaker-card__party {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.speaker-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--weiss);
  font-weight: 700;
}

/* Event Hero für Veranstaltungsseite */
.event-hero {
  background: var(--rot);  /* Scharfe Farbe, kein Verlauf */
  padding: var(--spacing-xl) 0;
  text-align: center;
  color: var(--weiss);
}

.event-hero__badge {
  display: inline-block;
  background: var(--klee);
  color: var(--weiss);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.event-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--weiss);
  margin-bottom: var(--spacing-sm);
}

.event-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

/* Event Details Box */
.event-details-box {
  background: var(--weiss);
  border-radius: 16px;
  padding: var(--spacing-lg);
  max-width: 500px;
  margin: var(--spacing-lg) auto;
  box-shadow: var(--shadow-lg);
}

.event-details-box__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--grau);
}

.event-details-box__item:last-child {
  border-bottom: none;
}

.event-details-box__icon {
  width: 48px;
  height: 48px;
  background: var(--klee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-details-box__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--weiss);
}

.event-details-box__label {
  font-size: 0.85rem;
  color: var(--grau-dunkel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-details-box__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--klee);
}

.event-box__details {
  background: var(--weiss);
  color: var(--klee);
  padding: var(--spacing-md);
  border-radius: 8px;
  text-align: center;
}

.event-box__date {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rot);
}

.event-box__time,
.event-box__location {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--klee);
}

/* ============================================
   QUOTE BOX (Abstimmungsfrage)
   ============================================ */

.quote-box {
  background: var(--weiss);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--klee);
  margin: var(--spacing-lg) 0;
}

.quote-box__text {
  font-size: 1.1rem;
  font-style: italic;
}

.quote-box__highlight {
  color: var(--rot);
  font-weight: 700;
  font-style: normal;
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  background: var(--weiss);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  cursor: pointer;
  background: var(--weiss);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--klee);
  transition: background var(--transition);
}

.accordion__header:hover {
  background: var(--grau-hell);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  color: var(--klee);
}

.accordion__item--open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.accordion__item--open .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 0 var(--spacing-md) var(--spacing-md);
}

/* ============================================
   ZAUNBANNER SECTION
   ============================================ */

.zaunbanner {
  text-align: center;
}

.zaunbanner__preview {
  background: var(--grau-hell);
  border: 3px dashed var(--klee);
  border-radius: 12px;
  padding: var(--spacing-md);
  margin: var(--spacing-md) auto;
  max-width: 450px;
}

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

.zaunbanner__info {
  background: var(--klee);
  color: var(--weiss);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  display: inline-block;
  margin-top: var(--spacing-md);
}

.zaunbanner__preis {
  font-size: 2rem;
  font-weight: 700;
}

.zaunbanner__details {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   FORMS
   ============================================ */

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--klee);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--grau);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--klee);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__error {
  color: var(--rot);
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
}

.form__honeypot {
  position: absolute;
  left: -9999px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--klee-dunkel);
  color: var(--weiss);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  padding-left: calc(var(--spacing-lg) + 10px);
  padding-right: calc(var(--spacing-lg) + 10px);
}

.footer__title {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--weiss);
}

.footer__link {
  color: inherit;  /* TKT-10030: Verbesserter Kontrast - inherit für inline-override */
  display: block;
  padding: var(--spacing-xs) 0;
}

.footer__link:hover {
  color: inherit;
}

.footer__logos {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* TKT-2026-10090: Desktop-Logos (60% von 180px = 108px) */
.footer__logo {
  height: 108px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: var(--weiss);
  padding: 12px;
  border-radius: 8px;
}

.footer__bottom {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md) calc(var(--spacing-lg) + 10px);
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.875rem;
  /* TKT-10030: opacity entfernt für besseren Kontrast */
}

.footer__visd {
  margin-top: var(--spacing-sm);
  font-size: 0.75rem;
}

/* TKT-10044: Footer Text - inherit für inline-override */
.footer h4,
.footer__section h4 {
  color: inherit;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  color: inherit;
}

.footer__links a,
.footer__links a:hover {
  color: inherit;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer p,
.footer__section p {
  color: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   MOBILE (max-width: 767px)
   Burger-Menü, Hero untereinander mit diagonalem Gradient
   ============================================ */
@media (max-width: 767px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Buttons nur auf Desktop anzeigen */
  .hero__cta {
    display: none !important;
  }

  /* Desktop-Diagonale ausblenden */
  .hero::before {
    display: none;
  }

  /* MOBILE: Diagonaler Gradient - 160deg, 50% Grün / 50% Dunkelrot */
  .hero {
    background: linear-gradient(
      160deg,
      var(--klee) 0%,
      var(--klee) 50%,
      var(--linke-bordeaux) 50%,
      var(--linke-bordeaux) 100%
    );
    position: relative;
  }

  .hero__text {
    background: transparent;
    padding: var(--spacing-lg) var(--spacing-md);
    padding-top: 0;
    padding-bottom: var(--spacing-xl);
    margin: 0 calc(-1 * var(--spacing-md));
    width: calc(100% + 2 * var(--spacing-md));
  }

  .hero__visual {
    background: transparent;
    padding-top: 1rem;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    padding-bottom: clamp(8rem, 25vh, 20rem);
    margin: 0 calc(-1 * var(--spacing-md));
    width: calc(100% + 2 * var(--spacing-md));
  }
}

/* ============================================
   GRUPPE 01: Extra klein (320×480)
   iPhone 4/4S, Nokia Lumia 920
   REAL: 320×350 (480-130 Browser-Overhead)
   EXTREM KOMPAKT!
   ============================================ */
@media (max-width: 320px) and (max-height: 520px) {
  .header__title { font-size: 0.7rem !important; }
  
  .hero__title { font-size: 1.3rem !important; }
  .hero__question { font-size: 1.3rem !important; }
  .hero__date { font-size: 0.45rem !important; }
  .hero__subtitle { 
    font-size: 0.5rem !important;
    padding-left: 4% !important;
    padding-right: 4% !important;
    margin-bottom: 0 !important;
  }
  
  .hero__text { 
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: -3.5rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 0.5rem !important;
  }
  
  .nein-image { max-width: 75px !important; }
}

/* ============================================
   GRUPPE 02: Sehr klein (320×568)
   iPhone 5/5S/5C
   REAL: 320×454 (568-130 Browser-Overhead)
   ============================================ */
@media (max-width: 320px) and (min-height: 521px) and (max-height: 600px) {
  .header__title { font-size: 0.75rem !important; }
  
  .hero__title { font-size: 1.5rem !important; }
  .hero__question { font-size: 1.5rem !important; }
  .hero__date { font-size: 0.5rem !important; }
  .hero__subtitle { 
    font-size: 0.6rem !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-bottom: 0 !important;
  }
  
  .hero__text { 
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: -3rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
  }
  
  .nein-image { max-width: 95px !important; }
}

/* ============================================
   GRUPPE 03: Klein niedrig (360×640)
   Galaxy S3-S7, Fairphone 2, Nexus 5, BlackBerry Z10
   REAL: ~510px nach Browser-Overhead
   ============================================ */
@media (min-width: 321px) and (max-width: 390px) and (max-height: 549px) {
  .header__title { font-size: 0.8rem !important; }
  
  .hero__title { font-size: 1.6rem !important; }
  .hero__question { font-size: 1.6rem !important; }
  .hero__date { font-size: 0.5rem !important; }
  .hero__subtitle { 
    font-size: 0.6rem !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-bottom: 0 !important;
  }
  
  .hero__text { 
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: -1rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
  }
  
  .nein-image { max-width: 100px !important; }
}

/* ============================================
   GRUPPE 04: Klein mittel (375×667)
   iPhone SE/6/7/8
   REAL: ~537px nach Browser-Overhead
   ============================================ */
@media (min-width: 370px) and (max-width: 380px) and (min-height: 520px) and (max-height: 560px) {
  .header__title { font-size: 0.88rem !important; }
  
  .hero__title { font-size: 1.95rem; }
  .hero__question { font-size: 1.95rem; }
  .hero__date { font-size: 0.65rem; }
  .hero__subtitle { 
    font-size: 0.72rem;
    padding-left: 7% !important;
    padding-right: 7% !important;
  }
  
  .hero__text { 
    padding-top: 0.3rem !important;
    padding-bottom: 0.1rem !important;
    margin-bottom: -2rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 2.8rem !important;
  }
  
  .nein-image { max-width: 135px !important; }
}

/* ============================================
   GRUPPE 04a: Fairphone/Nokia/S8 (360-375×720-760)
   Fairphone 3, Nokia 2.4, Galaxy S8
   REAL: ~590px nach Browser-Overhead
   ============================================ */
@media (min-width: 355px) and (max-width: 380px) and (min-height: 561px) and (max-height: 620px) {
  .header__title { font-size: 0.9rem !important; }
  
  .hero__title { font-size: 2.0rem; }
  .hero__question { font-size: 2.0rem; }
  .hero__date { font-size: 0.68rem; }
  .hero__subtitle { 
    font-size: 0.73rem;
    padding-left: 7% !important;
    padding-right: 7% !important;
  }
  
  .hero__text { 
    padding-top: 0.4rem !important;
    padding-bottom: 0.15rem !important;
    margin-bottom: -2rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
  }
  
  .nein-image { max-width: 140px !important; }
}

/* ============================================
   GRUPPE 05: Klein hoch (375×760-812)
   iPhone X/12 Mini/13 Mini, Galaxy S22, Fairphone 4/5, Redmi 9A
   REAL: ~550-650px nach Browser-Overhead
   min-height: 550px für REALE Viewports!
   ============================================ */
@media (max-width: 380px) and (min-height: 550px) and (max-height: 700px) {
  .header__title { font-size: 0.9rem !important; }
  
  .hero__title { font-size: 2.0rem; }
  .hero__question { font-size: 2.0rem; }
  .hero__date { font-size: 0.65rem; }
  .hero__subtitle { 
    font-size: 0.75rem;
    padding-left: 8% !important;
    padding-right: 8% !important;
  }
  
  .hero__text { 
    padding-top: 0.4rem !important;
    padding-bottom: 0.1rem !important;
    margin-bottom: -2rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
  }
  
  .nein-image { max-width: 140px !important; }
}

/* ============================================
   GRUPPE 06: Mittel bis Groß (360-450×800-960)
   iPhone 12-16, Galaxy S20-S24, Pixel 5-8, Pro Max
   REAL: ~650-750px nach Browser-Overhead (~130px)
   ============================================ */
@media (min-width: 355px) and (max-width: 450px) and (min-height: 650px) {
  .header__title { font-size: 0.95rem !important; }
  
  .hero__title { font-size: 2.5rem !important; }
  .hero__question { font-size: 2.5rem !important; }
  .hero__date { font-size: 0.85rem !important; }
  .hero__subtitle { 
    font-size: 0.95rem !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
  }
  
  .hero__text { 
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: -2rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
  }
  
  .nein-image { max-width: 150px !important; }
}

/* ============================================
   GRUPPE 09: Foldable zugeklappt (280×653)
   Galaxy Z Fold zugeklappt
   REAL: 280×522 (653 * 0.8 = 522px nach Browser-Overhead)
   ============================================ */
@media (max-width: 290px) and (min-height: 640px) {
  .header__title { font-size: 0.7rem !important; }
  
  .hero__title { font-size: 1.5rem; }
  .hero__question { font-size: 1.5rem; }
  .hero__date { font-size: 0.6rem; }
  .hero__subtitle { 
    font-size: 0.65rem;
    padding-left: 6% !important;
    padding-right: 6% !important;
  }
  
  .hero__text { 
    padding-top: 0.5rem !important;
    padding-bottom: 0.2rem !important;
    margin-bottom: -2rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
  }
  
  .nein-image { max-width: 100px !important; }
}

/* ============================================
   GRUPPE 10: Smartphone Landscape (667-915×360-420)
   Desktop-Layout (vertikale Trennung)
   Überschriften: 80% der Hälfte (330px * 0.8 = 264px → 1.8rem)
   Rückenwind und Zukunft auf GLEICHER HÖHE
   ============================================ */
@media (min-width: 650px) and (max-width: 920px) and (max-height: 420px) {
  /* Desktop-Layout aktivieren */
  .hero__content {
    grid-template-columns: 1fr 1fr !important;
    text-align: left !important;
    justify-items: start !important;
    align-items: flex-start !important; /* Beide oben ausrichten */
  }
  
  .hero__text {
    align-items: flex-start !important;
    padding-top: 1rem !important;
  }
  
  .hero__visual {
    padding-top: 2.8rem !important; /* "Zukunft verhindern?" auf Höhe von "für Naunhof" */
    margin-top: 0 !important;
  }
  
  /* Gradient deaktivieren, Desktop-Diagonale aktivieren */
  .hero {
    background: var(--klee) !important;
  }
  
  .hero::before {
    display: block !important;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--linke-bordeaux);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
  }
  
  /* Überschriften 80% der Hälfte */
  .hero__title { font-size: 1.8rem; }
  .hero__question { font-size: 1.8rem; }
  .hero__date { font-size: 0.7rem; }
  .hero__subtitle { 
    font-size: 0.75rem;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  
  /* NEIN Badge */
  .nein-image { max-width: 130px !important; }
  
  /* Header-Titel für Landscape */
  .header__title { font-size: 1.0rem !important; }
}

/* ============================================
   GRUPPE 11: Kleine Tablets (600-720×540-1024)
   Galaxy Tab A7, Amazon Fire 7, Surface Duo aufgeklappt
   REAL: 600×894 (1024-130) oder 720×540 (Surface Duo)
   ============================================ */
@media (min-width: 580px) and (max-width: 730px) and (min-height: 500px) {
  /* Header kleiner und KEINE Ellipsis */
  .header__title { 
    font-size: 0.9rem !important; 
    max-width: none !important;
    text-overflow: clip !important;
  }
  
  .hero__title { font-size: 2.4rem !important; }
  .hero__question { font-size: 2.4rem !important; }
  .hero__date { font-size: 0.85rem !important; }
  .hero__subtitle { 
    font-size: 0.9rem !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
  }
  
  .hero__text { 
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
    margin-bottom: -1.5rem !important;
  }
  
  .hero__visual { 
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
  }
  
  .nein-image { max-width: 160px !important; }
}

  /* TKT-10081: Grünen Trennbalken und alle Abstände auf Mobile entfernen */
  .section-divider {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Kein Abstand zwischen Hero und "Worum geht es" */
  #main {
    margin-top: 0;
    padding-top: 0;
  }

  /* Keine grüne Lücke unter Hero */
  .hero {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hero__question {
    color: #FFFFFF !important;
    margin-bottom: var(--spacing-sm);
  }

  .windrad {
    width: 120px;
    height: 120px;
    bottom: 3%;
  }
}

@media (max-width: 767px) {
  /* TKT-10077: Weißen Abstand zwischen Header und Textblock entfernen */
  .hero {
    min-height: auto;
    padding: var(--header-height) var(--spacing-sm) var(--spacing-lg);
    padding-top: var(--header-height);  /* Direkt unter Header, kein extra Abstand */
  }

  /* Schriftgrößen werden jetzt pro Gerätegruppe definiert (siehe oben) */

  /* Mobile: Hero-Text zentriert */
  .hero__text {
    text-align: center !important;
  }

  /* TKT-10074: Hero-Buttons auf Mobile ausblenden (Scrollen reicht) */
  .hero__cta {
    display: none !important;
  }

  .nein-button {
    font-size: 2rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nein-kreuz {
    width: 40px;
    height: 40px;
  }

  .nein-kreuz::before,
  .nein-kreuz::after {
    width: 24px;
    height: 5px;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .countdown__value {
    font-size: 2rem;
  }

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

  .event-box__speakers {
    flex-direction: column;
  }

  .event-box__ampersand {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: calc(var(--spacing-md) + 10px);
    padding-right: calc(var(--spacing-md) + 10px);
  }

  .footer__logos {
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Parteilogos - 3 Logos nebeneinander bei mobil */
  .footer__logo {
    height: 100px;
    flex: 1;
    max-width: 30%;
    object-fit: contain;
  }

  .footer__bottom {
    padding-left: calc(var(--spacing-md) + 10px);
    padding-right: calc(var(--spacing-md) + 10px);
  }
}

/* Mobile Schriftgrößen (360-767px) */
@media (max-width: 767px) {
  :root {
    --font-size-base: 15px;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }

  body {
    font-size: 15px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header__title {
    font-size: 1rem;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header__logo-icon {
    width: 32px;
    height: 32px;
  }

  /* Hero-Schriftgrößen werden pro Gerätegruppe definiert (siehe oben) */

  .nein-button {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }

  .nein-kreuz {
    width: 32px;
    height: 32px;
  }

  .nein-kreuz::before,
  .nein-kreuz::after {
    width: 18px;
    height: 4px;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .btn--gross {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  .hero__cta .btn,
  .hero__cta .btn.btn--weiss,
  .hero__cta .btn.btn--klee-outline {
    width: 240px !important;
    font-size: 0.9rem !important;
  }

  .card {
    padding: var(--spacing-md);
  }

  .card__number {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .card__title {
    font-size: 1.1rem;
  }

  .card__text {
    font-size: 0.9rem;
  }

  .countdown__value {
    font-size: 1.5rem;
  }

  .countdown__label {
    font-size: 0.7rem;
  }

  .countdown__item {
    padding: 0.5rem 0.75rem;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .section__subtitle {
    font-size: 0.9rem;
  }

  .quote-box {
    padding: var(--spacing-md);
  }

  .quote-box__text {
    font-size: 0.95rem;
  }

  .footer__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .footer__logo {
    height: 120px;
  }

  .footer__bottom {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .windrad {
    width: 60px;
    height: 60px;
  }

  /* Stat-Boxen für sehr kleine Screens */
  .stat-box {
    padding: var(--spacing-md);
  }

  .stat-box__value {
    font-size: 1.75rem;
  }

  .stat-box__label {
    font-size: 0.85rem;
  }

  /* Event-Details */
  .event-details-box {
    padding: var(--spacing-md);
  }

  .event-details-box__value {
    font-size: 1rem;
  }

  /* Speaker-Cards */
  .speaker-card__image {
    width: 120px;
    height: 120px;
  }

  .speaker-card__name {
    font-size: 1.2rem;
  }
}

/* ============================================
   WINDRAD DEKORATION (aus windrad.png)
   ============================================ */

.windrad-deko {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url('../images/windrad.png') no-repeat center center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.windrad-deko--top-right {
  top: 20px;
  right: 20px;
}

.windrad-deko--bottom-left {
  bottom: 20px;
  left: 20px;
}

.windrad-deko--spin {
  animation: windrad-spin 20s linear infinite;
}

@keyframes windrad-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section mit Windrad-Dekoration */
.section--with-windrad {
  position: relative;
  overflow: hidden;
}

.section--with-windrad::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: url('../images/windrad.png') no-repeat center center;
  background-size: contain;
  opacity: 0.08;
  transform: rotate(15deg);
  pointer-events: none;
}

/* ============================================
   LINKE + GRÜNE FARBAKZENTE
   ============================================ */

/* Dezente Akzentlinien - scharfe Farbkanten statt Verlauf (TKT-10018) */
.accent-gradient {
  background: var(--klee);  /* Scharfe Farbe statt Verlauf */
  height: 4px;
  border-radius: 2px;
}

/* Hover-Effekt mit Linke-Lila */
.card:nth-child(even):hover {
  border-left-color: var(--linke-lila);
}

.card:nth-child(3n):hover {
  border-left-color: var(--gruene-mint);
}

/* Dezente Akzentfarben für Links */
.section--hell a:hover,
.section--light a:hover {
  color: var(--linke-lila);
}

/* Quote-Box Variante mit Linke-Akzent */
.quote-box--accent {
  border-left-color: var(--linke-lila);
}

/* Farbakzent-Badges */
.badge--linke {
  background: var(--linke-bordeaux);
  color: var(--weiss);
}

.badge--gruene {
  background: var(--gruene-mint);
  color: var(--schwarz);
}

/* Sektions-Trennlinie - scharfe Farbkante (TKT-10018) */
.section-divider {
  height: 3px;
  background: var(--klee);  /* Scharfe Farbe statt Verlauf */
  margin: 0;
  border: none;
}

/* Footer-Logo Hover mit Akzent */
.footer__logo:hover {
  filter: drop-shadow(0 0 8px var(--linke-rosa));
}

/* ============================================
   PRINT
   ============================================ */

@media print {
  .header, .nav, .countdown, .footer {
    display: none;
  }

  .hero {
    min-height: auto;
    background: none;
    color: var(--schwarz);
  }

  .section {
    background: none !important;
    color: var(--schwarz) !important;
  }
}
