/* ════════════════ SWITCHER (Pitch Preview) ════════════════ */
.switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.switcher button {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font: inherit;
}
.switcher button:hover { color: #fff; }
.switcher button.active { background: var(--accent); color: var(--text); }

/* Visibility per variant */
.nv-a, .nv-b { display: none; }
body.show-a .nv-a { display: block; }
body.show-b .nv-b { display: block; }
body.show-a .lineup-hero { padding-top: calc(36px + 80px); }
body.show-b .lineup-hero { padding-top: calc(36px + 80px); }

/* ════════════════════════════════════════════════════════════
   SHARED · MARQUEE (Splash-style scrolling stripe)
═════════════════════════════════════════════════════════════ */
.nv-marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 199;
  background: var(--accent);
  color: var(--text);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.nv-marquee-track {
  display: inline-flex;
  animation: nvMarquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.nv-marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 1.6rem;
}
.nv-marquee-item .sep { color: rgba(0,0,0,0.4); margin: 0 0.4rem; }
@keyframes nvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   VARIANTE A · "SOLO FLOATING PILL"
   Eine schwebende transparente Capsule mit Splash-Style Pills drin
═════════════════════════════════════════════════════════════ */
.nv-a-bar {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(calc(100% - 32px), 1180px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 18px;
  background: rgba(20, 20, 20, 0.32);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 20px 40px -15px rgba(0,0,0,0.4);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.nv-a-bar.scrolled {
  background: rgba(238, 238, 238, 0.35);
  border-color: rgba(0,0,0,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 32px -12px rgba(0,0,0,0.15);
}
.nv-a-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 4px;
}
.nv-a-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.nv-a-bar.scrolled .nv-a-logo img { filter: none; }

.nv-a-links {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
}
@media (min-width: 1024px) {
  .nv-a-links { display: flex; }
}
.nv-a-links a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
  background: transparent;
}
.nv-a-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nv-a-links a.active { background: #ffffff; color: #111; }
.nv-a-bar.scrolled .nv-a-links a { color: var(--text); }
.nv-a-bar.scrolled .nv-a-links a:hover { background: rgba(0,0,0,0.06); color: var(--text); }
.nv-a-bar.scrolled .nv-a-links a.active { background: #111; color: #fff; }

.nv-a-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.nv-a-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nv-a-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(241,253,115,0.5);
}
.nv-a-cta svg { width: 13px; height: 13px; }

/* On mobile: hide solo-pill desktop layout, show split top + bottom-nav instead */
@media (max-width: 1023px) {
  .nv-a-bar { display: none; }
}

/* ════════════════════════════════════════════════════════════
   VARIANTE B · "TRIPLE FLOATING PILLS"
   Drei separate schwebende Pills: Logo · Nav · Tickets
═════════════════════════════════════════════════════════════ */
.nv-b-wrap {
  position: fixed;
  top: 52px;
  left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px;
  pointer-events: none;
}
.nv-b-wrap > * { pointer-events: auto; }

/* Single floating pill shell — used by Logo, Nav, CTA */
.nv-b-pill {
  background: rgba(20,20,20,0.34);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 20px 40px -15px rgba(0,0,0,0.4);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.scrolled .nv-b-pill {
  background: rgba(238, 238, 238, 0.35);
  border-color: rgba(0,0,0,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 32px -12px rgba(0,0,0,0.15);
}

.nv-b-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 22px 0 16px;
  flex-shrink: 0;
  text-decoration: none;
}
.nv-b-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.scrolled .nv-b-logo img { filter: none; }
.nv-b-logo .logo-text {
  display: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  transition: color 0.4s;
}
.scrolled .nv-b-logo .logo-text { color: #111; }
.nv-b-logo .logo-text span { color: var(--accent); }
@media (min-width: 1280px) {
  .nv-b-logo .logo-text { display: block; }
}

.nv-b-nav {
  display: none;
  align-items: center;
  gap: 2px;
  height: 64px;
  padding: 0 8px;
  list-style: none;
}
@media (min-width: 1024px) {
  .nv-b-nav { display: flex; }
}
.nv-b-nav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
  background: transparent;
}
.nv-b-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nv-b-nav a.active { background: #ffffff; color: #111; }
.scrolled .nv-b-nav a { color: var(--text); }
.scrolled .nv-b-nav a:hover { background: rgba(0,0,0,0.06); color: var(--text); }
.scrolled .nv-b-nav a.active { background: #111; color: #fff; }

.nv-b-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nv-b-cta-shell {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 0 8px 0 8px;
}
.nv-b-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.04);
}
.nv-b-cta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
  animation: nvPulse 1.8s ease-in-out infinite;
}
@keyframes nvPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.nv-b-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(241,253,115,0.6);
}
.nv-b-cta svg { width: 13px; height: 13px; }

/* On mobile: hide middle nav pill — keep logo + CTA visible, bottom-nav handles links */
@media (max-width: 1023px) {
  .nv-b-wrap { padding: 0 16px; gap: 10px; }
  .nv-b-logo { height: 56px; padding: 0 14px; }
  .nv-b-logo img { height: 34px; }
  .nv-b-cta { height: 44px; font-size: 0.74rem; padding: 0 14px; }
}
@media (max-width: 380px) {
  .nv-b-cta .label-long { display: none; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE TOP-BAR (für Variante A nur, da B schon Triple ist)
   Logo-Pill links + Tickets-Pill rechts unter dem Marquee
═════════════════════════════════════════════════════════════ */
.nv-mobile-top {
  position: fixed;
  top: 52px;
  left: 0; right: 0;
  z-index: 200;
  padding: 0 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}
.nv-mobile-top > * { pointer-events: auto; }
body.show-a .nv-mobile-top { display: flex; }
@media (min-width: 1024px) {
  body.show-a .nv-mobile-top { display: none; }
}
.nv-mt-logo {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 18px 0 14px;
  background: rgba(20,20,20,0.34);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 20px 40px -15px rgba(0,0,0,0.4);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.nv-mt-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.scrolled .nv-mt-logo {
  background: rgba(238,238,238,0.35);
  border-color: rgba(0,0,0,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 32px -12px rgba(0,0,0,0.15);
}
.scrolled .nv-mt-logo img { filter: none; }

.nv-mt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.nv-mt-cta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
  animation: nvPulse 1.8s ease-in-out infinite;
}
.nv-mt-cta svg { width: 14px; height: 14px; }
@media (max-width: 380px) {
  .nv-mt-cta .label-long { display: none; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE BOTTOM-NAV PILL (für beide Varianten)
   Floating Glass-Pill am unteren Rand mit 5 Icon-Items
═════════════════════════════════════════════════════════════ */
.nv-bottom {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 24px);
  max-width: 460px;
  padding: 6px;
  background: rgba(20,20,20,0.62);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 22px 50px -15px rgba(0,0,0,0.55);
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 1023px) {
  .nv-bottom { display: grid; }
}
.nv-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
  min-height: 56px;
}
.nv-bottom a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nv-bottom a.active {
  background: var(--accent);
  color: var(--text);
}
.nv-bottom a svg {
  width: 20px; height: 20px;
  stroke-width: 2;
}
.nv-bottom a span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
/* Add safe-area for iOS notch */
@supports (padding: max(0px)) {
  .nv-bottom { bottom: max(14px, env(safe-area-inset-bottom, 14px)); }
}
