/* ═══════════════════════════════════════════════════
   IN LITORE MUSIC FESTIVAL 2026 — Stylesheet v2
   Refined: HIVE-inspired dark premium + IKARUS structure
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --magenta: #e91e8c;
  --magenta-light: #ff3aad;
  --cyan: #00e5c3;
  --black: #000000;
  --bg: #050505;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --white: #f5f0f0;
  --gray-100: #e8e4e4;
  --gray-300: #aaaaaa;
  --gray-500: #666666;
  --gray-700: #2a2a2a;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 88px;
  --container: 1400px;
  --gutter: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --section-pad: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
  /* iOS momentum scroll */
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent pull-to-refresh jank & overflow bounce on mobile */
  overscroll-behavior-y: none;
  /* Better tap feedback control */
  -webkit-tap-highlight-color: transparent;
}

/* Remove tap-highlight on all interactive elements, add tasteful feedback instead */
a, button, .btn, .lineup__artist, .faq__question, .timetable__tab, .experience__card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* removes 300ms double-tap delay on older browsers */
}

/* Safe-area padding for iPhone notches / home-indicator */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section Defaults ── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--white);
}

.section__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--gray-300);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--magenta);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--magenta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.35);
}

.btn--outline {
  border: 1.5px solid rgba(245,240,240,0.2);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(245,240,240,0.06);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav--scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

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

.nav__logo-img {
  height: 56px; /* Logo groesser + dominanter */
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.6);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--magenta-light);
  transform: translateY(-1px);
}

.nav__link--active { color: var(--white) !important; }
.nav__link--active::after { width: 100% !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1100;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__burger--open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu--open { opacity: 1; visibility: visible; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.9rem;          /* vorher 2.8rem – deutlich kleiner, professioneller */
  letter-spacing: 0.08em;
  line-height: 1.3;
  padding: 8px 16px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}
.mobile-menu--open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu--open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu--open .mobile-menu__link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu--open .mobile-menu__link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu--open .mobile-menu__link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu--open .mobile-menu__link:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu--open .mobile-menu__link:nth-child(6) { transition-delay: 0.28s; }
.mobile-menu--open .mobile-menu__link:nth-child(7) { transition-delay: 0.32s; }
.mobile-menu__link:hover { color: var(--cyan); }
.mobile-menu__link--cta { color: var(--magenta) !important; margin-top: 12px; }

.mobile-menu__socials {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  opacity: 0;
  transition: opacity 0.4s 0.4s;
}
.mobile-menu--open .mobile-menu__socials { opacity: 1; }
.mobile-menu__socials a { color: var(--gray-300); transition: color 0.3s; }
.mobile-menu__socials a:hover { color: var(--cyan); }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default: Subject leicht im oberen Drittel, damit Logo-Mitte frei bleibt.
     Wird vom Inline-Script pro Bild feinjustiert (siehe index.html). */
  object-position: center 25%;

  /* Ken Burns Effekt: DEUTLICH spürbarer Zoom + Pan.
     Wirkt wie ein leicht laufendes Hintergrund-Video.
     30s Zyklus, alternierend → hin + her. */
  transform: scale(1.05);
  animation: kenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    /* Deutlich größerer Zoom (5% → 22%) + klar wahrnehmbarer Pan */
    transform: scale(1.22) translate(-3%, -2.5%);
  }
}

/* Accessibility: Nutzer mit prefers-reduced-motion bekommen statisches Bild */
@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    animation: none;
    transform: scale(1.05);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* WCAG 2.1 Kontrast-Prinzip + Course Book S.79:
     "Auf ausreichende Farb- und Helligkeitskontraste achten"
     Nielsen-Heuristik "Ästhetisches & minimalistisches Design":
     Bild = Atmosphäre, Text = Fokus.
     Mehrlagiges Overlay: Vignette + dunkler Grund-Dim + Gradient oben/unten. */
  background:
    /* Vignette zentriert — Mitte aufgehellt, Ränder dunkel für Kontrast */
    radial-gradient(ellipse 80% 70% at center 55%,
      rgba(5,5,5,0.28) 0%,
      rgba(5,5,5,0.50) 50%,
      rgba(5,5,5,0.85) 100%
    ),
    /* Grundschicht: oben (Logo) + unten (CTA) dunkel, Mitte heller */
    linear-gradient(180deg,
      rgba(5,5,5,0.62) 0%,
      rgba(5,5,5,0.28) 35%,
      rgba(5,5,5,0.28) 55%,
      rgba(5,5,5,0.78) 85%,
      rgba(5,5,5,1) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  /* Extra Abstand nach unten: Badge + Logo rücken tiefer,
     mehr Luft zwischen Nav/Sticker und Hero-Content */
  padding-top: calc(var(--nav-height) + clamp(40px, 8vh, 100px));
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* "5. Ausgabe" Badge – clean Cyan-Rahmen, kantig */
.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 229, 195, 0.55);
  padding: 9px 22px;
  border-radius: 4px;
  background: rgba(0, 229, 195, 0.08);
  margin-bottom: clamp(14px, 2.5vh, 28px);
  margin-top: 0;
}

/* Jubiläums-Sticker – handschriftlich, leicht schräg.
   Sitzt UNTER der Nav (genug Abstand damit er nicht mit dem Nav-Logo
   überlappt), wirkt wie ein aufgeklebter Handschrift-Sticker. */
.hero__jubilee-sticker {
  position: absolute;
  /* Deutlich mehr Abstand zur Nav damit der rotierte Text nicht ins Nav-Logo reinragt */
  top: calc(var(--nav-height) + clamp(60px, 9vh, 120px));
  left: clamp(16px, 5vw, 64px);
  z-index: 3;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--magenta);
  transform: rotate(-5deg);   /* weniger Neigung → ragt nicht so weit hoch */
  transform-origin: left top;
  white-space: nowrap;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.9),
    0 4px 14px rgba(0,0,0,0.6),
    0 0 28px rgba(233, 30, 140, 0.4);
  animation: jubileeWobble 4.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes jubileeWobble {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%      { transform: rotate(-3deg) scale(1.04); }
}

/* Tablet: kompakter, weiter weg von Nav */
@media (max-width: 768px) {
  .hero__jubilee-sticker {
    font-size: clamp(1.9rem, 7.3vw, 2.5rem);
    top: calc(var(--nav-height) + 44px);
    left: 20px;
  }
}

/* Mobile: noch kompakter */
@media (max-width: 480px) {
  .hero__jubilee-sticker {
    font-size: 1.85rem;
    top: calc(var(--nav-height) + 32px);
    left: 22px;
  }
}

/* In litore Hero-Logo – Text-Wortmarke (horizontal, nicht vertikal) */
.hero__logo {
  max-width: 460px;
  width: min(72vw, 460px);
  height: auto;
  margin: 0 auto 12px;
  display: block;
  /* Doppelter Drop-Shadow: scharfer Halo + weicher Glow
     → Kontrast garantiert egal wie das Hintergrundbild aussieht */
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.8))
    drop-shadow(0 8px 32px rgba(0,0,0,0.7));
}

/* "Music Festival" Untertitel unter dem Text-Logo */
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
  margin: 0 auto 28px;
  /* kompensiert Letter-Spacing-Drift rechts */
  padding-left: 0.4em;
}

