/* =========================================================
   STRIKE Party- & Gala-Band — Static Rebuild
   Exact values extracted from strike-music.de via live inspection
   ========================================================= */


:root {
  /* Core palette */
  --sb-dark: #0e161b;
  --sb-white: #ffffff;
  --panel: rgba(14, 22, 27, 0.94);
  --navbar-bg: rgba(14, 22, 27, 0.44);
  --accent: #C81414;
  --accent-hover: #A81010;
  --text-muted: rgba(255, 255, 255, 0.75);

  /* Typography */
  --font-head: "Questrial", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --font-content: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Layout (exact measurements from original) */
  --topbar-h: 47px;
  --navbar-h: 86px;
  --nav-area-h: calc(var(--topbar-h) + var(--navbar-h));
  --maxw: 1380px;
  --radius: 12px;
  --menu-radius: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sb-dark);
  color: var(--sb-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  border-top: 2px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
}

/* Content text inside panels uses Montserrat at 17px like the original */
.panel__body p,
.content-panel p,
.news-item__excerpt {
  font-family: var(--font-content);
  font-size: 17px;
  line-height: 1.55;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sb-white); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--sb-white);
}
h1 { font-size: clamp(2rem, 4vw, 52px); letter-spacing: 1px; }
h2 { font-size: clamp(1.6rem, 3vw, 38px); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1em; font-size: 17px; line-height: 1.55; }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 60px 0; }

/* ---------- Top Bar (WHITE, fixed at top) ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--sb-white);
  z-index: 888;
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.topbar a {
  color: var(--sb-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.topbar a:hover { text-decoration: underline; color: var(--sb-dark); }
.topbar i { font-size: 16px; color: var(--sb-dark); }

/* ---------- Navbar (semi-transparent dark, floats over hero) ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--navbar-h);
  background: var(--navbar-bg);
  z-index: 777;
  transition: background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(14, 22, 27, 0.88);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 73px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height .3s ease;
}

.nav__menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
}
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  color: var(--sb-white);
  font-family: var(--font-content);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--menu-radius);
  transition: all .2s ease;
  text-transform: uppercase;
  line-height: 1.3;
  min-height: 43px;
}
.nav__menu > li > a:hover,
.nav__menu > li.is-active > a,
.nav__menu > li.has-submenu:hover > a,
.nav__menu > li.has-submenu:focus-within > a {
  background: var(--sb-white);
  color: var(--sb-dark);
}

/* Dropdown arrow — stays pointing down, no rotation */
.nav__menu > li.has-submenu > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(6px);
  background: #dedede;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 10;
  overflow: hidden;
}
.nav__menu > li:hover > .nav__submenu,
.nav__menu > li:focus-within > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__submenu li + li { margin-top: 2px; }
.nav__submenu a {
  padding: 10px 20px;
  font-size: 14px;
  display: block;
  color: var(--sb-dark);
  font-family: var(--font-content);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--sb-white);
  line-height: 1.55;
  border: 0;
  margin: 0;
  transition: background .15s ease, color .15s ease;
}
.nav__submenu a:hover {
  background: var(--sb-dark);
  color: var(--sb-white);
}

/* Social icons in navbar — original shown at top right on desktop */
.nav__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
/* Clone appended by JS into nav__menu: hide on desktop, shown on mobile via nav__menu-social */
.nav__menu .nav__social {
  display: none;
}
.nav__social a {
  color: var(--sb-white);
  font-size: 36px;
  line-height: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: opacity .2s ease, transform .2s ease;
}
.nav__social a:hover { opacity: .8; transform: scale(1.05); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 28px; height: 3px;
  background: var(--sb-white);
  margin: 5px 0;
  transition: transform .25s ease, opacity .2s ease;
}

/* Page wrapper for pages without hero */
.page-wrapper { padding-top: var(--nav-area-h); }

