/* ============================================================
   DJ RALF GROTE – MAIN STYLESHEET
   Dark Neon Retro-Futurism Design System 2026
   ============================================================ */

/* ============================================================
   LOKALE FONTS – keine Verbindung zu Google/externen Servern
   DSGVO-konform, keine Einwilligung erforderlich
   ============================================================ */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: 'Black Ops One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/black-ops-one-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/barlow-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/barlow-latin-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/barlow-condensed-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-condensed-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/barlow-condensed-latin-900-normal.woff2') format('woff2');
}

/* ── TOKENS ── */
:root {
  --neon-pink:    #ff2d78;
  --neon-cyan:    #00f5ff;
  --neon-yellow:  #ffe000;
  --neon-green:   #4ade80;
  --neon-purple:  #a78bfa;
  --deep-black:   #050508;
  --dark-purple:  #0d0a1a;
  --mid-dark:     #12101f;
  --card-bg:      rgba(255,255,255,0.04);
  --card-border:  rgba(255,45,120,0.18);
  --text-light:   #e8e0ff;
  --text-muted:   #8a7fa0;
  --nav-h:        76px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep-black);
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--neon-pink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,45,120,0.7);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}
body.cursor-hover .cursor       { width: 20px; height: 20px; }
body.cursor-hover .cursor-ring  { width: 60px; height: 60px; border-color: var(--neon-cyan); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgb(5,5,8);
  border-bottom: 1px solid rgba(255,45,120,0.15);
  transition: box-shadow var(--transition);
  /* Verhindert Layout-Shift wenn JS die Position korrigiert */
  will-change: top;
}
nav.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.7);
  border-color: rgba(255,45,120,0.28);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,45,120,.35));
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(255,45,120,.65));
  transform: scale(1.04);
}
.nav-logo span { display: none; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted);
  position: relative; padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--neon-pink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--neon-pink) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 9px 24px !important;
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
  font-weight: 700 !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { box-shadow: 0 0 24px rgba(255,45,120,.55) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 8100;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

/* Mobile Overlay – fullscreen, above everything */
.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,5,8,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999999; /* above everything including nav */
  padding: 100px 40px 48px;
  gap: 0;
  overflow-y: auto;
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  transition: color .2s, padding-left .2s;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  display: block;
}
.nav-mobile a:hover,
.nav-mobile a:active { color: var(--neon-pink); padding-left: 8px; }
.nav-mobile a:last-child { border-bottom: none; }

/* Close button */
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.nav-mobile-close:hover {
  background: rgba(255,45,120,0.2);
  border-color: var(--neon-pink);
  transform: rotate(90deg);
}

/* CTA link in mobile nav */
.nav-mobile-cta {
  color: var(--neon-pink) !important;
  font-weight: 700;
  border-bottom: none !important;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 15px 40px;
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), #c0185a);
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(255,45,120,.45); transform: translateY(-3px); }
.btn-secondary {
  border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  clip-path: none; padding: 13px 38px;
}
.btn-secondary:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); transform: translateY(-3px); }
.btn-outline-pink {
  border: 1.5px solid rgba(255,45,120,.5); color: var(--neon-pink);
  clip-path: none; padding: 13px 38px;
}
.btn-outline-pink:hover { background: rgba(255,45,120,.08); transform: translateY(-2px); }

/* ── SECTION LABELS ── */
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--neon-pink);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.label::before { content: ''; width: 28px; height: 1px; background: var(--neon-pink); }

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1; letter-spacing: .02em;
  margin-bottom: 24px;
}
.section-lead {
  font-size: 1.05rem; line-height: 1.8;
  color: #b8aed0; font-weight: 300;
}