.hero__date {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* Countdown */
.hero__countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}

.countdown__item {
  text-align: center;
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,240,240,0.08);
  border-radius: 4px;
  padding: 12px 16px 10px;
  min-width: 72px;
}

.countdown__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.countdown__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gray-500);
  padding-top: 12px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  /* Mehr Atemraum zur Text-Marquee danach */
  margin-bottom: clamp(40px, 6vh, 80px);
}

/* Scroll-Indikator entfernt – Tickets-/Lineup-Buttons sind klare CTAs. */

/* ═══════════════ TEXT MARQUEE ═══════════════ */
.text-marquee {
  padding: 20px 0;
  background: var(--bg);
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
  overflow: hidden;
}

.text-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: textMarqueeScroll 30s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.text-marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 24px;
}

.text-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
}

@keyframes textMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════ LINEUP ═══════════════ */
.lineup { background: var(--bg); }

/* ── Stage-Sections (Mainstage / CIRCUS) ─────────────────────────
   Cooler, deutlich abgegrenzt. Mainstage = magenta-Akzent,
   CIRCUS = cyan-Akzent + eigener Background-Tinge. */
.lineup__stage {
  margin-bottom: 80px;
  padding: 48px 32px;
  border-radius: 8px;
  position: relative;
}
.lineup__stage:last-of-type { margin-bottom: 0; }

/* MAINSTAGE: dezenter magenta-Tinge im Background */
.lineup__stage[data-stage="main"] {
  background:
    radial-gradient(ellipse 80% 60% at top, rgba(233,30,140,0.06), transparent 70%),
    var(--surface);
  border: 1px solid rgba(233, 30, 140, 0.18);
}

/* CIRCUS: deutlich cyan, anderer Look – mit "Underground"-Feel */
.lineup__stage[data-stage="circus"] {
  background:
    radial-gradient(ellipse 80% 60% at top, rgba(0, 229, 195, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(0,229,195,0.02), transparent 50%),
    var(--surface);
  border: 1px solid rgba(0, 229, 195, 0.22);
}

/* Stage-Banner Header – groß, prominent, mit Sub-Label */
.lineup__stage-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 36px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-700);
  text-transform: uppercase;
  position: relative;
}

/* Sub-Label per ::after */
.lineup__stage[data-stage="main"] .lineup__stage-name::after {
  content: "1";
  position: absolute;
  top: -8px; right: 0;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--magenta);
  background: rgba(233, 30, 140, 0.14);
  border: 1px solid rgba(233, 30, 140, 0.4);
  padding: 4px 10px;
  border-radius: 3px;
}
.lineup__stage[data-stage="main"] .lineup__stage-name {
  color: var(--white);
}
.lineup__stage[data-stage="main"] .lineup__stage-name {
  border-bottom-color: rgba(233, 30, 140, 0.35);
}

.lineup__stage[data-stage="circus"] .lineup__stage-name::after {
  content: "2";
  position: absolute;
  top: -8px; right: 0;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  background: rgba(0, 229, 195, 0.14);
  border: 1px solid rgba(0, 229, 195, 0.4);
  padding: 4px 10px;
  border-radius: 3px;
}
.lineup__stage[data-stage="circus"] .lineup__stage-name {
  border-bottom-color: rgba(0, 229, 195, 0.35);
  color: var(--cyan);
}

.lineup__stage-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lineup__stage-dot--main {
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.4), 0 0 30px rgba(233, 30, 140, 0.8);
}
.lineup__stage-dot--circus {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.4), 0 0 30px rgba(0, 229, 195, 0.8);
}

/* Per-Stage Hover-Akzent (subtiler Tinge auf Cards beim Hover) */
.lineup__stage[data-stage="main"] .lineup__artist:not(.lineup__artist--mystery):not(.lineup__artist--activity):not(.lineup__artist--tba):hover {
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.22), 0 0 0 1px rgba(233, 30, 140, 0.25);
}
.lineup__stage[data-stage="circus"] .lineup__artist:not(.lineup__artist--mystery):not(.lineup__artist--activity):not(.lineup__artist--tba):hover {
  box-shadow: 0 16px 48px rgba(0, 229, 195, 0.22), 0 0 0 1px rgba(0, 229, 195, 0.3);
}

/* Headliners (nur Mainstage) */
.lineup__stage .lineup__headliners { margin-bottom: 14px; }

@media (max-width: 768px) {
  .lineup__stage {
    margin-bottom: 48px;
    padding: 28px 16px;
  }
  .lineup__stage-name {
    font-size: 1.6rem;
    margin-bottom: 22px;
    padding-bottom: 10px;
    gap: 12px;
  }
  .lineup__stage[data-stage="main"] .lineup__stage-name::after,
  .lineup__stage[data-stage="circus"] .lineup__stage-name::after {
    font-size: 0.5rem;
    padding: 3px 7px;
    top: -4px;
  }
  .lineup__stage-dot { width: 12px; height: 12px; }
}

.lineup__headliners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.lineup__artist {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: default;
}
.lineup__artist:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lineup__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.lineup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.lineup__artist:hover .lineup__img { transform: scale(1.06); }

/* ── Individuelle Bild-Positionierung pro Künstler ───────────────────
   Wir nutzen object-fit: cover (Default) und passen object-position
   an, damit der Kopf zentral / oben sichtbar ist.
   Werte: x y → z. B. "center top" / "center 20%" / "50% 10%". */

/* Neue Pressefotos (freigestellt mit weißem Hintergrund, Person zentral). */
.lineup__artist[data-artist="Kreisligalegende"] .lineup__img {
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}
/* Nik-B + Nikki Breuer: Portrait-Fotos, Kopf oben → Bild tiefer setzen
   damit der Kopf nicht an der Stirn abgeschnitten wird */
.lineup__artist[data-artist="Nik-B"] .lineup__img,
.lineup__artist[data-artist="Nikki Breuer"] .lineup__img {
  object-fit: cover;
  object-position: center top;
}
/* Isi: Querformat 1200×800, Person mittig → center reicht */
.lineup__artist[data-artist="Isi Glück"] .lineup__img {
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}
/* DJ Leif: Querformat 1200×800, Brust + Kopf */
.lineup__artist[data-artist="DJ Leif"] .lineup__img {
  object-fit: cover;
  object-position: center 30%;
  background: #ffffff;
}

/* Jojee B2B Directa: Doppelportrait, Gesichter nach oben */
.lineup__artist[data-artist="JOJEE B2B DIRECTA"] .lineup__img {
  object-position: center 5%;
}

/* Ericsson: Pressefoto Hochformat, Person sitzt unten — Bottom-Anchor */
.lineup__artist[data-artist="Ericsson"] .lineup__img {
  object-position: center bottom;
}

/* DJ Räucherlachs: Pressefoto Hochformat, Kopf oben → Top-Position */
.lineup__artist[data-artist="DJ Räucherlachs"] .lineup__img {
  object-position: center top;
}

