/* ============================================================
   KITTY KATS — Event CSS
   ⑤ Kitty Kats · Das 5. Element · Eichenzell
   ============================================================ */

:root {
  --kk-pink:    #ff0066;
  --kk-rose:    #ff3399;
  --kk-dark:    #0a0005;
  --kk-surface: #110008;
  --kk-gold:    #c9a84c;
  --kk-white:   #ffffff;
  --kk-muted:   rgba(255,255,255,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--kk-dark);
  color: var(--kk-white);
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  overflow-x: hidden;
}

/* ── AGE GATE ──────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--kk-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.is-hidden { display: none; }
.age-gate__box {
  text-align: center; max-width: 380px; width: 100%;
}
.age-gate__logo { margin-bottom: 24px; }
.age-gate__badge {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 48px;
  color: var(--kk-pink);
  line-height: 1;
  margin-bottom: 16px;
}
.age-gate__heading {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.age-gate__text {
  font-size: 14px;
  color: var(--kk-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.age-gate__actions {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.age-gate__note {
  margin-top: 20px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--kk-pink);
  color: var(--kk-pink);
  padding: 14px 28px;
  cursor: pointer; background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn::after { content: '↗'; opacity: 0.6; }
.btn:hover { background: var(--kk-pink); color: #000; }
.btn--kk-filled {
  background: var(--kk-pink);
  color: #000;
  border-color: var(--kk-pink);
}
.btn--kk-filled:hover { background: var(--kk-rose); border-color: var(--kk-rose); }

/* ── TICKER ────────────────────────────────────────────── */
.ticker {
  background: var(--kk-pink);
  overflow: hidden; white-space: nowrap;
  height: 36px; display: flex; align-items: center;
  position: relative; z-index: 100;
}
.ticker__track {
  display: inline-flex; will-change: transform;
  animation: kk-ticker 28s linear infinite;
  gap: 0;
}
.ticker__item {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 14px; letter-spacing: 0.12em;
  color: #000;
  padding: 0 32px;
}
.ticker__sep { padding: 0 8px; opacity: 0.4; }
@keyframes kk-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVIGATION ────────────────────────────────────────── */
.kk-nav {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(to bottom, rgba(10,0,5,0.95), transparent);
}
.kk-nav__mark {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--kk-white);
}
.kk-nav__wordmark {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 18px; letter-spacing: 0.16em;
  color: var(--kk-pink);
}
.kk-nav__date {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--kk-muted);
}
.kk-nav__trigger {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--kk-white);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.kk-nav__trigger:hover { border-color: var(--kk-pink); color: var(--kk-pink); }

/* ── SLIDE-MENÜ ────────────────────────────────────────── */
.kk-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--kk-dark);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 64px 48px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.kk-menu.is-open {
  opacity: 1; pointer-events: auto; transform: none;
}
.kk-menu__close {
  position: absolute; top: 72px; right: 32px;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.kk-menu__close span {
  display: block; width: 28px; height: 1px;
  background: var(--kk-white);
  transition: transform 0.2s;
}
.kk-menu__close span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.kk-menu__close span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }
.kk-menu__link {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(36px, 6vw, 72px); letter-spacing: 0.06em;
  color: var(--kk-white); text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s;
  display: flex; align-items: baseline; gap: 20px;
}
.kk-menu__link:hover { color: var(--kk-pink); }
.kk-menu__num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--kk-pink); width: 28px;
}