/* ── TICKER ── */
.ticker {
  background: var(--neon-pink); padding: 11px 0;
  overflow: hidden; white-space: nowrap; position: relative; z-index: 10;
}
.ticker-track {
  display: inline-flex; animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', cursive; font-size: 1rem;
  letter-spacing: .1em; color: #fff; padding: 0 28px;
}
.ticker-sep { color: rgba(255,255,255,.45); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PAGE HEADER (subpages) ── */
.page-header {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 0 56px 80px;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  /* Eigener Stacking Context – explizit unter Nav halten */
  isolation: isolate;
}
.page-header-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.4) saturate(.8);
  transform: scale(1.08);
  transition: transform 6s ease;
  /* Verhindert dass das Bild in den Nav-Bereich „hineinleuchtet" */
  clip-path: inset(0);
}
.page-header:hover .page-header-bg { transform: scale(1.0); }
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,5,8,1) 0%, rgba(5,5,8,.5) 60%, rgba(5,5,8,.85) 100%);
}
.page-header-content { position: relative; z-index: 2; max-width: 800px; }
.page-header h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 9vw, 120px);
  line-height: .95; letter-spacing: .02em;
  margin-bottom: 16px;
}
.page-header h1 em { font-style: normal; color: var(--neon-pink); }
.page-header p { font-size: 1.05rem; color: #b8aed0; font-weight: 300; max-width: 540px; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
  display: flex; gap: 12px; align-items: center;
}
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ── PARALLAX BANDS ── */
.parallax-band {
  height: 420px; position: relative;
  background-attachment: fixed;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-band-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,8,.65);
}
.parallax-band-text {
  position: relative; z-index: 2; text-align: center; padding: 0 40px;
}
.parallax-quote {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px,5.5vw,72px);
  line-height: 1.1; letter-spacing: .04em;
  color: #fff; text-shadow: 0 0 60px rgba(255,45,120,.35);
}
.parallax-quote em { font-style: normal; color: var(--neon-pink); }

/* ── GRID SYSTEM ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 56px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── SECTION SPACING ── */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-dark { background: var(--deep-black); }
.section-darker { background: var(--dark-purple); }
.section-mid { background: var(--mid-dark); }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,45,120,.5); }

/* ── HERO (index) ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,45,120,.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(0,245,255,.1)   0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(255,224,0,.06)  0%, transparent 50%),
    var(--deep-black);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,45,120,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,120,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(32deg) scale(1.5);
  transform-origin: 50% 100%;
  animation: gridPulse 9s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,100% { opacity: .35; }
  50%      { opacity: .8; }
}

/* Vinyl decorations */
.vinyl {
  position: absolute; border-radius: 50%;
  animation: floatVinyl 7s ease-in-out infinite; pointer-events: none;
}
.vinyl::before {
  content: ''; position: absolute; inset: 18%; border-radius: 50%;
  background: rgba(255,45,120,.25);
  border: 1px solid rgba(255,45,120,.3);
}
.vinyl::after {
  content: ''; position: absolute; inset: 44%; border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 18px var(--neon-pink), 0 0 40px rgba(255,45,120,.4);
}
.vinyl-grooves {
  position: absolute; inset: 0; border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%,
    transparent 30%, rgba(255,255,255,.02) 31%,
    rgba(255,255,255,.02) 32%, transparent 33%);
}
.vinyl-a {
  width: 240px; height: 240px; top: 12%; right: 7%;
  background: radial-gradient(circle, #18122b, #0a0614);
  border: 2px solid rgba(255,45,120,.25);
  box-shadow: 0 0 80px rgba(255,45,120,.18);
  animation-delay: 0s;
}
.vinyl-b {
  width: 150px; height: 150px; top: 58%; left: 4%;
  background: radial-gradient(circle, #091b1b, #050508);
  border: 1px solid rgba(0,245,255,.25);
  box-shadow: 0 0 50px rgba(0,245,255,.12);
  animation-delay: -3.5s;
}
.vinyl-c {
  width: 90px; height: 90px; top: 28%; left: 14%;
  background: radial-gradient(circle, #1a1600, #050508);
  border: 1px solid rgba(255,224,0,.3);
  animation-delay: -1.8s;
}
@keyframes floatVinyl {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-24px) rotate(130deg); }
  66%      { transform: translateY(12px) rotate(260deg); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,245,255,.35);
  padding: 7px 22px; margin-bottom: 36px;
  animation: fadein .8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(80px,13vw,172px);
  line-height: .9; letter-spacing: .02em;
  margin-bottom: 16px;
  animation: fadein .9s .1s ease both;
}
.hero-title .t1 { display: block; color: #fff; text-shadow: 0 0 40px rgba(255,255,255,.12); }
.hero-title .t2 {
  display: block;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow), var(--neon-cyan), var(--neon-pink));
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 22px rgba(255,45,120,.6));
  animation: gradShift 5s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(15px, 2.5vw, 24px);
  font-weight: 300; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 44px;
  animation: fadein .9s .2s ease both;
}

