/* ==========================================================================
   Bullendorfer DJ Night — Marken-Look (justEVENTS / DJ Night)
   Blau → Pink → Violett Verlauf, Orange als warmer CTA-Akzent,
   Poster-Typografie, glühender Countdown, Halbton-Motiv
   ========================================================================== */

:root {
  /* Zwei-Farb-Marke wie Banner/Flyer: Blau ↔ Magenta, plus Violett.
     Ruhig eingesetzt — die Fotos tragen die Farbigkeit. */
  --accent: #ff3d7f;          /* Magenta-Rosé (warmer Pol) */
  --accent-soft: #ff6fa0;
  --blue: #2f74e6;            /* Marken-Blau (kühler Pol) */
  --blue-soft: #57a0ff;
  --purple: #7a3ba6;

  --ink: #0e0a16;             /* tiefes Violett-Schwarz, fast neutral */
  --ink-2: #14101f;
  --line: rgba(244, 238, 247, 0.14);
  --cream: #f4eef7;
  --cream-dim: rgba(244, 238, 247, 0.58);

  /* Kompatibilität mit bestehenden Namen */
  --night: var(--ink);
  --night-2: var(--ink-2);
  --wine: #241028;
  --sunset: var(--accent);
  --amber: var(--accent);
  --gold: var(--cream);
  --pink: var(--accent);

  /* Blau → Magenta Verlauf (zwei Marken-Pole, kein Regenbogen) */
  --brand-grad: linear-gradient(100deg, var(--blue-soft) 0%, var(--accent) 62%, var(--purple) 100%);
  --cta-grad: var(--accent);
  /* Halbton-Punkte wie auf Banner/Plakat (helle Punkte auf Verlauf) */
  --dots: radial-gradient(rgba(255, 255, 255, 0.16) 1.4px, transparent 1.7px);
  --dots-size: 11px 11px;

  --ff-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --ff-accent: "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --edge: clamp(1.25rem, 5vw, 5rem);
  --glow: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--cream);
  background: var(--night);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

img, video, iframe { display: block; max-width: 100%; }

::selection { background: var(--sunset); color: var(--night); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Shared type elements ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue-soft);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--blue-soft);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 1.5rem;
}
.section-title--left { text-align: left; }

/* Event-Beschreibung */
.about { padding: clamp(3rem, 8vw, 6rem) var(--edge) clamp(0.5rem, 2vw, 1.5rem); }
.about__inner { max-width: 46rem; margin: 0 auto; }
.about__inner p {
  color: var(--cream-dim);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 0 1.2rem;
}
.about__inner p:last-child { margin-bottom: 0; }

/* Negativ-Headline: farbiger Block, Text ausgespart (dunkel) */
.headline-neg {
  text-align: center;
  margin: 0 0 1.6rem;
  line-height: 1.5;
}
.headline-neg span {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--accent);
  padding: 0.06em 0.4em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.headline-neg--blue span { background: var(--blue); color: #fff; }

.countdown__kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-soft);
  margin: 0 0 1.2rem;
}
.countdown__lead {
  max-width: 42rem;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: var(--cream-dim);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}