/* Induction B2B Bewa: freigestelltes Doppelportrait, Köpfe oben */
.lineup__artist[data-artist="Induction B2B Bewa"] .lineup__img {
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

/* Noah Werth: Top-Position, damit Haare oben nicht abgeschnitten werden */
.lineup__artist[data-artist="Noah Werth"] .lineup__img {
  object-fit: cover;
  object-position: center top;
  background: var(--surface-2);
}

/* NCLBTZ: deutlich näher ran (Kopf groß) – +20% permanenter Zoom */
.lineup__artist[data-artist="NCLBTZ"] .lineup__img {
  object-position: center 12%;
  transform: scale(1.2);
  transform-origin: center 30%;
}
.lineup__artist[data-artist="NCLBTZ"]:hover .lineup__img {
  transform: scale(1.27);
  transform-origin: center 30%;
}

/* Robin White: Kopf in den oberen Drittel rücken */
.lineup__artist[data-artist="Robin White"] .lineup__img {
  object-position: center 18%;
}

/* Finja (Yoga): Gesicht oben halten */
.lineup__artist[data-artist="Finja"] .lineup__img {
  object-position: center 25%;
}

/* Headliner-Portraits: Köpfe garantiert sichtbar */
.lineup__artist[data-artist="YAMAS"] .lineup__img {
  object-position: center 22%;  /* Duo, beide Köpfe oben */
}
.lineup__artist[data-artist="KXXMA"] .lineup__img {
  object-position: center 25%;  /* Maske im oberen Drittel */
}
.lineup__artist[data-artist="Le Shuuk"] .lineup__img {
  object-position: center 18%;  /* Portrait Kopf oben */
}
.lineup__artist[data-artist="Paul Wolf"] .lineup__img {
  object-position: center 18%;  /* Portrait Kopf oben */
}
.lineup__artist[data-artist="MBP"] .lineup__img {
  object-position: center 15%;
}
.lineup__artist[data-artist="Nic Johnson & Band"] .lineup__img {
  object-position: center 35%;
  transform: scale(1.1);
}
.lineup__artist[data-artist="Nic Johnson & Band"]:hover .lineup__img {
  transform: scale(1.16);
}
.lineup__artist[data-artist="KSB"] .lineup__img {
  object-position: center 20%;
}
.lineup__artist[data-artist="NIK-B B2B NOAH WERTH"] .lineup__img {
  object-position: center 20%;
}
.lineup__artist[data-artist="Extra Brut"] .lineup__img {
  object-position: center 25%;
}
/* Maybe Music: noch deutlich näher rangezoomt (~30% mehr) */
.lineup__artist[data-artist="Maybe Music"] .lineup__img {
  object-position: center 20%;
  transform: scale(1.5);
}
.lineup__artist[data-artist="Maybe Music"]:hover .lineup__img {
  transform: scale(1.55);
}

/* (weitere Custom-Positionen hier ergänzen wenn Bilder nicht passen) */

/* ═══════════════ ACTIVITY CARD (Yoga/Wellness) ═══════════════
   Visuell anders als DJ-Cards: Cyan-Akzent, kleines "Activity"-Tag,
   weicherer Look. */
/* Activity-Card (Yoga / kein DJ-Act) – warm-gelbe Farbwelt */
.lineup__artist--activity {
  border: 1px solid rgba(255, 196, 0, 0.40);
  background:
    linear-gradient(135deg, rgba(255,196,0,0.10), rgba(255,196,0,0.02)),
    var(--surface);
}
.lineup__artist--activity:hover {
  box-shadow:
    0 20px 60px rgba(255, 196, 0, 0.20),
    0 0 0 1px rgba(255, 196, 0, 0.45);
}

.lineup__activity-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: #ffc400;
  z-index: 2;
}

.lineup__activity-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffc400;
  background: rgba(255, 196, 0, 0.16);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  line-height: 1;
}

@media (max-width: 768px) {
  .lineup__activity-tag { font-size: 0.5rem; padding: 2px 6px; }
  .lineup__activity-icon { width: 26px; height: 26px; top: 8px; right: 8px; }
  .lineup__activity-icon svg { width: 16px; height: 16px; }
}

/* ═══════════════ MYSTERY CARD (DJ ohne Foto) ═══════════════
   Spannender Platzhalter mit pulsierendem Frage-Icon */
.lineup__artist--mystery {
  border: 1px solid rgba(245, 240, 240, 0.06);
  background:
    linear-gradient(135deg, rgba(233, 30, 140, 0.08), rgba(0, 229, 195, 0.04)),
    var(--surface);
}
.lineup__artist--mystery:hover {
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.2);
}

.lineup__img-placeholder--mystery {
  background:
    radial-gradient(ellipse at center, rgba(233,30,140,0.15) 0%, transparent 70%),
    var(--surface-2);
  color: var(--magenta);
  animation: mysteryPulse 2.4s ease-in-out infinite;
}

@keyframes mysteryPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}

.lineup__genre--mystery {
  color: var(--magenta);
  font-style: italic;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .lineup__img-placeholder--mystery { animation: none; opacity: 0.85; }
}

.lineup__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  background: var(--surface-2);
}
.lineup__img-placeholder--tba {
  font-size: 2.5rem;
  color: var(--magenta);
  animation: tbaPulse 2s ease-in-out infinite;
}
@keyframes tbaPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.lineup__info { padding: 12px 14px; }
.lineup__name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; }
.lineup__genre { font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.12em; }

.lineup__artist--xl .lineup__img-wrap { aspect-ratio: 3/4; }
.lineup__artist--xl .lineup__name { font-size: 1.05rem; }
.lineup__artist--xl:hover {
  box-shadow: 0 20px 60px rgba(233, 30, 140, 0.2), 0 0 0 1px rgba(233, 30, 140, 0.12);
}

.lineup__artist--tba { border: 1px dashed var(--gray-700); background: transparent; }
.lineup__artist--tba:hover { border-color: var(--magenta); }

.lineup__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .lineup__headliners { gap: 8px; }
  .lineup__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lineup__info { padding: 8px 10px; }
  .lineup__name { font-size: 0.7rem; }
  .lineup__artist--xl .lineup__name { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .lineup__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* ═══════════════ EXPERIENCE ═══════════════ */
.experience {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.experience__bg-imgs { position: absolute; inset: 0; z-index: 0; }
.experience__bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.experience .container { position: relative; z-index: 1; }

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.experience__card {
  background: rgba(245,240,240,0.03);
  border: 1px solid rgba(245,240,240,0.06);
  border-radius: 6px;
  padding: 32px 24px;
  transition: all 0.4s var(--ease-out);
  /* Desktop (≥960px, 4 Spalten): Icon MITTIG oben, Text zentriert darunter */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.experience__card:hover {
  background: rgba(245,240,240,0.06);
  border-color: rgba(233, 30, 140, 0.25);
  transform: translateY(-4px);
}

.experience__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 229, 195, 0.08);
  margin-bottom: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

.experience__card-body { min-width: 0; }

.experience__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.experience__card-text {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.65;
}

/* Tablet (540–960px, 2 Spalten): Icon LINKS, Text RECHTS */
@media (max-width: 960px) and (min-width: 541px) {
  .experience__card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 24px 22px;
  }
  .experience__icon { margin-bottom: 0; margin-top: 2px; }
}

.experience__card:nth-child(1) { transition-delay: 0s; }
.experience__card:nth-child(2) { transition-delay: 0.08s; }
.experience__card:nth-child(3) { transition-delay: 0.16s; }
.experience__card:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 960px) { .experience__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .experience__grid { grid-template-columns: 1fr; gap: 12px; }
  .experience__card { padding: 24px 20px; }
}

