/* ============================================================
   landing.css — alleen styles specifiek voor index.html
   Erft van css/app.css (moet eerst geladen worden).
   ============================================================ */


/* ── Page wrapper (breder dan standaard .screen) ──────────── */

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 32px 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page .topbar { margin-bottom: 64px; }


/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 32px;
}

.hero h1.title {
  font-size: clamp(44px, 7vw, 88px);
  margin: 0 0 28px;
}

.hero .lead {
  font-size: 17px;
  max-width: 48ch;
  margin: 0 0 36px;
}


/* Pulserende dot in de eyebrow */
.eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  animation: pulse 1.8s ease-in-out infinite;
  margin-left: 4px;
}


/* Hero-top: titel links, kaart rechts */
.hero-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}
.hero-text { min-width: 0; }
.hero-text h1.title { margin-bottom: 0; }

.hero-map {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow:
    0 24px 48px -24px rgba(21, 32, 27, .35),
    0 4px 12px -6px rgba(21, 32, 27, .15);
  background: var(--paper-warm);
  position: relative;
}
.hero-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.03);
}
.hero-map-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(21, 32, 27, .85);
  color: var(--surface);
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-map-tag svg { width: 9px; height: 9px; }


/* ── Kickoff (datum + countdown) ──────────────────────────── */

.kickoff {
  margin-top: 8px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--hairline);
  max-width: 720px;
}

.kickoff-date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kickoff-date::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--clay);
}
.kickoff-date strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .12em;
}


/* Countdown grid */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: baseline;
}
.cd-cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding: 0 8px;
}
.cd-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16%;
  bottom: 22%;
  width: 1px;
  background: var(--hairline);
}
.cd-num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-weight: 340;
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.cd-lab {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.countdown-done {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--serif);
  font-variation-settings: "opsz" 80, "SOFT" 80, "WONK" 1;
  font-style: italic;
  font-weight: 360;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--clay);
  letter-spacing: -.02em;
}


/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 820px) {
  .hero-top {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .hero-map {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }
}

@media (max-width: 620px) {
  .page { padding: 28px 20px 48px; }
  .cd-cell { padding: 0 4px; gap: 5px; }
  .cd-lab { font-size: 8.5px; letter-spacing: .15em; }
}