.countdown__lead .ss { color: #1f9cf0; }

/* Stimmungsservice-Wordmark — blau, fett, kursiv (Vorlage) */
.ss {
  font-family: var(--ff-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: #1f9cf0;
  text-shadow: 0 1px 1px rgba(3, 32, 66, 0.55);
  white-space: nowrap;
}
/* Kontext-Overrides gegen erbende Farb-/Style-Regeln */
.hero__sub .ss,
.facts__list .ss,
.partners__list .ss { color: #1f9cf0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform;
}
.btn--ticket {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 61, 127, 0.28);
}
.btn--ticket:hover { transform: translateY(-2px); background: var(--accent-soft); box-shadow: 0 14px 38px rgba(255, 61, 127, 0.4); }
.btn--blue {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(47, 116, 230, 0.3);
}
.btn--blue:hover { transform: translateY(-2px); background: var(--blue-soft); box-shadow: 0 14px 38px rgba(47, 116, 230, 0.42); }
.btn--ghost {
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(244, 238, 247, 0.3);
}
.btn--ghost:hover { background: rgba(255, 46, 151, 0.16); transform: translateY(-2px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem var(--edge);
  background: linear-gradient(to bottom, rgba(21, 10, 38, 0.85), rgba(21, 10, 38, 0));
  backdrop-filter: blur(2px);
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
.nav__brand img {
  height: clamp(1.6rem, 3.5vw, 2rem);
  width: auto;
  transition: opacity 0.2s ease;
}
.nav__brand:hover img { opacity: 0.85; }
.nav__links { display: flex; gap: 1.4rem; }
.nav__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--blue-soft); }
.nav__cta { padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem; height: 2.6rem;
  padding: 0 0.6rem;
  background: rgba(247, 236, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem var(--edge) 1.1rem;
    background: rgba(21, 10, 38, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav.open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--edge) 5rem;
  overflow: hidden;
}
/* Mobil: Textblock + Button etwas weiter nach unten */
@media (max-width: 620px) {
  .hero { justify-content: flex-end; padding-bottom: clamp(5rem, 15vh, 8rem); }
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Standbild + warmer Gradient als Fallback, falls das Video (noch) nicht läuft.
   Bild liegt oben; fehlt es, scheint der Gradient durch. */
.hero__media {
  background:
    url("../assets/img/hero.jpg") center/cover no-repeat,
    radial-gradient(120% 80% at 70% 10%, rgba(255, 46, 151, 0.45), transparent 55%),
    linear-gradient(160deg, #3a1170 0%, #1e0d33 60%, #0d0518 100%);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--night) 2%, rgba(21, 10, 38, 0.35) 45%, rgba(21, 10, 38, 0.55) 100%),
    radial-gradient(90% 60% at 50% 40%, transparent 40%, rgba(21, 10, 38, 0.5));
}
.hero__inner { position: relative; z-index: 2; max-width: 62rem; }
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0 0 1.4rem;
  font-size: clamp(3rem, 12vw, 9rem);
  letter-spacing: -0.03em;
  color: var(--cream);
}
.hero__title span { display: block; }
.hero__title-glow {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.1rem;
  margin: 0 0 1.6rem;
}
.hero__date time {
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.2vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--cream);
}
.hero__date-time {
  font-family: var(--ff-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  color: var(--accent);
}
.hero__sub {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--cream-dim);
  margin: 0 0 2rem;
}
.hero__sub strong { color: var(--cream); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__scroll {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } }

/* ==========================================================================
   COUNTDOWN  (Signature)
   ========================================================================== */
.countdown {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) var(--edge);
  text-align: center;
  background: var(--ink);
}
/* Halbton-Punkte hinter dem Countdown, Fade oben und unten */
.countdown::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--dots) 0 0 / var(--dots-size);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}
.countdown > * { position: relative; z-index: 1; }
.countdown__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.6rem, 2.5vw, 2rem);
  margin-top: 1.5rem;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(3.6rem, 15vw, 7rem); }
.cd-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1);
}
.cd-num.tick { transform: translateY(-3px); }
.cd-label {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.58rem, 1.4vw, 0.72rem);
  color: var(--cream-dim);
  margin-top: 0.7rem;
}
.cd-sep {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
}
.countdown__done {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--accent);
  margin-top: 1rem;
}

/* ==========================================================================
   FAKTEN — Ticket-Stub
   ========================================================================== */