/* Hero-wrap: hero starts AFTER the white topbar; navbar floats over it */
.hero-wrap { padding-top: var(--topbar-h); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100vh - var(--topbar-h));
  /* Bild ist 1280×853 (≈3:2). Wenn der Container schmaler ist, schneidet cover
     links/rechts ab. max-height hält das Seitenverhältnis ≥ Bild-AR → kein L/R-Crop. */
  max-height: calc(100vw * 853 / 1280);
  min-height: 380px;
  overflow: hidden;
  background: #000;
}
.hero__video,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 70%, rgba(14,22,27,1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Fixed background layer (GPU-composited, no scroll jitter on any device) ---------- */
/* Injected via JS as <div id="bg-fixed-layer"> at start of <body> */
#bg-fixed-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url('../img/hintergrund.jpg') center / cover no-repeat;
  background: image-set(url('../img/hintergrund.webp') type('image/webp'), url('../img/hintergrund.jpg') type('image/jpeg')) center / cover no-repeat;
}
@media (max-width: 768px) {
  #bg-fixed-layer {
    background: url('../img/hintergrund-m.webp') center / cover no-repeat;
  }
}

/* ---------- Intro section with fixed parallax background ---------- */
.bg-photo-section {
  position: relative;
  background: transparent;
  padding: 0;
}

/* Inside bg-photo-section the container has no horizontal padding so panels take full 1380px */
.bg-photo-section > .container {
  padding: 60px 0 80px;
}

/* Main content panel */
.panel {
  background: var(--panel);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 40px 50px;
  width: 100%;
}
/* ------------------------------------------------------------
   Stamp: the wrapper holds the image + decorative frame,
   and takes all the transform/animation.
   ------------------------------------------------------------ */
.panel__logo-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 32px;
  position: relative;
  display: block;
  transform-origin: center center;
  z-index: 1;
  will-change: transform, opacity;
  padding: 14px 24px;
}

.panel__logo {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Rubber-stamp frame — red/white gradient matching the STRIKE logo stripes,
   with a retro speckle filter for an aged rubber-stamp feel. */
.panel__logo-wrap::before,
.panel__logo-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease-out;
}

/* Outer thick gradient border (red → white → red, horizontal like the stripes) */
.panel__logo-wrap::before {
  inset: -4px;
  padding: 5px;
  background: linear-gradient(
    90deg,
    #8a0f0f 0%,
    #d11a1a 15%,
    #f5c9c9 42%,
    #ffffff 50%,
    #f5c9c9 58%,
    #d11a1a 85%,
    #8a0f0f 100%
  );
  border-radius: 5px;
  /* Cut out the center to make it a border */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: url(#stamp-frame-retro) drop-shadow(0 0 18px rgba(0,0,0,.35));
}

/* Inner thin cream ring for extra old-stamp detail */
.panel__logo-wrap::after {
  inset: 4px;
  border: 1px solid rgba(255, 240, 230, 0.45);
  border-radius: 2px;
  filter: url(#stamp-frame-retro);
}

/* Show the frame when stamped */
.panel__logo-wrap.show-frame::before,
.panel__logo-wrap.show-frame::after {
  opacity: 1;
}

/* Apply retro speckle filter to the logo during stamp + fall.
   Smooth fade back to clean logo once it settles at rest. */
.panel__logo {
  transition: filter .35s ease-out;
}
.panel__logo-wrap.show-frame .panel__logo {
  filter: url(#stamp-retro) contrast(1.05) saturate(0.92);
}

/* ------------------------------------------------------------
   Flight → impact → hold → fall
   --ty-hero set via JS = px distance from natural position
   up to the hero center.
   Individual timing functions inside keyframes give each phase
   its own feel (ease-in for flight, ease-out for impact, then
   ease-in again for gravity).
   ------------------------------------------------------------ */
@keyframes stamp-flight-and-fall {
  /* Phase 1 — flight: quick tumble in from top-right */
  0% {
    opacity: 0;
    transform: translate(-45vw, calc(var(--ty-hero, -500px) - 40vh)) rotate(-45deg) scale(1.9);
    animation-timing-function: cubic-bezier(0.6, 0, 0.85, 0.2);
  }
  /* Phase 2 — impact: snap into place (at ~15% = 420ms) */
  15% {
    opacity: 1;
    transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.65);
    animation-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1);
  }
  /* Phase 2b — squash on impact */
  18% {
    transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.65) scaleY(0.86);
    animation-timing-function: ease-out;
  }
  /* Phase 2c — rebound */
  22% {
    transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.55);
    animation-timing-function: linear;
  }
  /* Phase 3 — stamp HOLDS in the center (retro frame + filter visible) */
  55% {
    transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.55);
    animation-timing-function: ease-in-out;
  }
  /* Phase 4 — STILL at hero center, but rotation straightens
     as the retro frame/filter fade away (JS removes show-frame here) */
  67% {
    transform: translate(0, var(--ty-hero, -500px)) rotate(0deg) scale(1.5);
    animation-timing-function: cubic-bezier(0.45, 0, 0.7, 0.4);
  }
  /* Phase 5 — clean logo falls down into its resting spot */
  95% {
    transform: translate(0, 10px) rotate(-1deg) scale(1) scaleY(0.94);
    animation-timing-function: cubic-bezier(0.3, 0, 0.4, 1.2);
  }
  /* Phase 6 — settle */
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