/* ── INTRO ─────────────────────────────────────────────── */
.kk-intro {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center;
  background: var(--kk-dark);
}
.kk-intro__bg {
  position: absolute; inset: 0;
}
.kk-intro__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.kk-intro__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,0,5,0.45) 0%, rgba(10,0,5,0.15) 45%, rgba(10,0,5,0.65) 100%),
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(255,0,102,0.08) 0%, transparent 70%);
}
.kk-intro__content {
  position: relative; z-index: 2; padding: 32px;
}
.kk-intro__eyebrow {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kk-pink);
  margin-bottom: 20px;
  display: block;
}
.kk-intro__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.86; letter-spacing: 0.02em;
  color: var(--kk-white);
}
.kk-intro__title-accent {
  color: var(--kk-pink);
  display: block;
}
.kk-intro__meta {
  margin-top: 28px;
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: 16px;
  color: var(--kk-muted);
  line-height: 1.6;
}
.kk-intro__premiere {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 20px; letter-spacing: 0.1em;
  color: var(--kk-pink);
  display: block; margin-top: 8px;
}
.kk-intro__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.kk-intro__scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--kk-pink), transparent);
  animation: kk-scroll-line 2s ease-in-out infinite;
}
@keyframes kk-scroll-line {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}
.kk-intro__scroll-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── HERO NEXT DATE ────────────────────────────────────── */
.kk-hero {
  background: var(--kk-surface);
  border-top: 1px solid rgba(255,0,102,0.2);
  border-bottom: 1px solid rgba(255,0,102,0.2);
}
.kk-hero .container { padding-block: clamp(48px, 8vw, 96px); }
.kk-hero__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.kk-hero__kicker {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--kk-pink);
  display: block; margin-bottom: 8px;
}
.kk-hero__date-large {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9; color: var(--kk-white);
}
.kk-hero__date-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--kk-muted);
  margin-top: 12px;
}
.kk-hero__cta-stack {
  display: flex; flex-direction: column; gap: 12px;
}

/* ── KONZEPT ───────────────────────────────────────────── */
.kk-konzept { padding-block: clamp(64px, 10vw, 120px); }
.kk-konzept .container { max-width: 1200px; margin: 0 auto; padding-inline: 32px; }
.kk-konzept__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.kk-konzept__headline {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(56px, 8vw, 100px); line-height: 0.9;
  margin-bottom: 24px;
}
.kk-konzept__headline em { color: var(--kk-pink); font-style: normal; }
.kk-konzept__text { color: rgba(255,255,255,0.65); line-height: 1.6; font-size: 16px; }
.kk-konzept__text p + p { margin-top: 12px; }
.kk-konzept__features { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.kk-konzept__feature {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding-left: 20px; position: relative;
}
.kk-konzept__feature::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--kk-pink); font-size: 8px;
}

/* Visual Seite */
.kk-konzept__visual {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border: 1px solid rgba(255,0,102,0.2);
}
.kk-konzept__visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.kk-konzept__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,0,5,0.5), transparent 60%);
}

/* ── FULLBLEED MOMENT ──────────────────────────────────── */
.kk-moment {
  position: relative; height: clamp(280px, 45vw, 600px); overflow: hidden;
}
.kk-moment__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  filter: saturate(0.8) brightness(0.55);
}
.kk-moment__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,0,102,0.15) 0%, transparent 50%);
}
.kk-moment__line {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(28px, 5vw, 64px); letter-spacing: 0.08em;
  color: var(--kk-white); white-space: nowrap;
}

/* ── LINEUP / SHOW ─────────────────────────────────────── */
.kk-show { padding-block: clamp(64px, 10vw, 120px); background: var(--kk-surface); }
.kk-show .container { max-width: 1200px; margin: 0 auto; padding-inline: 32px; }
.kk-show__headline {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(48px, 7vw, 88px); text-align: center; margin-bottom: 48px;
}
.kk-show__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  height: clamp(280px, 45vw, 520px); margin-bottom: 48px;
}
.kk-show__img { overflow: hidden; }
.kk-show__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  transition: transform 0.6s ease;
}
.kk-show__img:hover img { transform: scale(1.06); }

.kk-show__tba {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(255,0,102,0.15);
  padding-top: 32px; text-align: center;
}
.kk-show__tba-label {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(20px, 3vw, 32px);
  color: rgba(255,255,255,0.25);
}
.kk-show__tba-follow {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: 15px; color: var(--kk-muted); line-height: 1.5;
}
.kk-show__tba-follow a { color: var(--kk-pink); text-decoration: none; }
.kk-show__tba-follow a:hover { text-decoration: underline; }