.decade-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadein .9s .3s ease both;
}
.decade-pill {
  font-family: 'Black Ops One', cursive; font-size: 1rem;
  padding: 7px 20px; border: 1px solid; cursor: pointer;
  transition: all .3s;
}
.decade-pill:nth-child(1) { color: var(--neon-pink);   border-color: rgba(255,45,120,.45); }
.decade-pill:nth-child(2) { color: var(--neon-yellow);  border-color: rgba(255,224,0,.45); }
.decade-pill:nth-child(3) { color: var(--neon-cyan);    border-color: rgba(0,245,255,.45); }
.decade-pill:nth-child(4) { color: var(--neon-purple);  border-color: rgba(167,139,250,.45); }
.decade-pill:nth-child(5) { color: var(--neon-green);   border-color: rgba(74,222,128,.45); }
.decade-pill:hover { background: rgba(255,255,255,.05); transform: translateY(-3px); }

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadein .9s .4s ease both; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); } }

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

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-purple);
  border-top: 1px solid rgba(255,45,120,.15);
  border-bottom: 1px solid rgba(255,45,120,.15);
  padding: 40px 0;
}
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', cursive; font-size: 3.2rem;
  color: var(--neon-pink); line-height: 1;
  text-shadow: 0 0 20px rgba(255,45,120,.4);
}
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px;
}

/* ── ABOUT SECTION ── */
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.08); }
.about-img-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,45,120,.18), transparent 60%);
}
.about-img-frame::after {
  content: ''; position: absolute; inset: -2px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  pointer-events: none;
}
.about-stat-box {
  position: absolute;
  background: var(--deep-black); border: 1px solid rgba(255,45,120,.3);
  padding: 18px 22px; z-index: 3;
}
.about-stat-box.bottom-right { bottom: -18px; right: -18px; }
.about-stat-box.top-left { top: 36px; left: -28px; }
.about-stat-box .num { font-family: 'Bebas Neue', cursive; font-size: 2.8rem; color: var(--neon-pink); line-height: 1; }
.about-stat-box .lbl { font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }

.about-body p { font-size: 1rem; line-height: 1.85; color: #b8aed0; font-weight: 300; margin-bottom: 18px; }
.about-body p strong { color: var(--text-light); font-weight: 600; }

.skill-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
.skill-chip {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
}
.skill-chip::before { content: '▶'; color: var(--neon-pink); font-size: .45rem; }

/* ── DECADES H-SCROLL ── */
.decades-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.h-scroll-wrap {
  overflow-x: auto; padding: 0 56px 72px;
  scrollbar-width: thin; scrollbar-color: var(--neon-pink) transparent; cursor: grab;
}
.h-scroll-wrap::-webkit-scrollbar { height: 3px; }
.h-scroll-wrap::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 2px; }
.h-scroll-track { display: flex; gap: 22px; min-width: max-content; }