.panel__logo-wrap.is-stamping-hero {
  z-index: 500;
  animation: stamp-flight-and-fall 2.8s forwards;
}

/* Hide logo before animation runs to avoid a flash in its resting place */
.panel__logo-wrap:not(.has-stamped):not(.is-stamping-hero) {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .panel__logo-wrap.is-stamping-hero { animation: none; }
  .panel__logo-wrap:not(.has-stamped) { opacity: 1; }
}

/* Mobile: Logo fliegt ohne horizontalen Overflow ein (nur von oben, kein scale > 1) */
@media (max-width: 768px) {
  @keyframes stamp-flight-and-fall {
    0% {
      opacity: 0;
      transform: translateY(calc(var(--ty-hero, -500px) - 40vh)) rotate(-30deg) scale(1.1);
      animation-timing-function: cubic-bezier(0.6, 0, 0.85, 0.2);
    }
    15% {
      opacity: 1;
      transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.0);
      animation-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1);
    }
    18% {
      transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.0) scaleY(0.88);
      animation-timing-function: ease-out;
    }
    22% {
      transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.0);
      animation-timing-function: linear;
    }
    55% {
      transform: translate(0, var(--ty-hero, -500px)) rotate(-3deg) scale(1.0);
      animation-timing-function: ease-in-out;
    }
    67% {
      transform: translate(0, var(--ty-hero, -500px)) rotate(0deg) scale(1.0);
      animation-timing-function: cubic-bezier(0.45, 0, 0.7, 0.4);
    }
    95% {
      transform: translate(0, 10px) rotate(-1deg) scale(1) scaleY(0.94);
      animation-timing-function: cubic-bezier(0.3, 0, 0.4, 1.2);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) rotate(0) scale(1);
    }
  }
}
.panel__body h1 {
  text-align: left;
  font-size: clamp(1.8rem, 3.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--sb-white);
}
.panel__body p {
  color: var(--sb-white);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 1em;
}
.panel__body a { color: var(--sb-white); text-decoration: underline; }
.panel__body a:hover { color: var(--accent); }

/* ---------- Generic content panels (Band page etc.) ---------- */
.content-panel {
  background: var(--panel);
  border-radius: var(--radius);
  scroll-margin-top: var(--nav-area-h);
  padding: 40px 50px;
  margin-bottom: 30px;
}
.content-panel h1,
.content-panel h2 { margin-top: 0; }
.content-panel h1 { font-size: clamp(1.8rem, 3.5vw, 52px); margin-bottom: 28px; }
.content-panel h2 { font-size: clamp(1.5rem, 2.6vw, 38px); margin-bottom: 24px; color: var(--sb-white); }
.content-panel p { color: var(--sb-white); }
.content-panel p a,
.content-panel li a {
  color: var(--sb-white);
  text-decoration: underline;
}
.content-panel p a:hover,
.content-panel li a:hover { color: var(--accent); }

/* ---------- Full-width image block (between content panels) ---------- */
.full-image {
  display: block;
  width: 100%;
  margin: 0 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: var(--nav-area-h);
}
.full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Members grid ---------- */
.members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.member {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease;
}
.member:hover { transform: translateY(-4px); }
.member img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}
.member__caption {
  padding: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--sb-white);
  text-align: center;
}
.member__caption span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: none;
}