/* ── TERMINE ───────────────────────────────────────────── */
.kk-dates { padding-block: clamp(64px, 10vw, 120px); }
.kk-dates .container { max-width: 900px; margin: 0 auto; padding-inline: 32px; }
.kk-dates__headline {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 48px;
}
.kk-dates__year {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--kk-muted);
  margin-bottom: 16px; display: block;
}
.kk-date-row {
  display: grid; grid-template-columns: 80px 40px 1fr auto;
  align-items: center; gap: 16px 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kk-date-row__date {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(28px, 4vw, 44px); color: var(--kk-white); line-height: 1;
}
.kk-date-row__day {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--kk-muted);
}
.kk-date-row__label {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: 15px; color: rgba(255,255,255,0.6);
}
.kk-date-row__badge {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--kk-pink); color: var(--kk-pink);
  padding: 4px 10px;
}
.kk-date-row--premiere .kk-date-row__date { color: var(--kk-pink); }

/* ── WALLET ────────────────────────────────────────────── */
.kk-wallet { background: var(--kk-surface); padding-block: clamp(64px, 10vw, 120px); }
.kk-wallet .container { max-width: 900px; margin: 0 auto; padding-inline: 32px; }
.kk-wallet__headline {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(64px, 10vw, 130px); line-height: 0.88; margin-bottom: 24px;
}
.kk-wallet__free {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(40px, 6vw, 80px); color: var(--kk-pink); display: block; margin-bottom: 24px;
}
.kk-wallet__explainer {
  font-size: 16px; color: var(--kk-muted); line-height: 1.7; max-width: 600px;
}

/* ── ANFAHRT ───────────────────────────────────────────── */
.kk-route { padding-block: clamp(64px, 10vw, 120px); }
.kk-route .container { max-width: 900px; margin: 0 auto; padding-inline: 32px; }
.kk-route__line {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; color: var(--kk-muted);
}
.kk-route__track {
  flex: 1; height: 1px; background: rgba(255,0,102,0.3);
  position: relative;
}
.kk-route__dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 8px; height: 8px;
  background: var(--kk-pink); border-radius: 50%;
}
.kk-route__address {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8;
  font-style: normal; margin-bottom: 24px;
}
.kk-route__facts {
  list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px;
}
.kk-route__facts li {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--kk-muted); padding-left: 18px; position: relative;
}
.kk-route__facts li::before { content: '·'; position: absolute; left: 0; color: var(--kk-pink); }

/* ── FINAL CTA ─────────────────────────────────────────── */
.kk-final {
  position: relative; overflow: hidden;
  text-align: center;
  padding-block: clamp(80px, 14vw, 160px);
}
.kk-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,0,102,0.14) 0%, transparent 70%);
}
.kk-final .container { position: relative; z-index: 1; }
.kk-final__mark { width: 60px; margin-bottom: 24px; opacity: 0.5; }
.kk-final__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(72px, 14vw, 180px); line-height: 0.86; margin-bottom: 16px;
}
.kk-final__subtitle {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kk-pink); margin-bottom: 12px;
}
.kk-final__date {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--kk-muted); margin-bottom: 40px;
}
.kk-final__ctas {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* ── EYEBROW ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kk-pink); margin-bottom: 12px; display: block;
}
.mono {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.container { max-width: 1200px; margin: 0 auto; padding-inline: clamp(20px, 4vw, 48px); }
.section { padding-block: clamp(64px, 10vw, 120px); }

/* ── FLOAT WA ──────────────────────────────────────────── */
.kk-float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 80;
  width: 52px; height: 52px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.kk-float-wa:hover { transform: scale(1.08); }

/* ── REVEAL ────────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(24px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
  opacity: 1; transform: none;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .kk-nav { padding: 16px 20px; }
  .kk-konzept__grid { grid-template-columns: 1fr; }
  .kk-konzept__visual { aspect-ratio: 4/3; }
  .kk-show__grid { grid-template-columns: 1fr 1fr; }
  .kk-show__grid .kk-show__img:last-child { display: none; }
  .kk-date-row { grid-template-columns: 70px 1fr; }
  .kk-date-row__day { display: none; }
  .kk-hero__inner { flex-direction: column; align-items: flex-start; }
  .kk-menu { padding: 80px 28px 40px; }
}

/* ── IMAGE STRIP ───────────────────────────────────────── */
.kk-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: clamp(240px,38vw,500px);
  overflow: hidden;
}
.kk-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
@media (max-width: 480px) {
  .kk-strip { grid-template-columns: 1fr; height: clamp(200px,60vw,340px); }
  .kk-strip img:last-child { display: none; }
}
