:root {
  --red: #d7141a;
  --red-dark: #8f0e12;
  --black: #141414;
  --charcoal: #1e1e1e;
  --cream: #fdf6ec;
  --yellow: #ffc72c;
  --blue: #0057b8;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- hazard stripe divider ---------- */
.stripes-bar {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow),
    var(--yellow) 22px,
    var(--black) 22px,
    var(--black) 44px
  );
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at top, var(--red-dark) 0%, var(--black) 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.2) 0%, rgba(20,20,20,0.75) 100%);
}

.siren {
  position: absolute;
  top: -10%;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: spin-fade 4s ease-in-out infinite;
  pointer-events: none;
}
.siren-red { left: -20%; background: var(--red); animation-delay: 0s; }
.siren-blue { right: -20%; background: var(--blue); animation-delay: 2s; }

@keyframes spin-fade {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.45; }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 40px 20px;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--yellow);
  margin: 0 0 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}
.hero-title .highlight { color: var(--red); -webkit-text-stroke: 2px var(--cream); }

.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 34ch;
  margin: 14px auto 30px;
  color: rgba(253,246,236,0.85);
}

.date-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--black);
  padding: 10px 28px;
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  margin-bottom: 34px;
}
.date-badge-day {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--red);
}
.date-badge-date {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}
.date-badge-year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
}

.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.countdown-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 70px;
  backdrop-filter: blur(4px);
}
.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
}
.countdown-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(253,246,236,0.7);
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.85;
}
.scroll-cue-arrow {
  animation: bob 1.6s ease-in-out infinite;
  font-size: 1.3rem;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- intro ---------- */
.intro {
  padding: 80px 0;
  text-align: center;
}
.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 18px;
}
.intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
  color: #333;
}

/* ---------- section titles ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 8px;
}
.section-title span { color: var(--red); }
.section-sub {
  text-align: center;
  color: #555;
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ---------- programma / timeline ---------- */
.programma {
  padding: 90px 0;
  background: var(--black);
  color: var(--cream);
}
.programma .section-sub { color: rgba(253,246,236,0.65); }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, var(--yellow) 0 10px, transparent 10px 20px);
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-time {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  padding-top: 18px;
  padding-right: 24px;
  position: relative;
}
.timeline-time::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--yellow);
}

.timeline-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
}
.highlight-item .timeline-card {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 12px 30px rgba(215,20,26,0.15);
}
.timeline-photo {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}
.timeline-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}
.timeline-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.timeline-card p {
  margin: 0;
  color: rgba(253,246,236,0.7);
  line-height: 1.55;
  font-size: 0.95rem;
}
.timeline-meta {
  margin-top: 10px !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  color: var(--yellow) !important;
}
.timeline-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- checklist ---------- */
.mededelingen {
  padding: 90px 0;
  background: var(--cream);
}
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}
.check-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 4px solid var(--yellow);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.check-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}
.check-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.check-card p {
  margin: 0;
  color: #444;
  line-height: 1.55;
  font-size: 0.95rem;
}

.cta-panel {
  background: var(--red);
  color: var(--cream);
  border-radius: 16px;
  padding: 28px 30px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}
.cta-panel strong { color: var(--yellow); }

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 80px 0 50px;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/deweere.jpg");
  background-size: cover;
  background-position: center 65%;
  opacity: 0.75;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(20,20,20,0.35) 40%, var(--black) 100%);
}
.footer .wrap {
  position: relative;
  z-index: 2;
}
.footer-emoji { font-size: 2rem; margin: 0 0 10px; }
.footer h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin: 0 0 10px;
}
.footer-sub {
  color: rgba(253,246,236,0.7);
  margin-bottom: 34px;
}
.alarm-btn {
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.alarm-btn:hover { background: var(--red-dark); transform: scale(1.04); }
.alarm-btn:active { transform: scale(0.97); }
.alarm-btn:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

.footer-fine {
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(253,246,236,0.4);
}

/* ---------- alarm flash easter egg ---------- */
.alarm-flash {
  position: fixed;
  inset: 0;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.alarm-flash.active {
  animation: flash 0.9s steps(2, jump-none) 2;
}
@keyframes flash {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.55; }
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .siren, .scroll-cue-arrow { animation: none; }
}

@media (max-width: 560px) {
  .timeline { padding-left: 0; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 14px; }
  .timeline-time { font-size: 0.9rem; padding-top: 16px; padding-right: 16px; }
}