/* ---------- News list (side-by-side cards, full width) ---------- */
.news-intro-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.news-social-tiles {
  display: flex;
  gap: 12px;
}
.news-social-tiles a {
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--sb-white);
  font-size: 1.5rem;
  transition: opacity .2s ease, transform .2s ease;
  text-decoration: none;
}
.news-social-tiles a:hover { opacity: .8; transform: scale(1.05); }

.news-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 18px;
  border-radius: 6px;
  color: var(--sb-white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
}
.news-filter i { color: var(--accent); }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.news-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  overflow: hidden;
  padding: 44px;
  gap: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200,20,20,0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}
.news-item__media {
  background: #000;
  min-height: 200px;
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border-right: none;
}
.news-item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.news-item__body {
  padding: 10px 16px 10px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-item__meta {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}
.news-item h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}
.news-item h3 a { color: var(--sb-white); text-decoration: none; }
.news-item h3 a:hover { color: var(--accent); }
.news-item__excerpt { color: var(--sb-white); margin: 0 0 14px; }
.news-item__more {
  color: var(--accent);
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: .5px;
}

@media (max-width: 768px) {
  .news-item { grid-template-columns: 1fr; padding: 14px; gap: 14px; }
  .news-item__media { min-height: 200px; }
  .news-item__body { padding: 0; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #000;
  border-radius: 6px;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease, filter .3s ease;
  filter: brightness(.9);
}
.gallery a:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---------- Veranstalter 2-column grid (downloads + technical rider) ---------- */
.veranstalter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.veranstalter-grid .content-panel { margin-bottom: 0; }
.veranstalter-grid h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .5px;
  margin: 24px 0 8px;
  color: var(--sb-white);
}
.veranstalter-grid h3:first-of-type { margin-top: 0; }
.veranstalter-grid a { color: var(--sb-white); text-decoration: underline; }
.veranstalter-grid a:hover { color: var(--accent); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--sb-dark);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn:hover { background: transparent; color: var(--accent); }
.btn--outline { background: transparent; color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: var(--sb-dark); }

/* ---------- Booking panel (centered, like original) ---------- */
.booking-panel {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.booking-panel h1 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.booking-panel p {
  font-size: 16px;
  margin: 6px 0;
}
.booking-panel .booking-brand {
  margin-top: 6px;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}
.booking-panel a {
  color: var(--sb-white);
  text-decoration: underline;
}
.booking-panel a:hover { color: var(--accent); }
.booking-logo {
  margin-top: 28px;
}
.booking-logo img {
  display: inline-block;
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* ---------- Booking Panel (kontakt page) ---------- */
.booking-card {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.booking-card__left {
  padding: 2rem 2.5rem 2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.booking-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 2rem 2.5rem;
  text-align: center;
}
.booking-brand {
  font-family: var(--font-content);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0 0 0.3rem;
}
.booking-name {
  font-family: var(--font-content);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 2.25rem;
  color: var(--sb-white);
}
.booking-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-contacts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.booking-contacts li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.booking-contacts a { color: rgba(255,255,255,0.82); }
.booking-contacts a:hover { color: var(--accent); }
.booking-logo img { max-width: 160px; height: auto; }
@media (max-width: 768px) {
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card__left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 1.25rem;
  }
  .booking-card__right {
    padding: 1.5rem 1.25rem;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- Contact (kontaktformular page) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.contact-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 36px 40px;
  border-radius: var(--radius);
}
.contact-card h3 { color: var(--accent); margin-top: 0; }
.contact-card dl { margin: 0; }
.contact-card dt {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-top: 18px;
  font-weight: 600;
}
.contact-card dd { margin: 4px 0 0; color: var(--sb-white); }

.form { display: grid; gap: 16px; }
.form label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--sb-white);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--accent);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form__check input { width: auto; margin-top: 4px; }

/* ---------- Video grid (city pages) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin: 0;
  padding-left: 2px;
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ---------- Instagram panel (media page) ---------- */
.insta-panel {
  text-align: center;
}
.insta-panel__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.insta-panel__label i {
  margin-right: 6px;
}
.insta-panel__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.6rem;
}
.insta-panel__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.insta-panel__embed {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.insta-panel__embed .instagram-media {
  border-radius: 12px !important;
  margin: 0 !important;
}
.insta-panel__follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.55rem 1.25rem;
  transition: color 0.2s, border-color 0.2s;
}
.insta-panel__follow:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background-image: url('../img/hintergrund.jpg');
  background-image: image-set(url('../img/hintergrund.webp') type('image/webp'), url('../img/hintergrund.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 48px 0 30px;
  margin-top: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 27, 0.85);
  z-index: 0;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-addr p,
.footer-legal a {
  color: var(--sb-white);
  font-size: 15px;
  margin: 3px 0;
}
.footer-addr p strong { color: var(--sb-white); font-weight: 600; }
.footer-legal a { display: block; }
.footer-legal a:hover { color: var(--accent); }
.footer-social-col { text-align: right; }
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sb-white);
  font-size: 1.4rem;
  transition: opacity .2s ease, transform .2s ease;
  margin: 0;
  text-decoration: none;
}
.footer-social a:hover { opacity: .8; transform: scale(1.05); }
.footer-copyright {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  text-align: right;
  margin-top: 20px;
}

