/* ============================================================
   CSS Custom Properties — werden via Airtable-Farbfelder überschrieben
   ============================================================ */
:root {
  --color-primary:    #0D2B2B;
  --color-secondary:  #00C9A7;
  --color-text:       #F0F0F0;
  --color-background: #0A1F1F;

  /* Display = großer Artist-Name (Archivo, lowercase mit Gewicht-Kontrast)
     Body    = Topbar, Labels, Buttons (Space Mono). Leicht austauschbar. */
  --font-display: 'Archivo', 'Arial Narrow', Helvetica, sans-serif;
  --font-body:    'Space Mono', 'SFMono-Regular', Menlo, monospace;

  --spacing-base: 8px;
  --border-radius: 2px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-background);
  font-family: var(--font-body);
  color: var(--color-text);
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-secondary);
  color: var(--color-primary);
}

[hidden] { display: none !important; }

/* ============================================================
   Hero — Full-Bleed 100vw × 100vh
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-bg { object-position: center 30%; }
}

/* ============================================================
   Overlays — grain · scanlines · teal wash · bottom gradient
   ============================================================ */
.hero-grain,
.hero-scanlines,
.hero-wash,
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Fine film grain */
.hero-grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.28;
}

/* CRT scanlines — subtiler Cyberpunk-Einschlag */
.hero-scanlines {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.10) 3px,
    rgba(0,0,0,0) 4px
  );
  opacity: 0.5;
}

/* Kalter Teal-Wash, hält das Bild im Farbschema */
.hero-wash {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(0,201,167,0.10) 0%, rgba(0,201,167,0) 55%),
    linear-gradient(180deg, rgba(13,43,43,0.30) 0%, rgba(10,31,31,0.12) 40%, rgba(10,31,31,0.45) 100%);
  mix-blend-mode: multiply;
}

/* Unterer Verlauf für Lesbarkeit */
.hero-gradient {
  top: auto;
  height: 70%;
  background: linear-gradient(
    to bottom,
    rgba(10,31,31,0) 0%,
    rgba(10,31,31,0.30) 35%,
    rgba(10,31,31,0.82) 78%,
    rgba(10,31,31,0.96) 100%
  );
}

@media (min-width: 768px) {
  .hero-gradient { height: 60%; }
}

/* ============================================================
   Top bar
   ============================================================ */
.hero-topbar {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-topbar {
    top: 32px;
    left: 48px;
    right: 48px;
  }
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .wordmark { font-size: 13px; letter-spacing: 0.34em; }
}

/* AIRTABLE: logo — ersetzt Text-Wordmark wenn vorhanden */
.wordmark-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .topbar-meta { font-size: 12px; letter-spacing: 0.26em; }
}

.tb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 8px var(--color-secondary), 0 0 2px var(--color-secondary);
  flex-shrink: 0;
}

.tb-state { color: var(--color-secondary); font-weight: 700; }

/* ============================================================
   Center zone — gemeinsame Positionierung
   ============================================================ */
.title-zone,
.artist-zone,
.event-zone {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 20px;
  z-index: 3;
}

@media (min-width: 768px) {
  .title-zone,
  .artist-zone,
  .event-zone { padding: 0 48px; }
}

/* ---- Title zone (save_the_date, out_now) ---- */
.title-zone {
  top: 26%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .title-zone { top: 24%; }
}

.title-lockup-img {
  width: 100%;
  max-width: 100%;
  max-height: 55vh;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .title-lockup-img { max-height: 50vh; }
}

.title-fallback {
  text-align: center;
  width: 100%;
  color: var(--color-text);
}

.supertitle {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .supertitle { font-size: 12px; margin-bottom: 20px; }
}

.title-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-shadow: 0 2px 40px rgba(10,31,31,0.5);
}

@media (min-width: 768px) {
  .title-text { font-size: 168px; }
}

.release-date {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .release-date { font-size: 13px; margin-top: 22px; }
}

/* ---- Artist zone (explore) ---- */
.artist-zone {
  top: 22%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .artist-zone { top: 34%; gap: 10px; padding: 0 48px; }
}

.artist-meta {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.82;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .artist-meta { font-size: 12px; letter-spacing: 0.3em; }
}

