/* =====================================================
   MAGIC TIM – KINDERMAGICSHOW.DE
   CSS Stylesheet – Premium Entertainment Design
   Farbpalette: Königsblau #1a2d6e | Rot #c8192a | Gold #f5c518
   ===================================================== */

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
  /* Kernfarben */
  --blue-deep:    #0a1628;
  --blue-dark:    #0f1f45;
  --blue-royal:   #1a2d6e;
  --blue-mid:     #2347a8;
  --blue-light:   #3a6fd8;
  --blue-glow:    rgba(35, 71, 168, 0.4);

  --red:          #c8192a;
  --red-dark:     #a01220;
  --red-light:    #e02035;
  --red-glow:     rgba(200, 25, 42, 0.3);

  --gold:         #f5c518;
  --gold-light:   #ffd700;
  --gold-dark:    #d4a200;
  --gold-glow:    rgba(245, 197, 24, 0.35);

  /* Neutrale Töne */
  --white:        #ffffff;
  --off-white:    #f0f4ff;
  --text-dark:    #0a0e1a;
  --text-mid:     #2a3350;
  --text-muted:   #6b7394;
  --border:       rgba(255,255,255,0.10);

  /* Schriften */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

  /* Radien */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 50rem;

  /* Schatten */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.25);
  --shadow-gold: 0 0 30px rgba(245,197,24,0.3), 0 0 60px rgba(245,197,24,0.15);
  --shadow-blue: 0 0 30px rgba(35,71,168,0.4), 0 0 60px rgba(35,71,168,0.2);

  /* Übergänge */
  --transition-fast:  0.15s ease;
  --transition-base:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1280px;
  --nav-height:    80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  background-color: var(--blue-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Fokus-Outline für Barrierefreiheit */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Utility: Container ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ─── Utility: Versteckt ─────────────────────────────── */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── Utility: Honeypot ──────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ─── Scroll-Reveal Klassen ──────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Primär: Rot */
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 6px 30px rgba(200,25,42,0.45);
  transform: translateY(-2px);
  color: var(--white);
}

/* Sekundär: transparent mit Kontur */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

/* Glow-Effekt (für Hero-CTA) */
.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px var(--red-glow); }
  50% { box-shadow: 0 6px 40px rgba(200,25,42,0.6), 0 0 60px rgba(245,197,24,0.2); }
}

/* Karten-Button */
.btn-card {
  background: transparent;
  color: var(--blue-light);
  border-color: var(--blue-light);
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}
.btn-card:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Klein */
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }

/* Submit mit Loading-State */
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

/* ─── Section Header ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.highlight {
  color: var(--gold);
  position: relative;
}

/* ─── NAVIGATION ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(245,197,24,0.35);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.nav-logo:hover img {
  border-color: var(--gold);
  transform: rotate(5deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base), left var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-link:hover::after {
  width: calc(100% - 1.8rem);
  left: 0.9rem;
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--red-glow);
  margin-left: 0.5rem;
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 6px 24px rgba(200,25,42,0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    150deg,
    var(--blue-deep) 0%,
    #0d1d45 35%,
    #111e4a 60%,
    var(--blue-dark) 100%
  );
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Partikel-Canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Hintergrund-Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(35,71,168,0.35) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,25,42,0.2) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
  animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: glowFloat 12s ease-in-out infinite 2s;
}

@keyframes glowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-20px) scale(1.05); }
  66% { transform: translateY(10px) scale(0.97); }
}

/* Hero-Inhalt */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  padding-block: var(--space-xl) var(--space-lg);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 1rem;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.sparkle-icon {
  animation: sparkleRotate 3s linear infinite;
  display: inline-block;
}

@keyframes sparkleRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-accent {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,197,24,0.5);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  color: rgba(245,197,24,0.3);
  font-size: 0.8rem;
}

/* Hero-Bild */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 70%;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(35,71,168,0.5) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  max-height: 85vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(35,71,168,0.5));
  transition: transform var(--transition-slow);
}

.hero-img:hover {
  transform: translateY(-8px) scale(1.01);
}

/* Schwebende Sterne */
.floating-star {
  position: absolute;
  font-size: 1.5rem;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 8px var(--gold));
}

.star-1 {
  top: 15%;
  right: -5%;
  animation: floatStar 4s ease-in-out infinite;
}

.star-2 {
  top: 40%;
  left: -8%;
  font-size: 1.2rem;
  animation: floatStar 5s ease-in-out infinite 1s;
}

.star-3 {
  bottom: 10%;
  right: -12%;
  font-size: 1rem;
  animation: floatStar 6s ease-in-out infinite 2s;
}

@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
}