/* ---------- Scroll-to-top button ---------- */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--sb-dark);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--accent-hover, #A81010);
}

/* ---------- Landing page: styled list ---------- */
.strike-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.strike-list li {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  line-height: 1.65;
  transition: border-color 0.2s;
}
.strike-list li:hover { border-color: rgba(200,20,20,0.4); }
.strike-list a { color: var(--accent); text-decoration: underline; }
.strike-list a:hover { color: #fff; }

/* ---------- Landing page: feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}
.feature-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(200,20,20,0.4); }
.feature-card--wide { grid-column: 1 / -1; }
.feature-card__label {
  font-family: var(--font-content);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin: 0 0 0.45rem;
}
.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.feature-card a { color: var(--accent); text-decoration: underline; }
.feature-card a:hover { color: #fff; }
.feature-card__title {
  font-family: var(--font-content);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sb-white);
  margin: 0 0 0.4rem;
}
.feature-card__title a { text-decoration: none; color: var(--sb-white); }
.feature-card__title a:hover { color: var(--accent); }

/* ---------- Landing page: FAQ (h3/p Variante) ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-item h3 {
  font-family: var(--font-content);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sb-white);
  margin: 0;
  letter-spacing: 0.02em;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.2s;
}
.faq-item h3:hover { background: rgba(255,255,255,0.05); }
.faq-item h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid rgba(200,20,20,0.5);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C81414' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform 0.3s ease, background-color 0.2s;
}
.faq-item.is-open h3::after {
  transform: rotate(180deg);
  background-color: rgba(200,20,20,0.12);
}
.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 0 1.5rem 1.1rem;
  display: none;
}
.faq-item.is-open p { display: block; }
.faq-item a { color: var(--accent); text-decoration: underline; }

/* ---------- CTA Buttons ---------- */
.cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-content);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: var(--accent-hover, #A81010);
  border-color: var(--accent-hover, #A81010);
  color: #fff;
}
.cta-btn--outline {
  background: transparent;
  color: var(--accent);
}
.cta-btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  :root { --topbar-h: 42px; --navbar-h: 74px; }
  .nav__logo img { height: 60px; }
}

/* Tablet: .intro-hero (Stadtseiten) darf nicht links/rechts abschneiden.
   band-party.jpg / band-gala.jpg sind ~3:2 (1280×853).
   max-height begrenzt den Container auf dieses Seitenverhältnis.
   min-height !important überschreibt die per-Page-Werte (z.B. 100vh). */
@media (min-width: 769px) and (max-width: 1280px) {
  .intro-hero {
    min-height: 0 !important;
    height: calc(100vw * 853 / 1280);
    max-height: 90vh;
  }
  /* Text näher an den unteren Bildrand schieben */
  .intro-hero .container { padding-bottom: 1.5rem !important; }
  .intro-hero__content { padding-top: 0.5rem !important; }
}

/* Mobile: Text ebenfalls näher an den unteren Bildrand */
@media (max-width: 768px) {
  .intro-hero .container { padding-bottom: 0.75rem !important; }
}