.decade-card {
  width: 310px; flex-shrink: 0;
  background: var(--card-bg); border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.decade-card:hover { transform: translateY(-10px); border-color: rgba(255,45,120,.65); }
.decade-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity .3s; }
.decade-card:hover .decade-card-accent { opacity: 1; }
.dc-1 .decade-card-accent { background: linear-gradient(90deg, #ff2d78, #ff8c00); }
.dc-2 .decade-card-accent { background: linear-gradient(90deg, #ffe000, #ff6b6b); }
.dc-3 .decade-card-accent { background: linear-gradient(90deg, #00f5ff, #a78bfa); }
.dc-4 .decade-card-accent { background: linear-gradient(90deg, #a78bfa, #06b6d4); }
.dc-5 .decade-card-accent { background: linear-gradient(90deg, #4ade80, #00f5ff); }

.decade-card img {
  width: 100%; height: 196px; object-fit: cover;
  filter: saturate(.7); transition: filter .4s, transform .4s;
}
.decade-card:hover img { filter: saturate(1.25); transform: scale(1.04); }
.decade-card-body { padding: 26px; }
.decade-ghost {
  position: absolute; top: -4px; right: 12px;
  font-family: 'Bebas Neue', cursive; font-size: 4.5rem; line-height: 1;
  color: var(--neon-pink); opacity: .12; pointer-events: none;
  transition: opacity .3s;
}
.decade-card:hover .decade-ghost { opacity: .28; }
.decade-card-title { font-family: 'Black Ops One', cursive; font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.decade-card-desc { font-size: .84rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; }
.hit-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.hit-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border: 1px solid rgba(255,255,255,.14); color: var(--text-muted);
}

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.05);
  padding: 44px 32px; position: relative; overflow: hidden;
  transition: background .3s; transform-style: preserve-3d;
  transform: perspective(1000px);
}
.svc-card:hover { background: rgba(255,45,120,.05); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--neon-pink); transition: width .4s;
}
.svc-card:hover::after { width: 100%; }
.svc-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.svc-title { font-family: 'Bebas Neue', cursive; font-size: 1.75rem; letter-spacing: .04em; color: #fff; margin-bottom: 12px; }
.svc-desc { font-size: .88rem; line-height: 1.75; color: var(--text-muted); }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--neon-pink);
  transition: gap .2s;
}
.svc-link:hover { gap: 14px; }

/* ── WEDDING ── */
.wedding-photos {
  display: grid; grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr; gap: 10px; height: 580px;
}
.w-photo { overflow: hidden; position: relative; }
.w-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: saturate(.85); }
.w-photo:hover img { transform: scale(1.06); }
.w-photo-main { grid-row: span 2; }
.w-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(255,45,120,.12));
  pointer-events: none;
}

.wedding-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-left: 2px solid rgba(255,45,120,.35);
  background: rgba(255,45,120,.03);
  margin-bottom: 14px;
  transition: border-color .3s, background .3s;
}
.wedding-feature:hover { border-color: var(--neon-pink); background: rgba(255,45,120,.07); }
.wf-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 2px; }
.wf-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: .92rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 4px;
}
.wf-text { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ── EQUIPMENT ── */
.eq-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; }
.eq-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.05);
  padding: 36px 26px; text-align: center; transition: all .3s;
}
.eq-card:hover {
  background: rgba(0,245,255,.05); border-color: rgba(0,245,255,.3);
  transform: translateY(-5px);
}
.eq-icon { font-size: 2.4rem; margin-bottom: 16px; }
.eq-title { font-family: 'Bebas Neue', cursive; font-size: 1.15rem; color: var(--neon-cyan); margin-bottom: 8px; }
.eq-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.65; }

/* ── GALLERY ── */
/* ── GALLERY ── */
/* Kategorie-Tabs */
.gallery-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.gallery-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text-muted);
  background: none; cursor: pointer;
  transition: all .25s;
}
.gallery-tab:hover { border-color: rgba(255,45,120,.4); color: #fff; }
.gallery-tab.active {
  background: var(--neon-pink); border-color: var(--neon-pink);
  color: #fff;
}

/* Kategorie-Blöcke */
.gallery-cat { display: none; }
.gallery-cat.active { display: block; }

/* Einheitliches Grid – 4 Spalten, alle gleich */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}

/* Alle nth-child Spans zurücksetzen */
.gallery-grid .g-item:nth-child(n) {
  grid-row: auto;
  grid-column: auto;
}