.artist-meta-chevron {
  color: var(--color-secondary);
  font-size: 1.3em;
  line-height: 1;
}

.artist-name {
  margin: 0;
  font-family: var(--font-display);
  text-transform: lowercase;
  color: var(--color-text);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 60px rgba(10,31,31,0.45);
  display: flex;
  flex-direction: column;
}

.an-first {
  font-weight: 500;
  font-size: clamp(42px, 12.5vw, 150px);
}

.an-last {
  font-weight: 900;
  font-size: clamp(46px, 13.5vw, 220px);
  letter-spacing: -0.03em;
}

/* ---- Event zone (event) ---- */
.event-zone {
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 768px) {
  .event-zone { top: 32%; gap: 18px; }
}

.event-kicker {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .event-kicker { font-size: 12px; }
}

.event-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--color-text);
  text-shadow: 0 2px 40px rgba(10,31,31,0.5);
}

@media (min-width: 768px) {
  .event-title { font-size: 132px; }
}

.event-date-display {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .event-date-display { font-size: 15px; }
}

/* ============================================================
   Bottom zone
   ============================================================ */
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 4;
}

@media (min-width: 768px) {
  .hero-bottom { padding: 0 48px 30px; gap: 26px; }
}

/* ---- Lead row: countdown + CTA + quote ---- */
.hero-lead {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .hero-lead {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}

.lead-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.countdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.countdown-units {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

@media (min-width: 768px) {
  .countdown-units { gap: 22px; }
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.countdown-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .countdown-val { font-size: 60px; }
}

.countdown-lbl {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
}

.countdown-sep {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-secondary);
  opacity: 0.5;
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .countdown-sep { font-size: 46px; }
}

/* Quote — Desktop only */
.hero-quote { display: none; }

@media (min-width: 768px) {
  .hero-quote {
    display: block;
    max-width: 320px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.8;
    text-align: right;
  }
}

/* ============================================================
   Footer grid — LISTEN ON · FOLLOW · STAY CLOSE
   ============================================================ */
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(240,240,240,0.12);
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-stay { flex: 1; max-width: 420px; }

@media (min-width: 768px) {
  .footer-col-stay { margin-left: auto; }
}

.footer-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.55;
}

/* ---- Streaming pills ---- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(240,240,240,0.22);
  border-radius: var(--border-radius);
  background: rgba(0,201,167,0.04);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.pill:hover {
  border-color: var(--color-secondary);
  background: rgba(0,201,167,0.10);
  color: var(--color-secondary);
}

.pill-icon { width: 16px; height: 16px; flex-shrink: 0; }
.pill-arrow { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.6; }
.pill-label { white-space: nowrap; }

/* ---- Social icons ---- */
.social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text);
  border: 1px solid rgba(240,240,240,0.22);
  border-radius: var(--border-radius);
  background: rgba(0,201,167,0.04);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.social-icon:hover {
  border-color: var(--color-secondary);
  background: rgba(0,201,167,0.10);
  color: var(--color-secondary);
}

.social-icon svg { width: 18px; height: 18px; }

/* ---- Mailing list button ---- */
.btn-mailing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px;
  border: 1px solid var(--color-secondary);
  border-radius: var(--border-radius);
  background: transparent;
  color: var(--color-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease;
}

.btn-mailing:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-mailing .btn-arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Primary CTA (presave / listen / ticket) ---- */
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.16s ease;
  box-shadow: 0 0 28px -6px rgba(0,201,167,0.5);
}

.btn-cta:hover { opacity: 0.88; }
.btn-cta .btn-arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   Footer baseline — copyright + booking
   ============================================================ */
.footer-baseline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (min-width: 768px) {
  .footer-baseline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
  }
}

.footer-booking {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-booking:hover { color: var(--color-secondary); }

/* ============================================================
   Below-hero section (YouTube embed — out_now)
   ============================================================ */
.below-hero {
  background: var(--color-background);
  padding: 48px 20px 64px;
}

@media (min-width: 768px) {
  .below-hero { padding: 80px 120px 100px; }
}

.youtube-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--border-radius);
  display: block;
}