/* ═══════════════ IMAGE MARQUEE (mit Touch-Drag) ═══════════════ */
.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0;
  background: var(--bg);
  /* iOS momentum scroll */
  -webkit-overflow-scrolling: touch;
  /* Scrollbar ausblenden — visuell clean, Funktion bleibt */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Subtil andeuten, dass man draggen/swipen kann */
  cursor: grab;
  /* Verhindert, dass die Browser-Default Touch-Aktion (vertikales Scroll)
     stört — aber horizontales Pan explizit erlauben */
  touch-action: pan-x;
}
.marquee::-webkit-scrollbar { display: none; }

.marquee--grabbing {
  cursor: grabbing;
  user-select: none;
}

.marquee__track {
  display: flex;
  gap: 4px;
  width: max-content;
  /* Animation wird jetzt von JS gesteuert (scrollLeft) */
}
.marquee__img {
  height: 240px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none; /* Images sollen Drag nicht abfangen */
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 768px) { .marquee__img { height: 160px; } }

/* ═══════════════ VIDEO SECTION ═══════════════ */
.video-section { background: var(--surface); }

.video-section__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  justify-content: center;
  /* Damit das Layout auf großen Screens zentriert bleibt
     (statt linkslastig mit leerem schwarzen Bereich rechts) */
  max-width: 900px;
  margin: 0 auto;
}

.video-section__phone { display: flex; justify-content: center; }

.video-section__phone-frame {
  width: 280px;
  background: var(--surface-3);
  border-radius: 32px;
  padding: 12px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,240,240,0.06);
}

.video-section__phone-notch {
  width: 100px;
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  margin: 0 auto 10px;
}

.video-section__iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  background: var(--black);
  display: block;
}

.video-section__content {
  max-width: 500px;
}

.video-section__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.video-section__stat { text-align: center; }

.video-section__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  display: block;
  color: var(--magenta);
}

.video-section__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
  display: block;
}

.video-section__text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .video-section__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-section__phone-frame { width: 240px; }
  .video-section__stats { grid-template-columns: repeat(2, 1fr); }
  .video-section__content { text-align: center; max-width: 100%; }
  .video-section__content .btn { margin: 0 auto; }
}

/* ═══════════════ TIMETABLE ═══════════════ */
.timetable { background: var(--bg); }

.timetable__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.timetable__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 44px;
  border-radius: 4px;
  border: 1px solid var(--gray-700);
  background: transparent;
  transition: all 0.3s var(--ease-out);
}
.timetable__tab:hover { border-color: var(--gray-500); }
.timetable__tab--active { background: var(--magenta); border-color: var(--magenta); }

.timetable__tab-day {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.timetable__tab-date { font-size: 0.72rem; color: rgba(245,240,240,0.5); margin-top: 2px; }
.timetable__tab--active .timetable__tab-date { color: rgba(245,240,240,0.9); }

.timetable__day { display: none; }
.timetable__day--active { display: block; animation: fadeIn 0.4s var(--ease-out); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.timetable__stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.timetable__stage-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-700);
}

.timetable__stage-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.timetable__stage-dot--main { background: var(--magenta); }
.timetable__stage-dot--circus { background: var(--cyan); }

/* Opening-Block: querformat über beide Stages, markiert Festivalöffnung */
.timetable__opening {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding: 14px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.14), rgba(0, 229, 195, 0.10));
  border: 1px solid rgba(233, 30, 140, 0.28);
  border-radius: 6px;
  text-align: center;
}
.timetable__opening-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--magenta);
}
.timetable__opening-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gray-100, #f5f0f0);
  font-weight: 600;
}
.timetable__opening-close {
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-style: italic;
  margin-top: -2px;
}

.timetable__slots { display: flex; flex-direction: column; gap: 3px; }

.timetable__slot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 14px;
  border-radius: 4px;
  background: var(--surface);
  transition: background 0.3s;
}
.timetable__slot:hover { background: var(--surface-2); }

.timetable__time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  min-width: 50px;
}
.timetable__artist-name { font-weight: 500; font-size: 0.88rem; }

/* Mainstage: alle Slots magenta-tinge */
.timetable__stage--main .timetable__slot {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.10), rgba(233, 30, 140, 0.02));
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-left: 3px solid var(--magenta);
}
.timetable__stage--main .timetable__slot:hover {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.14), rgba(233, 30, 140, 0.04));
}
.timetable__stage--main .timetable__time { color: var(--magenta); }

/* CIRCUS: alle Slots cyan-tinge */
.timetable__stage--circus .timetable__slot {
  background: linear-gradient(135deg, rgba(0, 229, 195, 0.10), rgba(0, 229, 195, 0.02));
  border: 1px solid rgba(0, 229, 195, 0.20);
  border-left: 3px solid var(--cyan);
}
.timetable__stage--circus .timetable__slot:hover {
  background: linear-gradient(135deg, rgba(0, 229, 195, 0.14), rgba(0, 229, 195, 0.04));
}
.timetable__stage--circus .timetable__time { color: var(--cyan); }

/* Highlight-Slots (Headliner) – etwas intensiver */
.timetable__stage--main .timetable__slot--highlight {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.20), rgba(233, 30, 140, 0.06));
  border-color: var(--magenta);
}
.timetable__stage--main .timetable__slot--highlight .timetable__artist-name { font-weight: 700; }
.timetable__stage--circus .timetable__slot--highlight {
  background: linear-gradient(135deg, rgba(0, 229, 195, 0.20), rgba(0, 229, 195, 0.06));
  border-color: var(--cyan);
}
.timetable__stage--circus .timetable__slot--highlight .timetable__artist-name { font-weight: 700; }

.timetable__slot--tba { opacity: 0.45; }
.timetable__slot--tba .timetable__artist-name { font-style: italic; color: var(--gray-500); }

/* Umbau-Slot: gelb, schmaler als normale Slots */
.timetable__stage--main .timetable__slot--changeover,
.timetable__stage--circus .timetable__slot--changeover {
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.10), rgba(255, 196, 0, 0.02));
  border: 1px dashed rgba(255, 196, 0, 0.45);
  border-left: 2px dashed rgba(255, 196, 0, 0.55);
  padding: 5px 14px;
  gap: 12px;
}
.timetable__slot--changeover .timetable__time,
.timetable__stage--main .timetable__slot--changeover .timetable__time,
.timetable__stage--circus .timetable__slot--changeover .timetable__time {
  color: #ffc400;
  font-size: 0.92rem;
}
.timetable__slot--changeover .timetable__artist-name {
  font-style: italic;
  font-weight: 600;
  color: #ffc400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Yoga-Slot im Timetable: gleiche warme Farbwelt wie Activity-Card */
.timetable__stage--main .timetable__slot--yoga,
.timetable__stage--circus .timetable__slot--yoga {
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.10), rgba(255, 196, 0, 0.02));
  border: 1px solid rgba(255, 196, 0, 0.30);
  border-left: 3px solid #ffc400;
}
.timetable__slot--yoga .timetable__time,
.timetable__stage--main .timetable__slot--yoga .timetable__time,
.timetable__stage--circus .timetable__slot--yoga .timetable__time {
  color: #ffc400;
}
.timetable__slot--yoga .timetable__artist-name {
  color: #ffc400;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.timetable__yoga-icon {
  flex-shrink: 0;
  color: #ffc400;
  opacity: 0.95;
}