/* Jedes Item füllt seine Zelle komplett */
.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--mid-dark);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.75) brightness(.88);
  display: block;
}
.g-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(1.0);
}
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(5,5,8,.65));
  pointer-events: none;
}
.g-overlay {
  position: absolute; bottom: 12px; left: 14px; right: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  opacity: 0; transform: translateY(5px); transition: all .3s;
}
.g-item:hover .g-overlay { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 99000;
  background: rgba(5,5,8,.96); backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  font-size: 1.6rem; color: var(--text-muted);
  cursor: pointer; padding: 8px; transition: color .2s;
  background: none; border: none; line-height: 1;
}
.lightbox-close:hover { color: var(--neon-pink); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.2rem; color: var(--text-muted);
  cursor: pointer; padding: 16px 20px; transition: color .2s;
  background: rgba(5,5,8,.4); border: none; line-height: 1;
  user-select: none;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--neon-pink); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; letter-spacing: .18em; color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 8500;
  background: rgba(5,5,8,.95); backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Bebas Neue', cursive; font-size: 2rem;
  color: var(--text-muted); cursor: pointer; padding: 8px;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--neon-pink); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: var(--text-muted); cursor: pointer;
  padding: 16px; transition: color .2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--neon-pink); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.07);
  padding: 36px; position: relative; transition: transform .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(255,45,120,.3); }
.testi-quote-mark {
  font-family: 'Black Ops One', cursive; font-size: 5rem; line-height: 1;
  color: var(--neon-pink); opacity: .18; position: absolute; top: 12px; left: 24px;
  pointer-events: none;
}
.stars { color: var(--neon-yellow); font-size: .78rem; margin-bottom: 14px; }
.testi-text { font-size: .9rem; line-height: 1.8; color: #c0b8d8; font-style: italic; margin-bottom: 26px; padding-top: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive; font-size: 1rem; color: #fff;
}
.author-name { font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.author-event { font-size: .72rem; color: var(--text-muted); }

/* ── AREAS ── */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-chip {
  font-family: 'Barlow Condensed', sans-serif; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,.12); color: var(--text-muted);
  transition: all .3s; cursor: default;
}
.area-chip:hover, .area-chip.active { border-color: var(--neon-pink); color: var(--neon-pink); background: rgba(255,45,120,.05); }

/* ── CONTACT ── */
.contact-form-box {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.07);
  padding: 52px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px;
}
/* Checkbox-Labels brauchen flex, kein block */
.form-group label.checkbox-label,
.form-group label:has(input[type="checkbox"]) {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: .82rem; letter-spacing: 0;
  text-transform: none; line-height: 1.6; margin-bottom: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); color: #fff;
  padding: 12px 16px; font-family: 'Barlow', sans-serif; font-size: .9rem;
  transition: border-color var(--transition); outline: none; appearance: none;
}
/* Checkboxes und Radios: NICHT übersteuern */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 2px;
  appearance: auto; -webkit-appearance: auto;
  background: none; border: none; padding: 0;
  accent-color: var(--neon-pink);
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--neon-pink); }
.form-group textarea { height: 130px; resize: vertical; }
.form-group select option { background: var(--dark-purple); }
.form-submit {
  width: 100%; margin-top: 8px;
  background: linear-gradient(135deg, var(--neon-pink), #c0185a);
  color: #fff; padding: 16px 48px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
  cursor: pointer; transition: all .3s;
}
.form-submit:hover { box-shadow: 0 8px 32px rgba(255,45,120,.45); transform: translateY(-2px); }
.form-note { font-size: .76rem; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
.form-note a { color: var(--neon-pink); }

.contact-info p { font-size: 1rem; line-height: 1.85; color: #b8aed0; margin: 18px 0 36px; }
.cinfo-list { display: flex; flex-direction: column; gap: 18px; }
.cinfo-item { display: flex; align-items: center; gap: 16px; font-size: .92rem; }
.cinfo-icon {
  width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(255,45,120,.1); border: 1px solid rgba(255,45,120,.3); font-size: 1.05rem;
}
.cinfo-item a { color: var(--text-light); transition: color .2s; }
.cinfo-item a:hover { color: var(--neon-pink); }

.form-success {
  display: none; text-align: center; padding: 48px 0;
}
.form-success .check {
  font-size: 3rem; margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--neon-green));
}
.form-success h3 { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: var(--neon-green); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: .92rem; }

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,.85);
  border-top: 1px solid rgba(255,45,120,.18);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.footer-logo {
  display: block; margin-bottom: 14px;
}
.footer-logo img {
  height: 48px; width: auto;
  filter: drop-shadow(0 0 8px rgba(255,45,120,.3));
}
.footer-brand p { font-size: .84rem; color: var(--text-muted); line-height: 1.75; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--text-muted); text-decoration: none;
  transition: all .3s;
}
.social-icon:hover { border-color: var(--neon-pink); color: var(--neon-pink); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: .84rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--neon-pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .74rem; color: var(--text-muted); }
.footer-bottom a { color: var(--neon-pink); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 8000;
  width: 44px; height: 44px;
  background: var(--neon-pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; clip-path: polygon(8px 0,100% 0,100% 100%,0 100%,0 8px);
  opacity: 0; transform: translateY(16px); transition: all .3s;
  cursor: pointer;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { box-shadow: 0 0 20px rgba(255,45,120,.5); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s, transform .7s; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s, transform .7s; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── PAGE-SPECIFIC: UEBER ── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--neon-pink), transparent); }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-dot {
  position: absolute; left: -38px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--neon-pink); box-shadow: 0 0 12px rgba(255,45,120,.6);
}
.tl-year { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; color: var(--neon-pink); margin-bottom: 4px; }
.tl-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.tl-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.value-card { padding: 36px 28px; border: 1px solid rgba(255,255,255,.08); text-align: center; transition: border-color .3s; }
.value-card:hover { border-color: rgba(255,45,120,.4); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.value-text { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* ── PAGE-SPECIFIC: TECHNIK ── */
.tech-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.tech-feature {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.07);
  padding: 32px; transition: border-color .3s, transform .3s;
}
.tech-feature:hover { border-color: rgba(0,245,255,.35); transform: translateY(-4px); }
.tech-feature-icon { font-size: 2rem; margin-bottom: 14px; }
.tech-feature-title { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--neon-cyan); margin-bottom: 10px; }
.tech-feature-text { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }
.tech-spec-list { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.tech-spec-list li { font-size: .78rem; color: var(--text-muted); display: flex; gap: 8px; }
.tech-spec-list li::before { content: '–'; color: var(--neon-cyan); }

.price-box {
  background: linear-gradient(135deg, rgba(255,45,120,.08), rgba(0,245,255,.05));
  border: 1px solid rgba(255,45,120,.25);
  padding: 40px; text-align: center;
}
.price-box h3 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; margin-bottom: 12px; }
.price-box p { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }

/* ── PAGE-SPECIFIC: HOCHZEIT ── */
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.package-card {
  border: 1px solid rgba(255,255,255,.1); padding: 40px 32px; position: relative;
  transition: border-color .3s, transform .3s;
}
.package-card:hover { border-color: rgba(255,45,120,.5); transform: translateY(-6px); }
.package-card.featured {
  border-color: var(--neon-pink);
  background: rgba(255,45,120,.05);
}
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--neon-pink); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase; padding: 4px 20px;
}
.package-name { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: #fff; margin-bottom: 8px; }
.package-price {
  font-family: 'Bebas Neue', cursive; font-size: 3rem; color: var(--neon-pink);
  line-height: 1; margin-bottom: 4px;
}
.package-price-note { font-size: .76rem; color: var(--text-muted); margin-bottom: 28px; }
.package-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.package-feature { display: flex; gap: 10px; font-size: .86rem; color: #b8aed0; }
.package-feature::before { content: '✓'; color: var(--neon-green); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --nav-h: 68px; }
  nav { padding: 0 28px; }
  .nav-menu { gap: 18px; }
  .container { padding: 0 32px; }
  .h-scroll-wrap { padding: 0 32px 60px; }
  .grid-2 { gap: 48px; }
  .grid-3, .svc-grid, .testi-grid, .package-grid, .value-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .eq-grid, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .wedding-photos { height: 460px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .page-header { padding: 0 24px 60px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .svc-grid, .testi-grid, .value-grid, .tech-feature-grid { grid-template-columns: 1fr; }
  .eq-grid, .grid-4, .package-grid { grid-template-columns: 1fr; }
/* removed old gallery span rule */
  .h-scroll-wrap { padding: 0 24px 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stat-box.top-left { left: 0; }
  .contact-form-box { padding: 28px 20px; }
  .skill-chips { grid-template-columns: 1fr; }
  .decades-head { flex-direction: column; gap: 20px; align-items: flex-start; }
  .wedding-photos { grid-template-columns: 1fr; height: auto; }
  .w-photo-main { grid-row: auto; }
  .w-photo { height: 240px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(56px, 18vw, 80px); }
  .decade-pills { gap: 6px; }
  .decade-pill { font-size: .85rem; padding: 5px 14px; }
/* removed old gallery span rule */
  .back-top { bottom: 20px; right: 20px; }
  nav { padding: 0 20px; }
}

/* ── TOUCH DEVICE OVERRIDES ── */
/* On touch/coarse-pointer devices: restore normal cursor so clicks work */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  .btn, a, button, .decade-pill, .area-chip, .g-item,
  .back-top, .lightbox-close, .lightbox-prev, .lightbox-next,
  .form-submit, .nav-burger { cursor: pointer; }
}

/* ── BUG FIXES ── */

/* 1. Parallax: background-attachment:fixed bricht auf iOS Safari – deaktivieren */
@media (max-width: 1024px), (pointer: coarse) {
  .parallax-band {
    background-attachment: scroll;
    background-size: cover;
  }
}

/* 2. Gallery: span-Regeln auf kleinen Viewports vollständig zurücksetzen */
@media (max-width: 768px) {
  .gallery-grid .g-item:nth-child(1),
  .gallery-grid .g-item:nth-child(4),
  .gallery-grid .g-item:nth-child(6) {
    grid-row: auto !important;
    grid-column: auto !important;
  }
}

/* 3. Select: Safari braucht explizites -webkit-appearance reset */
.form-group select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a7fa0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* 4. Input[type=date]: iOS zeigt ohne Styling Weißfläche */
input[type="date"] {
  color-scheme: dark;
  min-height: 44px;
}

/* 5. form-submit: Tipp-Bereich auf Mobile groß genug */
@media (max-width: 768px) {
  .form-submit { min-height: 52px; font-size: 1rem; }
}

/* 6. Nav-mobile: overflow-y für sehr kleine Geräte */
/* nav-mobile overflow already set in main definition above */

/* 7. Decade-card img: aspect-ratio statt fester Höhe verhindert Layout-Brüche */
@media (max-width: 480px) {
  .decade-card { width: 260px; }
  .decade-card img { height: 160px; }
}

/* 8. Hero-btns: wrapping auf sehr kleinen Displays */
@media (max-width: 380px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* 9. Scroll-cue: auf Mobile ausblenden (kein Platz) */
@media (max-width: 768px) {
  .scroll-cue { display: none; }
}

/* 10. stats-grid: kleinere Schrift auf sehr kleinen Screens */
@media (max-width: 420px) {
  .stat-num { font-size: 2.4rem; }
  .stats-grid { gap: 20px; }
}

/* 11. about-stat-box: kein overflow auf kleinen Screens */
@media (max-width: 480px) {
  .about-stat-box.top-left { top: 10px; left: 0; }
  .about-stat-box.bottom-right { bottom: 0; right: 0; }
}

/* 12. footer-grid: 1-spaltig ab 480px */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Logo responsive */
@media (max-width: 768px) {
  .nav-logo img { height: 36px; }
}
@media (max-width: 480px) {
  .nav-logo img { height: 30px; }
}

/* ── TECHNIKVERLEIH BESTELLFORMULAR ── */
.rental-category {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}
.rental-cat-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 28px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rental-cat-icon { font-size: 1.4rem; }
.rental-cat-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem; letter-spacing: .06em; color: #fff;
}
.rental-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rental-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.rental-table thead th {
  background: rgba(255,45,120,.08);
  color: var(--neon-pink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 14px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid rgba(255,45,120,.2);
}
.rental-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.rental-table tbody tr:hover { background: rgba(255,255,255,.03); }
.rental-table tbody tr.selected { background: rgba(255,45,120,.06); }
.rental-table td { padding: 12px 14px; font-size: .88rem; color: #b8aed0; vertical-align: middle; }
.col-name  { min-width: 220px; }
.col-price { text-align: right; white-space: nowrap; color: var(--text-muted); font-size: .82rem; }
.col-qty   { width: 80px; }
.col-zr    { width: 130px; }
.col-sum   { width: 90px; text-align: right; font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; }
.row-sum.active { color: var(--neon-pink); font-weight: 700; }

.qty-input {
  width: 64px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); color: #fff;
  padding: 6px 10px; font-size: .88rem; text-align: center;
  outline: none; transition: border-color .2s;
}
.qty-input:focus { border-color: var(--neon-pink); }
.zr-select {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); color: #fff;
  padding: 6px 10px; font-size: .82rem; outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s;
}
.zr-select:focus { border-color: var(--neon-pink); }

.rental-total {
  margin-top: 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(255,45,120,.1), rgba(0,245,255,.05));
  border: 1px solid rgba(255,45,120,.3);
}
.rental-total-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); flex: 1;
}
.rental-total-value {
  font-family: 'Bebas Neue', cursive; font-size: 2rem;
  color: var(--neon-pink); line-height: 1;
}
.rental-total-note {
  font-size: .72rem; color: var(--text-muted); width: 100%;
}

