/* =============================================
   RUN FOR KIDS NWM – Stylesheet
   Colors from poster: #003399 (blue), #ffd600 (yellow), #fff (white)
   Fonts: Bangers (display), Nunito (body) – self-hosted, DSGVO-konform
   ============================================= */

/* Self-hosted Fonts – keine Datenweitergabe an Dritte */
@font-face {
  font-family: 'Bangers';
  src: url('../fonts/bangers-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue:      #003399;
  --blue-dark: #001f66;
  --blue-mid:  #0044cc;
  --yellow:    #ffd600;
  --yellow-dk: #e6c000;
  --white:     #ffffff;
  --off-white: #f5f7ff;
  --text:      #111827;
  --text-light:#4b5563;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,51,153,0.15);
  --shadow-lg: 0 12px 48px rgba(0,51,153,0.25);
  --transition:0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,51,153,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--yellow);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.nav-logo small {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-left: 6px;
  opacity: 0.9;
}
.logo-run  { color: var(--white); }
.logo-for  { color: var(--yellow); }
.logo-kids { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.nav-links .nav-cta:hover { background: var(--yellow-dk); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,20,80,0.55) 0%,
    rgba(0,20,80,0.75) 60%,
    rgba(0,20,80,0.92) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-edition {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 4px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-title .word { display: inline-block; }
.hero-title .accent { color: var(--yellow); }
.hero-date {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 2px solid var(--yellow);
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.hero-place {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 99px;
}
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,214,0,0.45);
  background: #ffe033;
}
.btn-primary:active { transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section { padding: 100px 0; }
.section-label {
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--blue);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--blue-dark);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 56px;
}

/* =============================================
   INFO SECTION
   ============================================= */
.info-section { background: var(--off-white); }

.info-stripe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}
.stripe-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
}
.stripe-icon { font-size: 1.5rem; }
.stripe-text { color: var(--white); font-weight: 800; font-size: 1rem; }
.stripe-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--blue {
  background: var(--blue);
  color: var(--white);
}
.card--yellow {
  background: var(--yellow);
  color: var(--blue-dark);
}
.card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.card h3 {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.card-sub { font-weight: 800; font-size: 0.85rem; letter-spacing: 2px; opacity: 0.7; margin-bottom: 20px; text-transform: uppercase; }
.card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.card ul li {
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
}
.card--blue ul li::before { color: var(--yellow); }
.card--yellow ul li::before { color: var(--blue); }
.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  margin-top: auto;
}
.card--yellow .card-price { border-top-color: rgba(0,51,153,0.2); }
.price {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.card--blue .price { color: var(--yellow); }
.card--yellow .price { color: var(--blue); }
.price-label { font-weight: 800; font-size: 0.9rem; opacity: 0.8; }

/* =============================================
   PROGRAMM / TIMELINE  –  einfaches Flexbox-Layout
   Kein display:contents, kein absolutes Positioning
   ============================================= */
.programm-section { background: var(--white); }

.timeline {
  max-width: 640px;
}

/* Jede Zeile: drei Bereiche nebeneinander */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-height: 0;
}

/* Linke Spalte: Uhrzeit */
.tl-left {
  width: 56px;
  flex-shrink: 0;
  padding-top: 12px;
  text-align: right;
  padding-right: 8px;
}
.tl-time {
  display: block;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--blue);
  white-space: nowrap;
  line-height: 1.2;
}

/* Mittlere Spalte: Dot + vertikale Linie */
.tl-mid {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
  flex-shrink: 0;
  margin-top: 14px;
}
.tl-line {
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--yellow));
  flex: 1;
  min-height: 24px;
}

/* Highlight-Variante */
.is-highlight .tl-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow), 0 0 10px rgba(255,214,0,0.45);
  width: 18px;
  height: 18px;
}
.is-highlight .tl-time { color: var(--blue-dark); }

/* Rechte Spalte: Inhaltskarte */
.tl-right {
  flex: 1;
  padding: 0 0 20px 12px;
}
.tl-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 4px solid transparent;
  transition: transform var(--transition);
}
.tl-card:hover { transform: translateX(4px); }
.tl-card h4 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}
.tl-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
.is-highlight .tl-card {
  background: var(--blue);
  border-left-color: var(--yellow);
}
.is-highlight .tl-card h4 { color: var(--white); }
.is-highlight .tl-card p  { color: rgba(255,255,255,0.82); }

/* =============================================
   ZAHLUNG
   ============================================= */
.zahlung-section { background: var(--blue-dark); padding: 80px 0; }
.zahlung-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zahlung-text h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.zahlung-text p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.6; margin-bottom: 12px; }
.zahlung-text .hinweis {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.95rem;
}
.konto-box {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.konto-logo {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.konto-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.konto-row span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.konto-row strong {
  font-size: 1rem;
  color: var(--white);
  word-break: break-all;
}
.konto-row a { color: var(--yellow); }

/* =============================================
   PLAKAT
   ============================================= */
.plakat-section { background: var(--off-white); }
.plakat-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.plakat-img {
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.plakat-img:hover { transform: scale(1.02); }
.btn-secondary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* =============================================
   ANMELDUNG / FORM
   ============================================= */
.anmeldung-section { background: var(--white); }
.anmeldung-info { margin-bottom: 40px; }

.anmelde-form {
  max-width: 680px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(0,51,153,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--blue-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #dde3f0;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,51,153,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
textarea { resize: vertical; min-height: 100px; }

/* Honeypot */
.hp-field { display: none; }

.form-privacy {
  margin-bottom: 28px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}
.checkbox-label a { color: var(--blue); font-weight: 700; text-decoration: underline; }

.form-submit { text-align: center; }
.form-submit .btn-primary { width: 100%; font-size: 1.1rem; padding: 16px; opacity: 1; animation: none; }

.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: none;
  text-align: center;
}
.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #6ee7b7;
  display: block;
}
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fca5a5;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--blue-dark); padding: 60px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .logo-run,
.footer-brand .logo-kids { color: var(--white); font-family: 'Bangers', cursive; font-size: 1.8rem; letter-spacing: 2px; }
.footer-brand .logo-for  { color: var(--yellow); font-family: 'Bangers', cursive; font-size: 1.8rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-brand a { color: var(--yellow); font-weight: 700; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* =============================================
   GALERIE
   ============================================= */
.galerie-section { background: var(--off-white); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dde3f0;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.galerie-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.galerie-item:hover img {
  transform: scale(1.06);
}

.galerie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,20,80,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 28px 14px 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.galerie-item:hover .galerie-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

@media (max-width: 768px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item--wide { grid-column: span 2; }
  .galerie-caption { opacity: 1; transform: none; }
  .lightbox-prev { left: -8px; }
  .lightbox-next { right: -8px; }
}
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--blue-dark);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 3px solid var(--yellow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .zahlung-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .anmelde-form { padding: 28px 20px; }
  .info-stripe { flex-direction: column; gap: 12px; }
  .stripe-divider { display: none; }
  .tl-left { width: 46px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { align-items: flex-start; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .card { padding: 24px 20px; }
  .tl-left { width: 40px; }
  .tl-time { font-size: 0.72rem; }
  .tl-card { padding: 12px 14px; }
}