.timetable__disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-style: italic;
}

@media (max-width: 640px) {
  .timetable__stages { grid-template-columns: 1fr; gap: 36px; }
  .timetable__tab { padding: 12px 28px; }
}

/* ═══════════════ TICKETS ═══════════════ */
.tickets {
  position: relative;
  overflow: hidden;
}
.tickets__bg { position: absolute; inset: 0; z-index: 0; }
.tickets__bg-img { width: 100%; height: 100%; object-fit: cover; }
.tickets__overlay { position: absolute; inset: 0; background: rgba(5, 5, 5, 0.9); }
.tickets .container { position: relative; z-index: 1; }

.tickets__phases {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tickets__phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 4px;
  background: rgba(245,240,240,0.03);
  border: 1px solid rgba(245,240,240,0.06);
  min-width: 110px;
  position: relative;
}
.tickets__phase--sold { opacity: 0.35; }
.tickets__phase--sold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-500);
}
.tickets__phase--active {
  border-color: var(--magenta);
  background: rgba(233, 30, 140, 0.08);
}
.tickets__phase-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tickets__phase-status {
  font-size: 0.6rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tickets__phase-badge {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--white);
  background: var(--magenta);
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tickets__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 36px;
}

.tickets__cta { text-align: center; }

.tickets__cta .btn--primary {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3); }
  50% { box-shadow: 0 8px 48px rgba(233, 30, 140, 0.55); }
}

@media (max-width: 640px) {
  .tickets__phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .tickets__phase { min-width: unset; padding: 10px 8px; }
  .tickets__phase-name { font-size: 0.6rem; }
}

/* ═══════════════ TICKETS TEASER ═══════════════ */
.tickets-teaser {
  background: var(--bg);
  padding: clamp(48px, 7vw, 96px) 0;
}

.tickets-teaser__header {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.tickets-teaser__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 229, 195, 0.4);
  border-radius: 4px;
}

.tickets-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--white);
}

.tickets-teaser__text {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}
.tickets-teaser__text strong { color: var(--white); font-weight: 600; }

/* Phasen-Stream */
.tickets-teaser__phases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 36px;
}

/* Ein einzelner Phasen-Störer */
.phase-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid rgba(245,240,240,0.1);
  background: var(--surface);
  min-width: 108px;
  transition: all 0.3s var(--ease-out);
}

.phase-chip__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gray-300);
}

.phase-chip__tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* SOLD OUT: durchgestrichen, gedimmt */
.phase-chip--sold {
  opacity: 0.6;
}
.phase-chip--sold .phase-chip__name {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--magenta);
  color: var(--gray-500);
}
.phase-chip--sold .phase-chip__tag {
  color: var(--magenta);
  font-weight: 800;
}

/* AKTIV: hervorgehoben, pulsiert leicht */
.phase-chip--active {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.18), rgba(0, 229, 195, 0.08));
  border-color: var(--magenta);
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(233,30,140,0.3), 0 8px 32px rgba(233,30,140,0.25);
  animation: phasePulse 2.5s ease-in-out infinite;
}
.phase-chip--active .phase-chip__name {
  color: var(--white);
  font-weight: 600;
}
.phase-chip--active .phase-chip__tag {
  color: var(--magenta);
}

@keyframes phasePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(233,30,140,0.3), 0 8px 32px rgba(233,30,140,0.25); }
  50%      { box-shadow: 0 0 0 1px rgba(233,30,140,0.5), 0 8px 48px rgba(233,30,140,0.45); }
}

/* UPCOMING: dezent, aber sichtbar als nächste Phase */
.phase-chip--upcoming {
  border-style: dashed;
  border-color: rgba(245,240,240,0.2);
}
.phase-chip--upcoming .phase-chip__tag {
  color: var(--cyan);
}

/* Haupt-CTA */
.tickets-teaser__cta {
  text-align: center;
}
.tickets-teaser__cta .btn {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 768px) {
  .tickets-teaser__phases {
    gap: 6px;
  }
  .phase-chip {
    min-width: 0;
    flex: 1 1 calc(33.33% - 6px);
    padding: 8px 6px;
  }
  .phase-chip__name {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .phase-chip__tag {
    font-size: 0.52rem;
  }
  .phase-chip--active {
    transform: scale(1.04);
  }
  .tickets-teaser__cta .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

/* ═══════════════ VIP (nicht mehr auf Startseite, bleibt fuer business.html) ═══════════════ */
.vip { background: var(--bg); }

.vip__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.vip__features { display: flex; flex-direction: column; gap: 20px; }

.vip__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid rgba(245,240,240,0.04);
  transition: border-color 0.3s;
}
.vip__feature:hover { border-color: rgba(233, 30, 140, 0.2); }
.vip__feature svg { flex-shrink: 0; margin-top: 2px; }
.vip__feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.vip__feature p { font-size: 0.85rem; color: var(--gray-300); line-height: 1.5; }

.vip__cta-card {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(0, 229, 195, 0.06));
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.vip__cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.vip__cta-card p {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .vip__grid { grid-template-columns: 1fr; }
  .vip__cta-card { position: static; }
}

/* ═══════════════ CAMPING ═══════════════ */
.camping { background: var(--surface); }

.camping__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.camping__card {
  background: rgba(245,240,240,0.02);
  border: 1px solid rgba(245,240,240,0.06);
  border-radius: 6px;
  padding: 32px 24px;
  transition: all 0.4s var(--ease-out);
}
.camping__card:hover {
  border-color: rgba(0, 229, 195, 0.25);
  transform: translateY(-4px);
}

.camping__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 6px;
  background: rgba(0, 229, 195, 0.06);
  color: var(--cyan);
}

.camping__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.camping__card-text {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.65;
  margin-bottom: 16px;
}

.camping__card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.camping__card-features li {
  font-size: 0.8rem;
  color: var(--gray-300);
  padding-left: 16px;
  position: relative;
}
.camping__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.camping__more {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 640px) { .camping__grid { grid-template-columns: 1fr; } }

/* ═══════════════ ANREISE ═══════════════ */
.anreise { background: var(--bg); }

.anreise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.anreise__card {
  background: var(--surface);
  border: 1px solid rgba(245,240,240,0.04);
  border-radius: 6px;
  padding: 28px 24px;
  /* Desktop (3 Spalten): Icon oben links, Text darunter */
  display: block;
}

/* Tablet (541–960px, 2 Spalten): Icon LINKS, Text RECHTS */
@media (max-width: 960px) and (min-width: 541px) {
  .anreise__grid { grid-template-columns: repeat(2, 1fr); }
  .anreise__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
  }
  .anreise__card-icon { margin-bottom: 0; margin-top: 2px; }
  .anreise__card-body { flex: 1; }
}
.anreise__card--note {
  background: linear-gradient(135deg, rgba(233,30,140,0.06), rgba(0,229,195,0.04));
  border-color: rgba(233,30,140,0.2);
}

.anreise__card-body { min-width: 0; }