@media (max-width: 1428px) {
  /* Below 1428 the 1380 container hits the viewport edge, add some breathing room */
  .bg-photo-section > .container { padding: 60px 24px 80px; }
}

@media (max-width: 992px) {
  .members { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social-col { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-copyright { text-align: left; }
  .content-panel,
  .panel { padding: 32px 34px; }
}

/* ---------- Hamburger-Menü ab ≤1024px (Tablet + Mobile) ---------- */
@media (max-width: 1024px) {
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__logo img { height: 48px; }
  .nav__toggle { display: block; z-index: 1001; position: relative; }

  .nav__menu {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 58%; max-width: 360px;
    background: var(--sb-white);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--topbar-h) + var(--navbar-h) + 8px) 28px 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    box-shadow: -10px 0 30px rgba(0,0,0,.25);
    z-index: 1000;
  }
  .nav__toggle span { background: var(--sb-white); transition: background .2s; }
  .nav__menu.is-open ~ .nav__toggle span,
  body:has(.nav__menu.is-open) .nav__toggle span { background: var(--sb-dark); }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu > li { width: 100%; border-bottom: 0; text-align: right; }
  .nav__menu > li + li { margin-top: 4px; }
  .nav__menu > li > a {
    padding: 10px 16px; width: 100%; justify-content: flex-end;
    border-radius: 4px; background: transparent !important;
    color: var(--sb-dark) !important; min-height: 44px; letter-spacing: .5px;
  }
  .nav__menu > li.is-active > a { background: var(--sb-dark) !important; color: var(--sb-white) !important; }
  .nav__menu > li > a:hover { background: rgba(0,0,0,.05) !important; color: var(--sb-dark) !important; }
  .nav__menu > li.is-active > a:hover { background: var(--sb-dark) !important; color: var(--sb-white) !important; }

  .nav__submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; padding: 4px 16px 8px 0;
    box-shadow: none; min-width: 0; text-align: right;
  }
  .nav__submenu li { margin: 0; }
  .nav__submenu li + li { margin-top: 2px; }
  .nav__submenu a { color: var(--sb-dark); padding: 6px 0; background: transparent; font-size: 13px; letter-spacing: .3px; }
  .nav__submenu a:hover { background: transparent; color: var(--accent); }

  .nav > .nav__social { display: none; }
  .nav__menu-social {
    display: flex; justify-content: flex-end; gap: 14px;
    margin-top: 24px; padding: 16px 16px 0;
    border-top: 1px solid rgba(0,0,0,.12);
  }
  .nav__menu-social a { color: var(--sb-dark); font-size: 28px; background: transparent; width: auto; height: auto; }
  .nav__menu-social a:hover { color: var(--accent); opacity: 1; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 40px; --navbar-h: 68px; }
  .section { padding: 44px 0; }
  .hero-wrap { padding-top: var(--nav-area-h); }
  .bg-photo-section { padding: 0; }

  /* Hero: on mobile, show the WHOLE image (not a cropped section) */
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1280 / 853;
  }
  .hero__image,
  .hero__video {
    object-fit: cover;
  }
  .topbar__inner { justify-content: space-between; gap: 10px; padding: 0 16px; }
  .topbar a { font-size: 12px; }
  .topbar i { font-size: 12px; }
  /* Prevent email from overflowing – allow wrapping & lowercase for space */
  .topbar a[href^="mailto"] { text-transform: lowercase; word-break: break-all; }

  /* CRITICAL: backdrop-filter auf dem site-header erstellt einen neuen
     Containing Block – dadurch wird position:fixed auf .nav__menu relativ
     zum Header (68px hoch) statt zum Viewport. Auf Mobile deaktivieren. */
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__logo img { height: 48px; }
  .nav__toggle { display: block; z-index: 1001; position: relative; }

  /* Mobile menu: white overlay sliding from the right, right-aligned links */
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 58%;
    max-width: 360px;
    background: var(--sb-white);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--topbar-h) + var(--navbar-h) + 8px) 28px 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    /* max-height: 100vh entfernt — auf iOS Safari ändert sich 100vh nicht
       wenn die Adressleiste ein-/ausblendet, aber bottom:0 passt sich
       dynamisch an → das führte zum Abschneiden beim Scrollen. */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    box-shadow: -10px 0 30px rgba(0,0,0,.25);
    z-index: 1000;
  }
  /* Hamburger toggle sits above the overlay and turns dark when menu is open */
  .nav__toggle span { background: var(--sb-white); transition: background .2s; }
  .nav__menu.is-open ~ .nav__toggle span,
  body:has(.nav__menu.is-open) .nav__toggle span { background: var(--sb-dark); }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu > li {
    width: 100%;
    border-bottom: 0;
    text-align: right;
  }
  .nav__menu > li + li { margin-top: 4px; }

  .nav__menu > li > a {
    padding: 10px 16px;
    width: 100%;
    justify-content: flex-end;
    border-radius: 4px;
    background: transparent !important;
    color: var(--sb-dark) !important;
    min-height: 44px;
    letter-spacing: .5px;
  }
  .nav__menu > li.is-active > a {
    background: var(--sb-dark) !important;
    color: var(--sb-white) !important;
  }
  .nav__menu > li > a:hover {
    background: rgba(0,0,0,.05) !important;
    color: var(--sb-dark) !important;
  }
  .nav__menu > li.is-active > a:hover {
    background: var(--sb-dark) !important;
    color: var(--sb-white) !important;
  }

  /* Submenu collapsed inside the mobile panel */
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 4px 16px 8px 0;
    box-shadow: none;
    min-width: 0;
    text-align: right;
  }
  .nav__submenu li { margin: 0; }
  .nav__submenu li + li { margin-top: 2px; }
  .nav__submenu a {
    color: var(--sb-dark);
    padding: 6px 0;
    background: transparent;
    font-size: 13px;
    letter-spacing: .3px;
  }
  .nav__submenu a:hover {
    background: transparent;
    color: var(--accent);
  }

  /* Original nav__social (outside the menu) is hidden on mobile */
  .nav > .nav__social { display: none; }

  /* The cloned copy inside the menu is shown at the bottom */
  .nav__menu-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 16px 0;
    border-top: 1px solid rgba(0,0,0,.12);
  }
  .nav__menu-social a {
    color: var(--sb-dark);
    font-size: 28px;
    background: transparent;
    width: auto;
    height: auto;
  }
  .nav__menu-social a:hover { color: var(--accent); opacity: 1; }

  .hero { min-height: 420px; }
  .form__row { grid-template-columns: 1fr; }
  .feature-grid,
  .feature-grid--3 { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-social-col { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-copyright { text-align: center; }

  /* Center intro H1 on mobile (like original) */
  .panel__body h1 { text-align: center; }
}

@media (max-width: 480px) {
  .members { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; line-height: 1.3; }
  h2 { font-size: 1.5rem; }
  .content-panel, .panel { padding: 24px 20px; }
  .contact-card { padding: 24px 22px; }

  /* Hero: prevent it from getting too short on small phones */
  .hero { min-height: 280px; }
}

/* Topbar: on very small screens show icons only, hide text */
@media (max-width: 340px) {
  .topbar__inner { gap: 8px; }
  .topbar a { font-size: 0; gap: 0; }
  .topbar a i { font-size: 18px; }
}

/* Hamburger X animation when menu is open */
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Facts Strip ---------- */
.facts-strip {
  background: linear-gradient(rgba(200,20,20,0.10), rgba(200,20,20,0.10)) var(--sb-dark);
  border-top: 1px solid rgba(200,20,20,0.22);
  border-bottom: 1px solid rgba(200,20,20,0.22);
  padding: 30px 0;
}
.facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.facts-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.facts-list i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.facts-list strong {
  font-family: var(--font-content);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sb-white);
  letter-spacing: 0.01em;
}
.facts-list span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Event Type Cards ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 1.25rem;
}
.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 1.4rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--sb-white);
  text-decoration: none;
}
.event-card:hover {
  background: rgba(200,20,20,0.14);
  border-color: rgba(200,20,20,0.4);
  color: var(--sb-white);
  transform: translateY(-4px);
}
.event-card i {
  font-size: 1.65rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.event-card strong {
  font-family: var(--font-head);
  font-size: 0.98rem;
  display: block;
  line-height: 1.2;
}
.event-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 60px 0 70px;
  background: var(--sb-dark);
}
.faq-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item dt {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--sb-white);
  margin: 0;
  padding: 1.35rem 3.75rem 1.35rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  position: relative;
  transition: color 0.2s;
}
.faq-item dt:hover { color: rgba(255,255,255,0.8); }
.faq-item dt::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid rgba(200,20,20,0.5);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C81414' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform 0.3s ease, background-color 0.2s;
  position: absolute;
  right: 1.25rem;
}
.faq-item.is-open dt::after {
  transform: rotate(180deg);
  background-color: rgba(200,20,20,0.12);
}
.faq-item dd {
  margin: 0;
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 0 1.25rem 1.35rem 1.25rem;
  display: none;
}
.faq-item.is-open dd { display: block; }
@media (max-width: 600px) {
  .facts-list { gap: 1.25rem 1.75rem; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Video Slider (city pages – mobile only) ---------- */
.video-slider-btn { display: none; }

@media (max-width: 768px) {
  /* Viewport clips the off-screen slides */
  .hero-videos-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  /* Track: all slides side by side, slides smoothly */
  .hero-videos-track {
    display: flex;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  /* Each slide fills exactly one viewport width */
  .hero-videos-track .hero-video-item {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  /* Arrow buttons */
  .video-slider-btn {
    display: flex;
    flex-shrink: 0;
    width: 32px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
    transition: color 0.15s, transform 0.15s;
    z-index: 5;
  }
  .video-slider-btn:hover,
  .video-slider-btn:focus {
    color: #fff;
    transform: scale(1.18);
    outline: none;
  }
}

/* ---------- Homepage Video-Section (unterhalb Hero) ---------- */
.home-videos-section {
  background: var(--sb-dark);
  padding: 1.5rem 1rem;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__videos-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}
.hero__videos-eyebrow i { margin-right: 5px; font-size: 0.6rem; }
.hero__videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: var(--maxw);
}
.hero__videos-grid .hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 8px 7px;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  text-align: center;
}

/* Mobile: Swiper zentriert, Pfeil | Video | Pfeil */
@media (max-width: 640px) {
  .home-videos-section { padding: 1.2rem 0; }
  .hero__videos-eyebrow { font-size: 0.6rem; }
  /* Grid wird durch JS zu [btn][viewport][btn] */
  .home-videos-section .hero__videos-grid {
    gap: 0;
    align-items: center;
    width: auto;
  }
  /* Viewport: feste Breite → kein flex:1 */
  .home-videos-section .hero-videos-viewport {
    flex: none !important;
    width: 290px;
    border-radius: 6px;
    overflow: hidden;
  }
  /* Jedes Slide = 290px */
  .home-videos-section .hero-videos-track .hero-video-item {
    min-width: 290px !important;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .home-videos-section .hero-video-wrap {
    width: 290px !important;
    aspect-ratio: 16 / 9;
  }
  /* Pfeile direkt neben dem Thumbnail */
  .home-videos-section .video-slider-btn {
    flex-shrink: 0;
    width: 40px;
  }
}

/* ---------- Video Thumbnail Trigger ---------- */
.hero-video-trigger {
  cursor: pointer;
  position: relative;
}
.hero-video-trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.35s ease, filter 0.25s ease;
}
.hero-video-trigger:hover img,
.hero-video-trigger:focus img {
  transform: scale(1.05);
  filter: brightness(0.55);
}
.hero-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero-video-play i {
  width: 52px;
  height: 52px;
  background: rgba(200,20,20,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  padding-left: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-video-trigger:hover .hero-video-play i,
.hero-video-trigger:focus .hero-video-play i {
  transform: scale(1.15);
  background: rgba(200,20,20,1);
}
.hero-video-trigger:focus {
  outline: 2px solid rgba(200,20,20,0.8);
  outline-offset: 2px;
}

/* ---------- YouTube Modal ---------- */
#yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
}
#yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
#yt-frame-wrap {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 80px rgba(0,0,0,0.8);
}
#yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#yt-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 9600;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  padding: 6px 10px;
  transition: opacity 0.15s;
}
#yt-close:hover { opacity: 1; }