/* Scroll-Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(18px); opacity: 0.3; }
}

/* ─── SECTION DIVIDER ────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 3rem;
}

.divider-star { color: var(--gold); font-size: 0.7rem; opacity: 0.6; }
.divider-wand { font-size: 1.3rem; }
.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
}

/* ─── REFERENZEN TICKER ──────────────────────────────── */
.ref-ticker {
  padding: 1.25rem 0 0;
  background: transparent;
}

.ref-ticker-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.ref-ticker-label .sparkle-icon {
  color: rgba(245,197,24,0.45);
  font-size: 0.55rem;
}

/* Weißer Balken */
.ref-ticker-bar {
  background: #ffffff;
  padding: 1.25rem 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 -4px 24px rgba(0,0,0,0.1);
  /* Sanfte Ausblendung an den Rändern */
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ref-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ref-ticker-scroll 30s linear infinite;
}

.ref-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ref-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ref-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  padding: 0 2rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
}

.ref-logo:last-child {
  border-right: none;
}

.ref-logo img {
  height: 50px;
  width: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 0.3s ease, filter 0.3s ease;
  display: block;
  margin: 0 auto;
}

.ref-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── ÜBER UNS ───────────────────────────────────────── */
.about {
  padding-block: var(--space-3xl);
  background: linear-gradient(180deg, var(--blue-deep) 0%, #0d1d40 50%, var(--blue-dark) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

/* Bilder-Seite */
.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-blue);
}

.about-img-main img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.badge-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.magic-circle {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 20s linear infinite;
}

.magic-circle-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(245,197,24,0.5);
  letter-spacing: 0.15em;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Text-Seite */
.about-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-body {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.highlight-item:hover {
  background: rgba(245,197,24,0.05);
  border-color: rgba(245,197,24,0.2);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.highlight-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ─── SHOWS ──────────────────────────────────────────── */
.shows {
  padding-block: var(--space-3xl);
  background: var(--blue-dark);
  position: relative;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

/* Show-Karte */
.show-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
  overflow: hidden;
}

.show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35,71,168,0.5);
  background: rgba(35,71,168,0.08);
  box-shadow: var(--shadow-blue);
}

.show-card-featured {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.04);
}

.show-card-featured:hover {
  border-color: var(--gold);
  background: rgba(245,197,24,0.07);
  box-shadow: var(--shadow-gold);
}

.show-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.show-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(245,197,24,0.3));
}

.show-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(35,71,168,0.15);
  border: 1px solid rgba(35,71,168,0.3);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
}

.show-badge-gold {
  color: var(--gold-dark);
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.3);
}

.show-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.show-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.show-features {
  margin-bottom: 1.75rem;
}

.show-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.show-features li::first-line { color: var(--gold); }

.show-card-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(35,71,168,0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition-base);
  opacity: 0;
}

.show-card:hover .show-card-glow { opacity: 1; }
.show-card-featured .show-card-glow {
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
}

/* Shows Feature Banner */
.shows-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  overflow: hidden;
}

.shows-feature-img {
  flex-shrink: 0;
  width: 280px;
}

.shows-feature-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.shows-feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.shows-feature-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ─── VIDEO ──────────────────────────────────────────── */
.video-section {
  padding-block: var(--space-3xl);
  background: var(--blue-royal);
  position: relative;
  overflow: hidden;
}

.video-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-wrapper {
  max-width: 800px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.15);
  position: relative;
  background: #000;
  line-height: 0;
}

.trailer-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  cursor: pointer;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-xl);
}

.video-play-overlay svg {
  width: 72px;
  height: 72px;
  opacity: 0.38;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}

#videoWrapper:hover .video-play-overlay svg {
  opacity: 0.6;
}

.video-play-overlay.hidden {
  opacity: 0;
}

.video-cta {
  text-align: center;
  margin-top: 2rem;
}

.video-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
  padding-block: var(--space-3xl);
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.04);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(245,197,24,0.4));
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.slider-btn:hover {
  background: rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.4);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  padding-block: var(--space-3xl);
  background: var(--blue-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--transition-base);
}