.anreise__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 229, 195, 0.08);
  color: var(--cyan);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.anreise__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.anreise__card-text {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.65;
}
.anreise__card-text strong { color: var(--white); }

.anreise__shuttle-routes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.anreise__route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 10px 12px;
  background: rgba(0, 229, 195, 0.04);
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 195, 0.1);
}
.anreise__route-from, .anreise__route-to { color: var(--white); font-weight: 500; }
.anreise__route-arrow { color: var(--cyan); font-weight: 700; }

.anreise__address {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-700);
}
.anreise__address strong { color: var(--white); }

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

/* ═══════════════ SPOTIFY ═══════════════ */
.spotify-section { background: var(--surface); }

.spotify-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.spotify-section__text .section__title {
  text-align: left;
  margin-bottom: 16px;
}
.spotify-section__text .section__tag { display: block; text-align: left; }
.spotify-section__text .section__sub { text-align: left; margin: 0; }

.spotify-section__socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.spotify-section__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(245,240,240,0.1);
  transition: all 0.3s;
}
.spotify-section__social-link:hover {
  border-color: var(--cyan);
  color: var(--white);
}

.spotify-section__embed {
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .spotify-section__layout { grid-template-columns: 1fr; }
  .spotify-section__text .section__title,
  .spotify-section__text .section__tag,
  .spotify-section__text .section__sub { text-align: center; }
  .spotify-section__text .section__sub { margin: 0 auto; }
  .spotify-section__socials { justify-content: center; }
}

/* ═══════════════ PARTNERS ═══════════════ */
/* Sponsoren-Section: heller, neutral-grauer Bereich mit Fade-Übergängen
   oben (von dunkel zu hell) und unten (von hell zurück zu dunkel) */
.partners {
  background:
    linear-gradient(to bottom,
      var(--bg) 0,
      #e2e2e0 80px,
      #e2e2e0 calc(100% - 80px),
      var(--bg) 100%);
  color: #1a1a1a;
}
.partners .section__tag {
  color: var(--magenta);
  background: rgba(233, 30, 140, 0.10);
}
.partners .section__title { color: #1a1a1a; }
.partners__tier-title { color: #555; }
.partners__cta-text { color: #555; }
.partners__contact-link { color: var(--magenta); }
.partners__contact-link:hover { color: #1a1a1a; }
/* Coming-Soon-Slot auf hellem Hintergrund: dunkler Border statt heller */
.partners .partners__logo-slot--coming {
  background: rgba(0,0,0,0.04);
  border: 1px dashed rgba(0,0,0,0.18);
}
.partners .partners__placeholder { color: #888; }

.partners__tier { margin-bottom: 48px; }
.partners__tier:last-of-type { margin-bottom: 36px; }

.partners__tier-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  text-align: center;
  margin-bottom: 20px;
}

.partners__logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Logo-Slot: weißer Hintergrund (wie Bandenwerbung) — Logos sind in
   Originalfarbe sofort lesbar, ohne Hover-Abhängigkeit. Mobile-first.
   Padding klein gehalten, damit das Logo den Slot wirklich ausfüllt. */
.partners__logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 18px;
  min-height: 90px;
  min-width: 180px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
/* Hover (Desktop): leichtes Anheben + cyan Glow. Auf Touch: kein State. */
@media (hover: hover) {
  .partners__logo-slot:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 229, 195, 0.25);
  }
}

.partners__logos--main .partners__logo-slot {
  min-width: 200px;
  min-height: 95px;
  padding: 14px 20px;
}

.partners__logo-slot--sm {
  min-width: 140px;
  padding: 12px 16px;
  min-height: 80px;
}
.partners__logo-slot--xs {
  min-width: 110px;
  padding: 10px 14px;
  min-height: 64px;
}

/* Premium-Tier: zentriert. Aktuell nur 1 Sponsor — passt sich an,
   solange weitere kommen (skaliert dann automatisch nebeneinander). */
.partners__logos--premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.partners__logos--premium .partners__logo-slot {
  flex: 0 1 240px;
}

/* Sponsoren-Tier: 4er-Reihen */
.partners__logos--sponsors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.partners__logos--sponsors .partners__logo-slot { width: 100%; min-width: 0; }

/* Unterstützer-Tier: 6er-Reihen */
.partners__logos--supporters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.partners__logos--supporters .partners__logo-slot { width: 100%; min-width: 0; }

/* Logo-Bilder: nehmen den verfügbaren Slot-Platz wirklich ein.
   width:100% + height:100% + object-fit:contain → Logo skaliert
   maximal in beide Richtungen, ohne Verzerrung. */
.partners__logo-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Coming-Soon-Slot: dunkler Hintergrund, dezenter gedacht */
.partners__logo-slot--coming {
  background: var(--surface);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
@media (hover: hover) {
  .partners__logo-slot--coming:hover {
    transform: none;
    box-shadow: none;
  }
}

.partners__placeholder {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
}

.partners__cta-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.partners__contact-link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partners__contact-link:hover { color: var(--white); }

/* ═══════════════ FAQ ═══════════════ */
.faq { background: var(--surface); }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq__category-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-700);
}

.faq__item {
  border-bottom: 1px solid rgba(245,240,240,0.04);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--cyan); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--gray-500);
}
.faq__item--open .faq__chevron { transform: rotate(180deg); color: var(--magenta); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 14px;
}
.faq__answer p {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.7;
}
.faq__answer a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

.faq__contact {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-700);
}

.faq__contact-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.faq__contact-text {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 24px;
}
.faq__contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--black);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(245,240,240,0.04);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo { height: 36px; width: auto; margin-bottom: 12px; }
.footer__tagline { font-size: 0.78rem; color: var(--gray-500); letter-spacing: 0.06em; margin-bottom: 16px; }

.footer__socials { display: flex; gap: 16px; }
.footer__socials a { color: var(--gray-500); transition: color 0.3s; }
.footer__socials a:hover { color: var(--white); }

.footer__links { display: flex; gap: 56px; }

.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: var(--white);
}
.footer__link { font-size: 0.82rem; color: var(--gray-500); transition: color 0.3s; }
.footer__link:hover { color: var(--cyan); }

.footer__bottom {
  border-top: 1px solid rgba(245,240,240,0.04);
  padding-top: 24px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
}
.footer__powered {
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  opacity: 0.75;
}
.footer__powered a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__powered a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__links { gap: 32px; flex-wrap: wrap; }
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ SCROLLBAR ═══════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

::selection { background: var(--magenta); color: var(--white); }

/* ═══════════════ DESKTOP PREMIUM (1200px+) ═══════════════ */
@media (min-width: 1200px) {
  :root { --gutter: 40px; }
  .hero__title { font-size: 11rem; }
  .lineup__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .lineup__headliners { gap: 24px; }
  .experience__grid { gap: 24px; }
  .experience__card { padding: 40px 32px; }
  .timetable__stages { max-width: 1000px; gap: 48px; }
  .faq__grid { gap: 48px; }
}

/* ═══════════════════════════════════════════════════
   MOBILE PREMIUM LAYER
   Gezielte Optimierung fuer Mobile – flüssig, performant,
   Touch-optimiert. Greift AB 768px und darunter.
   ═══════════════════════════════════════════════════ */