.rental-note {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(0,245,255,.04); border: 1px solid rgba(0,245,255,.15);
  font-size: .84rem; color: var(--text-muted); line-height: 1.6;
  display: flex; gap: 12px; align-items: flex-start;
}

.rental-contact-box {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,.07);
  padding: 40px;
}

@media (max-width: 768px) {
  .rental-table { min-width: 500px; }
  .col-name { min-width: 160px; font-size: .8rem; }
  .rental-contact-box { padding: 24px 16px; }
  .rental-total { flex-direction: column; gap: 8px; }
}

/* ── RENTAL FORM: CHECKBOX + DROPDOWN FIXES ── */

/* Checkbox Label */
.rental-check-label {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; line-height: 1.4;
}
.rental-check-label span { color: #b8aed0; font-size: .88rem; }
.rental-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--neon-pink);
  cursor: pointer;
}

/* Row checked state */
.rental-row.checked { background: rgba(255,45,120,.06) !important; }
.rental-row.checked .rental-check-label span { color: #fff; }

/* Dropdown – vollständig gestylt */
.zr-select {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
  padding: 8px 32px 8px 12px;
  font-size: .84rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a7fa0' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .2s, color .2s, background-color .2s;
  cursor: not-allowed;
  opacity: 0.5;
}
.zr-select:not([disabled]) {
  border-color: rgba(255,45,120,.4);
  color: #fff;
  background-color: rgba(255,45,120,.08);
  cursor: pointer;
  opacity: 1;
}
.zr-select:not([disabled]):focus {
  border-color: var(--neon-pink);
  outline: none;
}
.zr-select option {
  background: #12101f;
  color: #fff;
}

/* Tabelle ohne Menge-Spalte */
.col-zr { width: 160px; }
.col-sum { width: 100px; text-align: right; }

/* Galerie: Kategorien-Label spacing */
/* removed old gallery span rule */

/* Galerie nth-child span-Regeln für 3 Grids */
/* removed old gallery span rule */

/* Mobile: Galerie-Label reset */
@media (max-width: 768px) {
  /* gallery nth reset handled globally */
}

/* ── GALERIE RESPONSIVE ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-tabs { gap: 6px; }
  .gallery-tab { font-size: .68rem; padding: 7px 14px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 4px; }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed; bottom: 90px; right: 32px; z-index: 8000;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99998;
  background: rgba(13,10,26,.97);
  border-top: 1px solid rgba(255,45,120,.25);
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  font-size: .82rem; color: var(--text-muted); line-height: 1.6; flex: 1; min-width: 260px;
}
.cookie-text a { color: var(--neon-pink); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--neon-pink); color: #fff;
  border: none; padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: box-shadow .2s;
}
.cookie-accept:hover { box-shadow: 0 0 16px rgba(255,45,120,.45); }
.cookie-decline {
  background: none; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.15); padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: color .2s, border-color .2s;
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.35); }

@media (max-width: 768px) {
  .whatsapp-btn { bottom: 80px; right: 20px; }
  .cookie-banner { padding: 16px 20px; }
}