.faq-item[open] {
  border-color: rgba(245,197,24,0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition-base);
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  width: 24px;
  text-align: center;
  display: inline-block;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-answer p strong {
  color: var(--white);
}

/* FAQ CTA Box */
.faq-cta-box {
  background: linear-gradient(135deg, rgba(35,71,168,0.2), rgba(26,45,110,0.3));
  border: 1px solid rgba(35,71,168,0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.faq-cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.faq-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq-cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-cta-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-cta-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

.faq-cta-contact a:hover { color: var(--gold); }

/* ─── KONTAKT ─────────────────────────────────────────── */
.contact {
  padding-block: var(--space-3xl);
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,25,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

/* Formular */
.contact-form-wrap {
  min-width: 0;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(35,71,168,0.1);
  box-shadow: 0 0 0 3px rgba(35,71,168,0.2);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,25,42,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select option {
  background: var(--blue-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Datums-Minimum dynamisch per JS */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

.field-error {
  font-size: 0.78rem;
  color: #ff7b8a;
  display: none;
}

.field-error.visible { display: block; }

/* Checkbox */
.form-checkbox { margin-bottom: 0.5rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
  margin-top: 2px;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.checkbox-text a {
  color: var(--blue-light);
  text-decoration: underline;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 0.75rem;
}

/* Erfolg / Fehler */
.form-success,
.form-error {
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.form-success h3 {
  color: #4ade80;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p { color: rgba(255,255,255,0.7); }

.form-error {
  background: rgba(200,25,42,0.08);
  border: 1px solid rgba(200,25,42,0.25);
  color: #ff7b8a;
}

/* Kontakt-Info */
.contact-info {
  width: 320px;
  flex-shrink: 0;
}

.contact-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-list a,
.contact-list span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-base);
}

.contact-list a:hover { color: var(--gold); }

/* Social Links */
.contact-social {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-social h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.social-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Trust-Badges */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}

.trust-badge-icon { font-size: 1rem; }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--blue-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245,197,24,0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(245,197,24,0.3) 1px, transparent 1px);
  background-size: 80px 80px, 130px 130px;
  background-position: 0 0, 40px 40px;
  opacity: 0.08;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(245,197,24,0.2);
  transition: border-color var(--transition-base);
}

.footer-brand .footer-logo:hover img {
  border-color: rgba(245,197,24,0.5);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.footer-social a:hover {
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  border-color: rgba(245,197,24,0.3);
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── BACK TO TOP ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-royal));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md), var(--shadow-blue);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  opacity: 0;
}

.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top[hidden] { display: flex !important; opacity: 0; pointer-events: none; }

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  max-width: 600px;
  background: rgba(10, 22, 40, 0.97);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.cookie-content strong { color: var(--white); }

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cookie-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.cookie-link:hover { color: var(--white); }

/* ─── RESPONSIVE: Tablet (≤1024px) ──────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images {
    max-width: 450px;
    margin-inline: auto;
  }

  .shows-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shows-grid .show-card:last-child {
    grid-column: 1 / -1;
  }

  .shows-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shows-feature-img {
    width: 250px;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: 360px;
    overflow: hidden;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-cta-box {
    width: 100%;
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    min-width: calc(50% - 0.75rem);
  }
}

/* ─── RESPONSIVE: Mobile (≤900px) ───────────────────── */
@media (max-width: 900px) {
  :root {
    --nav-height: 70px;
  }

  /* Nav Mobile */
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-logo img {
    width: 52px;
    height: 52px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  /* iOS-sicheres Verstecken ohne transform+backdrop-filter Bug */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 18, 36, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0 3rem;
    border-top: 1px solid rgba(245,197,24,0.15);
    z-index: 1000;
    /* Sicher versteckt via opacity+visibility statt transform */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.05rem;
    width: 100%;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-link::after { display: none; }

  .nav-link.nav-cta {
    margin: 1.5rem 1.5rem 0;
    width: calc(100% - 3rem);
    text-align: center;
    display: block;
    border-radius: var(--radius-full);
    border-bottom: none;
    padding: 0.85rem 1.5rem;
  }

  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 2rem 1rem;
  }

  .hero-image {
    order: -1;
    max-height: 55vw;
    overflow: visible;
  }

  .hero-img {
    max-height: 55vw;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  /* Shows Mobile */
  .shows-grid {
    grid-template-columns: 1fr;
  }

  .shows-grid .show-card:last-child {
    grid-column: 1;
  }

  .shows-feature {
    padding: 1.5rem;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    max-height: 250px;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    min-width: 85vw;
  }

  /* Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Lightbox Mobile */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  /* Cookie Mobile */
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ─── RESPONSIVE: Klein (≤480px) ────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-divider { display: none; }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-row: 1;
    max-height: 220px;
  }

  .play-icon { font-size: 1.3rem; }

  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ─── Print-Styles ───────────────────────────────────── */
@media print {
  .navbar, .particle-canvas, .hero-glow, .back-to-top, .cookie-banner { display: none; }
  body { background: white; color: black; }
  .section-title, .highlight { color: black; }
  a { text-decoration: underline; }
}

/* ─── Animations: Reduced Motion ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ─── MAGIC CURSOR ──────────────────────────────────── */
@media (hover: hover) {
  * { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: #f5c518;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 8px 2px rgba(245,197,24,0.8);
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(245,197,24,0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
  }

  .cursor-ring--hover {
    width: 48px; height: 48px;
    border-color: rgba(245,197,24,0.9);
    margin-top: -6px; margin-left: -6px;
  }

  .cursor-sparkle {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99997;
    color: #f5c518;
    font-style: normal;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(245,197,24,0.9));
    will-change: transform, opacity;
  }
}