/* Performance: GPU-Accel fuer alle bewegten Elemente */
.marquee__track,
.text-marquee__track,
.hero__bg-img,
.countdown__number,
.lineup__img,
.hero__scroll-line {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Prefers-reduced-motion: alle Animationen aus */
@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;
  }
  .hero__bg-img { transform: none !important; }
  .marquee__track, .text-marquee__track { animation: none !important; }
}

/* Touch-Targets min 44x44px (WCAG / Apple HIG) */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }
  .nav__link,
  .mobile-menu__link,
  .faq__question,
  .timetable__tab {
    min-height: 44px;
  }
  .footer__link,
  .footer__socials a,
  .mobile-menu__socials a {
    padding: 4px 0;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  /* Hover-States deaktivieren auf Touch (keine Sticky-Hovers) */
  .lineup__artist:hover { transform: none; box-shadow: none; }
  .lineup__artist:hover .lineup__img { transform: none; }
  .experience__card:hover { transform: none; background: rgba(245,240,240,0.03); border-color: rgba(245,240,240,0.06); }
  .camping__card:hover { transform: none; border-color: rgba(245,240,240,0.06); }
  .btn--primary:hover { transform: none; }

  /* Stattdessen: Active-State fuer Touch */
  .lineup__artist:active { transform: scale(0.98); transition: transform 0.15s; }
  .btn:active { transform: scale(0.97); transition: transform 0.1s; }
  .experience__card:active,
  .camping__card:active,
  .vip__feature:active,
  .anreise__card:active { transform: scale(0.99); transition: transform 0.15s; }
}