.facts {
  padding: clamp(3rem, 8vw, 6rem) var(--edge);
  background: linear-gradient(180deg, var(--night), var(--night-2));
}
.facts__ticket {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.facts__stub {
  flex: 0 0 clamp(5rem, 16vw, 9rem);
  background: var(--blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  position: relative;
  border-right: 2px dashed rgba(255, 255, 255, 0.35);
}
.facts__stub-word {
  font-family: var(--ff-display);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.28em;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin: 0;
}
.facts__stub-year {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0.4rem 0 0;
}
.facts__body { padding: clamp(1.6rem, 4vw, 2.8rem); flex: 1; }
.facts__list { margin: 0; display: grid; gap: 0.1rem; }
.facts__list > div {
  display: grid;
  grid-template-columns: clamp(5rem, 16vw, 8rem) 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.facts__list dt {
  font-family: var(--ff-accent);
  font-weight: 600;
  color: var(--blue-soft);
}
.facts__list dd { margin: 0; color: var(--cream); }
.facts__note {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin: 1.2rem 0 0;
}
.facts__link {
  color: var(--blue-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(87, 160, 255, 0.5);
  overflow-wrap: anywhere;
}
.facts__link:hover { color: #7db4ff; }

/* Fakten-Ticket mobil: Stub wird zur horizontalen Kopfleiste, Zeilen gestapelt */
@media (max-width: 560px) {
  .facts__ticket { flex-direction: column; }
  .facts__stub {
    flex: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    border-right: none;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
  }
  .facts__stub-word {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.16em;
    font-size: 1.15rem;
  }
  .facts__stub-word:nth-of-type(1) { order: 2; }
  .facts__stub-word:nth-of-type(2) { order: 1; }
  .facts__stub-year { order: 3; margin: 0 0 0 auto; font-size: 1.15rem; }
  .facts__body { padding: 1.4rem 1.2rem; }
  .facts__list > div { grid-template-columns: 1fr; gap: 0.15rem; padding: 0.65rem 0; }
  .facts__list dt { font-size: 0.85rem; }
}

/* Gut zu wissen — Info-Karten */
.info {
  list-style: none;
  max-width: 64rem;
  margin: clamp(1.6rem, 4vw, 2.8rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.1rem;
}
.info__card {
  padding: clamp(2rem, 3.5vw, 2.8rem) 1.6rem;
  border-radius: 18px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.info__card:hover {
  transform: translateY(-5px);
  border-color: rgba(87, 160, 255, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}
.info__icon {
  font-size: 2.3rem;
  line-height: 1;
  width: 4.6rem; height: 4.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, rgba(47, 116, 230, 0.4), rgba(47, 116, 230, 0.1));
  border: 1px solid rgba(87, 160, 255, 0.4);
  margin-bottom: 1.3rem;
}
.info__card:hover .info__icon {
  border-color: rgba(87, 160, 255, 0.75);
  background: radial-gradient(circle at 50% 32%, rgba(47, 116, 230, 0.55), rgba(47, 116, 230, 0.16));
}
.info__card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
  color: var(--cream);
}
.info__card p { margin: 0; font-size: 0.92rem; color: var(--cream-dim); max-width: 18rem; }

/* ==========================================================================
   DOWNLOAD-CTA (Personenfürsorgeübertragung)
   ========================================================================== */
.download-cta {
  padding: clamp(3rem, 7vw, 4.5rem) var(--edge);
  background: var(--blue);
  text-align: center;
}
.download-cta__inner { max-width: 46rem; margin: 0 auto; }
.download-cta .eyebrow { color: rgba(255, 255, 255, 0.9); }
.download-cta .eyebrow::before { background: rgba(255, 255, 255, 0.7); }
.download-cta .section-title { color: #fff; margin-bottom: 0.8rem; }
.download-cta__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 auto 2rem;
  max-width: 34rem;
}
.download-cta__btn {
  background: #fff;
  color: var(--ink);
  padding: 1rem 2.2rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}
.download-cta__btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

/* ==========================================================================
   IMPRESSIONEN / GALERIE
   ========================================================================== */
.gallery {
  padding: clamp(4rem, 9vw, 7rem) var(--edge);
  text-align: center;
}
/* Auf ~5 Bildreihen gekürzt; Rest ausgeblendet mit weichem Fade */
.gallery__crop {
  max-width: 72rem;
  margin: 0 auto;
}
.gallery__grid {
  column-count: 3;
  column-gap: 0.9rem;
}
.g-tile {
  position: relative;
  margin: 0 0 0.9rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  break-inside: avoid;
}
.g-tile img {
  display: block;
  width: 100%; height: auto;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.g-tile:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .gallery__grid { column-count: 2; }
}
@media (max-width: 460px) {
  .gallery__grid { column-count: 1; }
}

/* Laufband-Variante (horizontaler Endlos-Durchlauf) */
.gallery-run {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.marquee {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  /* weiche Kanten links/rechts */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: marquee-run 55s linear infinite;
}
/* zweite Reihe läuft gegenläufig und etwas langsamer */
.marquee__track--rev {
  animation-direction: reverse;
  animation-duration: 72s;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  height: clamp(12rem, 25vw, 19rem);
  width: auto;
  flex: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
}
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

/* ==========================================================================
   VORVERKAUF
   ========================================================================== */
.vvk { padding: clamp(4rem, 9vw, 7rem) var(--edge); }
.vvk__inner {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.vvk__proof {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  position: relative;
}
.vvk__proof img { width: 100%; display: block; }
.vvk__proof figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.1rem 0.9rem;
  font-family: var(--ff-accent);
font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(15, 7, 26, 0.92), transparent);
}
.vvk__lead, .insta__lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.insta__lead { margin-inline: auto; }
.vvk__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.9rem;
}
@media (max-width: 780px) {
  .vvk__inner { grid-template-columns: 1fr; }
  .vvk__proof { max-width: 22rem; }
}
.vvk__grid li { list-style: none; }
.vvk__card {
  display: block;
  height: 100%;
  padding: 1.4rem 1.4rem;
  border-radius: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  text-align: left;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.vvk__card:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 160, 255, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.vvk__place {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.vvk__town {
  display: block;
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 0.35rem;
}
.vvk__web {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-soft);
}
.vvk__web::after {
  content: "\2197"; /* ↗ */
  font-size: 0.9em;
  transition: transform 0.18s ease;
}
.vvk__card { display: flex; flex-direction: column; }
.vvk__card:hover .vvk__place { color: var(--blue-soft); }
.vvk__card:hover .vvk__web::after { transform: translate(2px, -2px); }
.vvk__note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.insta {
  padding: clamp(4rem, 9vw, 7rem) var(--edge);
  text-align: center;
  background: linear-gradient(180deg, var(--night-2), var(--night));
}
.insta__grid {
  max-width: 62rem;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}
.insta__tile {
  aspect-ratio: 1;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.insta__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta__tile span {
  position: relative;
  z-index: 2;
  font-family: var(--ff-accent);
  font-weight: 600;
  color: var(--cream);
  font-size: 1.05rem;
}
.insta__tile::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 10, 38, 0.85));
}
.insta__tile:hover { transform: scale(1.03); box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5); }
.insta__tile:hover img { transform: scale(1.06); }
.insta__follow { margin-top: 0.5rem; }

/* ==========================================================================
   ANFAHRT / MAP
   ========================================================================== */
.map { position: relative; overflow: hidden; }
.map__frame {
  position: relative;
  width: 100%;
  height: clamp(460px, 74vh, 780px);
}
.map__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  /* Natürliche OSM-Farben, nur leicht entsättigt/abgestimmt */
  filter: saturate(0.92) contrast(1.02) brightness(0.98);
}
/* Blockt versehentliches Scroll-Zoom / Verschieben der Karte */
.map__shield {
  position: absolute; inset: 0;
  z-index: 1;
}
.map__card {
  position: absolute;
  z-index: 3;
  left: var(--edge);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  width: min(30rem, calc(100% - var(--edge) * 2));
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(160deg, rgba(30, 13, 51, 0.92), rgba(21, 10, 38, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
/* Cleanere Schrift in der Karten-Card (Inter statt Bricolage) */
.map__card .section-title {
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.map__address {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 1.2rem;
  color: var(--cream);
}
.map__hint {
  color: var(--cream-dim);
  margin: 0 0 1.6rem;
}
.map__card .btn { width: 100%; }
@media (max-width: 620px) {
  .map__frame { height: 60vh; }
  .map__card {
    position: static;
    width: auto;
    margin: -2.5rem var(--edge) 0;
  }
}

/* --- Instagram: Consent-Gate + Live-Feed --- */
.insta__embed {
  position: relative;
  max-width: 62rem;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 20rem;
}
.insta__embed .insta__grid { margin: 0; }
.insta__embed figure.insta__tile { margin: 0; align-items: stretch; }
.insta__backdrop { transition: filter 0.4s ease, transform 0.4s ease; }
.insta__embed:not(.is-loaded) .insta__backdrop {
  filter: blur(9px) saturate(0.7) brightness(0.5);
  transform: scale(1.04);
}
.insta__embed.is-loaded.has-feed .insta__backdrop { display: none; }
.insta__stage:empty { display: none; }
.insta__stage { padding: clamp(0.6rem, 2vw, 1rem); }
.insta__consent {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.9rem; text-align: center; padding: 2rem 1.4rem;
  background: radial-gradient(120% 100% at 50% 0%, rgba(21, 10, 38, 0.55), rgba(14, 10, 22, 0.88));
}
.insta__embed.is-loaded .insta__consent { display: none; }
.insta__ig-badge {
  width: 3.2rem; height: 3.2rem;
  display: grid; place-items: center;
  border-radius: 16px; color: #fff;
  background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 72%, #4f5bd5);
  box-shadow: 0 12px 30px rgba(214, 41, 118, 0.35);
}
.insta__consent-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.3rem; margin: 0; color: var(--cream);
}
.insta__consent-text { max-width: 32rem; margin: 0; font-size: 0.9rem; color: var(--cream-dim); }
.insta__consent-text a { color: var(--accent); }
.insta__consent-remember {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--cream-dim); cursor: pointer;
}
.insta__consent-remember input { accent-color: var(--accent); }

/* ==========================================================================
   LAGEPLAN — gezeichneter Geländeplan (Inline-SVG)
   ========================================================================== */
.plan {
  padding: clamp(4rem, 9vw, 7rem) var(--edge);
  text-align: center;
  background: linear-gradient(180deg, var(--night), var(--night-2));
}
.plan__lead {
  max-width: 42rem;
  margin: 0 auto 2.6rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.plan__board {
  max-width: 100rem;
  margin: 0 auto;
  padding: clamp(0.8rem, 2.5vw, 1.6rem);
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255, 61, 127, 0.08), transparent 60%),
    var(--ink-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.plan__svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* --- SVG-Bausteine --- */
.pl-field { fill: url(#pl-field-grad); }
.pl-park { fill: rgba(244, 238, 247, 0.045); stroke: rgba(244, 238, 247, 0.14); stroke-width: 1.5; }
.pl-fence { fill: none; stroke: var(--cream-dim); stroke-width: 2.5; stroke-dasharray: 1.5 9; stroke-linecap: round; }
.pl-road { fill: none; stroke: #2a2440; stroke-width: 42; stroke-linecap: round; stroke-linejoin: round; }
.pl-road-line { fill: none; stroke: rgba(244, 238, 247, 0.28); stroke-width: 2.5; stroke-dasharray: 12 16; stroke-linecap: round; }
.pl-foot { fill: none; stroke: rgba(244, 238, 247, 0.4); stroke-width: 2.5; stroke-dasharray: 0.5 8; stroke-linecap: round; }
.pl-tree { fill: #234b3f; }
.pl-tree-hi { fill: #2d5e4f; }
.pl-tree-trunk { stroke: #1a2b26; stroke-width: 2.5; stroke-linecap: round; }

.pl-tile { fill: rgba(244, 238, 247, 0.06); stroke: rgba(244, 238, 247, 0.24); stroke-width: 1.5; }
.pl-ico { color: var(--cream); stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.pl-glyph { fill: var(--cream); font-family: var(--ff-display); font-weight: 700; }

.poi--key .pl-tile { fill: var(--accent); stroke: var(--accent); }
.poi--key .pl-ico { color: #fff; }
.poi--key .pl-glyph { fill: #fff; }

.poi--stage .pl-tile { fill: var(--accent); stroke: var(--accent-soft); filter: url(#pl-glow); }
.poi--stage .pl-ico { color: #fff; stroke-width: 2.2; }

.pl-label { font-family: var(--ff-body); font-weight: 600; font-size: 16.5px; letter-spacing: 0.09em; text-transform: uppercase; fill: var(--cream); }
.pl-label--sub { font-size: 12.5px; letter-spacing: 0.06em; fill: var(--cream-dim); text-transform: none; }
.pl-label--big { font-family: var(--ff-display); font-weight: 700; font-size: 20px; letter-spacing: 0.04em; }
.pl-zonetag { font-family: var(--ff-body); font-weight: 600; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; fill: var(--cream-dim); }
.pl-watermark { font-family: var(--ff-display); font-weight: 800; font-size: 40px; letter-spacing: 0.06em; fill: rgba(244, 238, 247, 0.035); text-transform: uppercase; }
.pl-compass { fill: none; stroke: var(--cream-dim); stroke-width: 1.5; }
.pl-compass-n { fill: var(--cream-dim); font-family: var(--ff-body); font-weight: 700; font-size: 13px; }
.pl-compass-arrow { fill: var(--accent); }
.pl-tent { fill: rgba(255, 61, 127, 0.07); stroke: var(--accent); stroke-width: 2; }
.pl-tent-roof { fill: rgba(255, 61, 127, 0.05); stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; }
.pl-tent-label { font-family: var(--ff-display); font-weight: 800; font-size: 22px; letter-spacing: 0.16em; fill: var(--accent); text-transform: uppercase; }

@media (prefers-reduced-motion: no-preference) {
  .poi--stage .pl-tile { animation: pl-pulse 3.2s ease-in-out infinite; }
}
@keyframes pl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.78; } }

/* --- Legende --- */
.plan__legend {
  max-width: 78rem;
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
  text-align: left;
}
.pl-leg-group {
  padding: 1.3rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(244, 238, 247, 0.025);
}
.pl-leg-group h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 1rem;
}
.pl-leg-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0;
}
.pl-leg-item + .pl-leg-item { border-top: 1px solid rgba(244, 238, 247, 0.07); }
.pl-chip {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(244, 238, 247, 0.06);
  border: 1px solid rgba(244, 238, 247, 0.2);
}
.pl-chip svg { width: 1.35rem; height: 1.35rem; }
.pl-chip--key { background: var(--accent); border-color: var(--accent); }
.pl-chip--key .pl-ico { color: #fff; }
.pl-chip--key .pl-glyph { fill: #fff; }
.pl-chip .pl-glyph { font-size: 15px; }
.pl-leg-text b {
  display: block;
  font-family: var(--ff-accent);
  font-weight: 600;
  color: var(--cream);
  font-size: 0.98rem;
}
.pl-leg-text span { font-size: 0.83rem; color: var(--cream-dim); }

@media (max-width: 760px) {
  .plan__board { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .plan__svg { min-width: 680px; }
}

/* ==========================================================================
   PARTNER
   ========================================================================== */
.partners {
  padding: clamp(3rem, 6vw, 4.5rem) var(--edge) clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
  background: var(--night);
}
.partners__label {
  font-family: var(--ff-accent);
  color: var(--cream-dim);
  margin: 0 0 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.partners__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 3.5rem);
}
.partners__list li {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}
.partners__list li:hover { color: var(--gold); }
.partners__logo {
  display: flex;
  align-items: center;
}
.partners__logo a { display: block; line-height: 0; }
.partners__logo img {
  height: clamp(2rem, 4.5vw, 3rem);
  width: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.partners__logo a:hover img { opacity: 0.85; transform: translateY(-2px); }
.partners__logo--chip a {
  padding: 0.55rem 0.9rem;
  background: var(--cream);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partners__logo--chip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
.partners__logo--chip a:hover img { opacity: 1; transform: none; }
.partners__logo--chip img { height: clamp(1.5rem, 3.2vw, 2.1rem); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Footer schließt die Seite mit dem Party-Bild ab; Inhalte sitzen im
   schwarzen unteren Bereich (per Gradient garantiert dunkel & lesbar). */
.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(24rem, 52vw, 44rem) var(--edge) clamp(1.4rem, 2.5vw, 2rem);
  background:
    /* langer dunkler Puffer oben: weicher Übergang + Abstand zur Partner-Leiste */
    linear-gradient(to bottom, var(--ink) 0%, rgba(14, 10, 22, 0.9) 8%, rgba(14, 10, 22, 0) 28%),
    /* dezenter Abdunkler unten für lesbaren Text, gibt aber mehr Farbe frei */
    linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.8) 6%, rgba(0, 0, 0, 0.25) 16%, rgba(0, 0, 0, 0) 30%),
    url("../assets/img/footer-bg.jpg") center bottom / cover no-repeat,
    #000;
  display: grid;
  gap: 1.2rem;
}
.footer__top, .footer__bar { position: relative; z-index: 2; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__brand p { color: var(--cream-dim); margin: 0.4rem 0 0; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 2rem;
  width: 100%;
  min-width: 0;
  max-width: 40rem;
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
  .footer__organizer { grid-column: 1 / -1; }
}
.footer__cols h3 {
  font-family: var(--ff-accent);
  font-weight: 600;
  color: var(--amber);
  font-size: 1rem;
  margin: 0 0 0.7rem;
}
.footer__cols a {
  display: block;
  text-decoration: none;
  color: var(--cream-dim);
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}
.footer__cols a:hover { color: var(--gold); }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.ig-icon {
  width: 2.8rem; height: 2.8rem;
  flex: none;
  color: currentColor;
  transition: transform 0.2s ease;
}
.footer__insta:hover .ig-icon { transform: translateY(-2px); }
.footer__orglogo { line-height: 0; padding-top: 0.3rem; }
.footer__orglogo img {
  height: 2.6rem;
  width: auto;
  transition: opacity 0.2s ease;
}
.footer__orglogo:hover img { opacity: 0.8; }
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__copy { color: var(--cream-dim); font-size: 0.8rem; margin: 0; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer__legal a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color 0.15s ease;
}
.footer__legal a:hover,
.footer__legal a[aria-current="page"] { color: var(--cream); }

/* Minimaler Footer (Rechtsseiten) */
.footer--min { gap: 1.2rem; text-align: center; }
.footer--min .footer__legal { justify-content: center; }

/* ==========================================================================
   RECHTSSEITEN (Impressum etc.)
   ========================================================================== */
.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 9rem) var(--edge) clamp(4rem, 8vw, 6rem);
}
.legal .section-title { margin-bottom: 2.5rem; }
.legal__block { margin: 0 0 2rem; }
.legal__block h2 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.legal__block p { margin: 0; color: var(--cream); }
.legal__block a { color: var(--cream); }
.legal__block a:hover { color: var(--accent-soft); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll span { animation: none; }
  .cd-num.tick { transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   FAQ / Häufige Fragen (native <details>)
   ========================================================================== */
.faq {
  padding: clamp(4rem, 9vw, 7rem) var(--edge);
  text-align: center;
}
.faq__list {
  max-width: 52rem;
  margin: 2.4rem auto 0;
  display: grid;
  gap: 0.8rem;
  text-align: left;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(244, 238, 247, 0.025);
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.faq__item[open] { border-color: rgba(255, 61, 127, 0.4); background: rgba(255, 61, 127, 0.05); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--accent); }
.faq__answer { padding: 0 1.35rem 1.2rem; color: var(--cream-dim); }
.faq__answer p { margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq__item summary::after { transition: none; }
}