/* ━━━ TABLET / MOBILE GENERAL (≤768px) ━━━ */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --gutter: 18px;
    --section-pad: clamp(64px, 12vw, 100px);
  }

  /* Section-Header weniger massiv */
  .section__header { margin-bottom: 36px; }
  .section__title { line-height: 0.95; letter-spacing: 0.01em; }
  .section__tag { letter-spacing: 0.2em; font-size: 0.65rem; }

  /* Hero Mobile: Content-Block rutscht weiter nach oben, so dass
     Badge direkt unter dem Jubiläums-Sticker sitzt (konsistentes Spacing
     zwischen Nav → Sticker → Badge → Logo). */
  .hero__content {
    padding-top: calc(var(--nav-height) + 14vh);
    padding-bottom: clamp(40px, 8vh, 80px);
  }
  .hero__badge {
    margin-bottom: 22px;
    font-size: 0.82rem; /* Trotzdem dominant auf Mobile */
    padding: 7px 18px;
  }
  .hero__logo {
    max-width: 280px;
    width: 70vw;
    margin-bottom: 6px;
  }
  .hero__subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    margin-bottom: 20px;
  }
  .hero__date { margin-bottom: 6px; }
  .hero__location { margin-bottom: 28px; font-size: 0.78rem; }
  .hero__actions { gap: 10px; width: 100%; padding: 0 8px; }
  .hero__actions .btn { flex: 1; justify-content: center; padding: 14px 20px; }

  /* Countdown: kompakter, passt in eine Zeile */
  .hero__countdown {
    gap: 4px;
    margin-bottom: 36px;
  }
  .countdown__item {
    padding: 8px 6px 6px;
    min-width: 54px;
  }
  .countdown__number {
    font-size: 1.6rem;
  }
  .countdown__label {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }
  .countdown__sep {
    font-size: 1.2rem;
    padding-top: 8px;
  }

  /* Nav Logo: auch auf Mobile dominant, aber passend */
  .nav__logo-img { height: 44px; }

  /* Mobile Menu: kompaktere, professionellere Links */
  .mobile-menu__link { font-size: 1.6rem; padding: 6px 16px; }
  .mobile-menu__socials { gap: 20px; margin-top: 32px; }

  /* Text-Marquee kompakter */
  .text-marquee { padding: 14px 0; }
  .text-marquee__item { font-size: 1.3rem; padding: 0 16px; }

  /* Foto-Marquee */
  .marquee__img { height: 140px; border-radius: 3px; }

  /* Lineup: tightere Grids */
  .lineup__headliners {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
  }
  .lineup__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .lineup__info { padding: 8px 10px; }
  .lineup__name { font-size: 0.72rem; }
  .lineup__artist--xl .lineup__name { font-size: 0.8rem; }
  .lineup__genre { font-size: 0.58rem; }
  .lineup__note { margin-top: 24px; font-size: 0.78rem; }

  /* Experience Mobile: Icon + Titel in einer Zeile, Text darunter voll breit.
     Kompakt, modern, cleaner – via CSS Grid mit display:contents (sauber). */
  .experience__grid { grid-template-columns: 1fr; gap: 10px; }
  .experience__card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
    padding: 18px;
    text-align: left;
  }
  /* Card-Body durchreichen, damit Titel & Text im Grid der Card landen */
  .experience__card-body { display: contents; }
  .experience__icon {
    grid-row: 1; grid-column: 1;
    width: 36px; height: 36px;
    margin: 0;
  }
  .experience__icon svg { width: 20px; height: 20px; }
  .experience__card-title {
    grid-row: 1; grid-column: 2;
    font-size: 1.1rem;
    margin: 0;
  }
  .experience__card-text {
    grid-row: 2; grid-column: 1 / -1;
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
  }

  /* Aftermovie: Phone-Frame in der Mitte, Stats drunter */
  .video-section__phone-frame { width: 220px; padding: 10px; border-radius: 28px; }
  .video-section__phone-notch { width: 80px; }
  .video-section__iframe { border-radius: 18px; }
  .video-section__stats { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
  .video-section__stat-number { font-size: 1.8rem; }
  .video-section__stat-label { font-size: 0.6rem; letter-spacing: 0.1em; }
  .video-section__text { font-size: 0.88rem; margin-bottom: 20px; }

  /* Timetable: full-width, compact slots */
  .timetable__tabs { gap: 6px; margin-bottom: 32px; }
  .timetable__tab { padding: 10px 20px; flex: 1; max-width: 180px; }
  .timetable__tab-day { font-size: 1.1rem; }
  .timetable__tab-date { font-size: 0.68rem; }
  .timetable__slot { padding: 10px 12px; gap: 12px; }
  .timetable__time { font-size: 0.95rem; min-width: 46px; }
  .timetable__artist-name { font-size: 0.82rem; }
  .timetable__stage-name { font-size: 1.2rem; margin-bottom: 12px; }

  /* Tickets: 2-spaltig Phasen auf Mobile */
  .tickets__phases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .tickets__phase {
    min-width: 0;
    padding: 12px 10px;
    min-height: 60px;
  }
  .tickets__phase-name { font-size: 0.68rem; }
  .tickets__phase-status { font-size: 0.55rem; }
  .tickets__phase-badge { font-size: 0.56rem; padding: 2px 8px; }
  .tickets__hint { font-size: 0.78rem; margin-bottom: 28px; padding: 0 8px; text-align: center; }
  .tickets__cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* VIP */
  .vip__feature { padding: 16px; gap: 12px; }
  .vip__feature h4 { font-size: 0.88rem; }
  .vip__feature p { font-size: 0.78rem; }
  .vip__cta-card { padding: 28px 22px; }
  .vip__cta-card h3 { font-size: 1.5rem; }
  .vip__cta-card .btn { width: 100%; justify-content: center; }

  /* Camping Mobile: Icon + Titel in einer Zeile, Beschreibung + Liste darunter */
  .camping__card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
    padding: 20px;
    text-align: left;
  }
  .camping__card-icon {
    grid-row: 1; grid-column: 1;
    width: 40px; height: 40px;
    margin: 0;
  }
  .camping__card-icon svg { width: 22px; height: 22px; }
  .camping__card-title {
    grid-row: 1; grid-column: 2;
    font-size: 1.2rem;
    margin: 0;
  }
  .camping__card-text {
    grid-row: 2; grid-column: 1 / -1;
    font-size: 0.85rem;
    margin: 0;
  }
  .camping__card-features {
    grid-row: 3; grid-column: 1 / -1;
    margin: 0;
  }
  .camping__more .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Anreise Mobile: Icon + Titel in einer Zeile, Text darunter voll breit */
  .anreise__grid { grid-template-columns: 1fr; gap: 10px; }
  .anreise__card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
    padding: 18px;
  }
  .anreise__card-body { display: contents; }
  .anreise__card-icon {
    grid-row: 1; grid-column: 1;
    width: 36px; height: 36px;
    margin: 0;
  }
  .anreise__card-icon svg { width: 20px; height: 20px; }
  .anreise__card-title {
    grid-row: 1; grid-column: 2;
    font-size: 1.1rem;
    margin: 0;
  }
  .anreise__card-text {
    grid-row: 2; grid-column: 1 / -1;
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
  }
  .anreise__shuttle-routes { grid-row: 2; grid-column: 1 / -1; }
  .anreise__address { grid-column: 1 / -1; font-size: 0.78rem; }
  .anreise__route { font-size: 0.75rem; padding: 8px 10px; flex-wrap: wrap; }

  /* Spotify Mobile: deutlich kompakter, weniger "gequetscht" */
  .spotify-section { padding: 56px 0; }
  .spotify-section__layout { gap: 20px; }
  .spotify-section__text .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: 8px; }
  .spotify-section__text .section__sub { font-size: 0.85rem; }
  .spotify-section__socials { gap: 8px; margin-top: 16px; }
  .spotify-section__social-link { font-size: 0.72rem; padding: 6px 10px; }
  .spotify-section__embed { max-width: 100%; }
  .spotify-section__embed iframe { height: 152px !important; }

  /* Partner */
  .partners__tier { margin-bottom: 36px; }
  .partners__tier-title { font-size: 0.95rem; letter-spacing: 0.1em; }
  .partners__logo-slot { padding: 12px 16px; min-width: 0; min-height: 72px; }
  .partners__logos--main .partners__logo-slot { min-width: 162px; min-height: 72px; padding: 11px 14px; }
  .partners__logo-slot--sm { min-width: 0; min-height: 64px; padding: 10px 12px; }
  .partners__logo-slot--xs { min-width: 0; min-height: 54px; padding: 8px 10px; }
  .partners__logos--premium { gap: 10px; }
  .partners__logos--premium .partners__logo-slot { flex: 0 1 calc(50% - 5px); }
  .partners__logos--sponsors { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .partners__logos--supporters { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* FAQ */
  .faq__category-title { font-size: 1rem; }
  .faq__question { font-size: 0.82rem; padding: 12px 0; gap: 10px; }
  .faq__answer p { font-size: 0.8rem; }
  .faq__contact { margin-top: 48px; padding-top: 36px; }
  .faq__contact-title { font-size: 1.5rem; }
  .faq__contact-actions .btn { flex: 1; min-width: 140px; max-width: 240px; justify-content: center; }

  /* Footer Mobile */
  .footer { padding: 48px 0 100px; } /* extra bottom-space für Sticky-Bar */
  .footer__top { gap: 28px; margin-bottom: 32px; }
  .footer__links { gap: 24px 32px; }
  .footer__col-title { font-size: 0.85rem; }
  .footer__link { font-size: 0.78rem; }
}

/* ━━━ KLEINE SMARTPHONES (≤480px) ━━━ */
@media (max-width: 480px) {
  .section__title { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* Lineup: bleibt 3-spaltig auch auf kleinen Screens (einheitlich) */
  .lineup__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .lineup__headliners { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* Hero Logo noch etwas kompakter */
  .hero__logo { max-width: 240px; width: 72vw; }
  .hero__subtitle { font-size: 0.72rem; letter-spacing: 0.3em; }

  /* Countdown noch kompakter */
  .countdown__item { min-width: 48px; padding: 7px 4px 5px; }
  .countdown__number { font-size: 1.4rem; }
  .countdown__label { font-size: 0.5rem; }
  .countdown__sep { font-size: 1rem; padding-top: 6px; }

  /* CTAs stacken bei sehr kleinen Screens */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ━━━ SEHR KLEINE SCREENS (≤360px) ━━━ */
@media (max-width: 360px) {
  :root { --gutter: 14px; }
  .hero__logo { max-width: 220px; }
  .countdown__item { min-width: 42px; }
  .countdown__number { font-size: 1.25rem; }
  .nav__logo-img { height: 40px; }
}

/* ═══════════════ STICKY MOBILE CTA BAR ═══════════════ */
/* Konversions-Standard bei Festival-Sites (Ikarus-Style):
   Bleibt am unteren Rand beim Scrollen, immer klickbar. */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(245,240,240,0.08);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta--visible { transform: translateY(0); }

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta__info {
  flex: 1;
  min-width: 0;
}

.sticky-cta__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}

.sticky-cta__text {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__btn {
  background: var(--magenta);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.sticky-cta__btn:active { background: var(--magenta-light); }

@media (max-width: 768px) {
  .sticky-cta { display: block; }
}

/* ═══════════════ PERFORMANCE: content-visibility ═══════════════ */
/* Lazy-rendern fuer Off-Screen-Sections – riesiger Mobile-Boost */
@media (max-width: 768px) {
  .partners,
  .faq,
  .spotify-section,
  .anreise,
  .camping,
  .vip {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }
}

/* ═══════════════ COOKIE CONSENT BANNER ═══════════════ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245, 240, 240, 0.1);
  border-radius: 6px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 780px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s;
}

.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cookie-banner__text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 0.78rem;
  color: var(--gray-300);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  min-height: 44px;
  border: none;
  font-family: inherit;
}

.cookie-banner__btn--primary {
  background: var(--magenta);
  color: var(--white);
}
.cookie-banner__btn--primary:hover,
.cookie-banner__btn--primary:active {
  background: var(--magenta-light);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
}
.cookie-banner__btn--secondary:hover,
.cookie-banner__btn--secondary:active {
  color: var(--white);
  border-color: var(--gray-500);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px 18px;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-banner__btn {
    padding: 12px 10px;
    font-size: 0.72rem;
  }
  /* Wenn Sticky-CTA aktiv ist, Cookie-Banner darüber platzieren */
  .sticky-cta--visible ~ .cookie-banner--visible,
  .cookie-banner--visible {
    bottom: 88px;
  }
}

/* Cookie-Banner hat Priorität über Sticky-CTA — blendet Sticky temporär aus */
.cookie-banner--visible ~ .sticky-cta { opacity: 0.4; pointer-events: none; }
