/* ============================================================
   Gou'daken — Woonruimte maken
   Clean / Minimal / Modern
   ============================================================ */

@font-face {
  font-family: 'Kontora';
  src: url('../fonts/KontoraExtraBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kontora';
  src: url('../fonts/KontoraBlack.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kontora';
  src: url('../fonts/KontoraMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Material Design color tokens ───────────────────────── */
  --surface-container:          #f0eded;
  --inverse-surface:            #313030;
  --secondary:                  #b22a1c;
  --outline:                    #946e68;
  --on-surface:                 #1c1b1b;
  --on-primary-fixed:           #410000;
  --on-primary-container:       #fff7f5;
  --primary-fixed:              #ffdad4;
  --secondary-fixed-dim:        #ffb4a8;
  --on-secondary-fixed:         #410000;
  --surface-dim:                #dcd9d9;
  --primary-fixed-dim:          #ffb4a8;
  --tertiary-fixed:             #dae2ff;
  --surface-bright:             #fcf9f8;
  --on-tertiary-fixed:          #001847;
  --background:                 #ffffff;
  --tertiary-fixed-dim:         #b2c5ff;
  --on-secondary-container:     #650000;
  --surface-container-high:     #eae7e7;
  --on-background:              #1c1b1b;
  --on-tertiary:                #ffffff;
  --on-error:                   #ffffff;
  --on-tertiary-container:      #f8f7ff;
  --tertiary:                   #0051c6;
  --primary:                    #E60000;
  --error-container:            #ffdad6;
  --secondary-container:        #ff614d;
  --on-error-container:         #93000a;
  --surface-variant:            #e5e2e1;
  --on-tertiary-fixed-variant:  #0040a0;
  --tertiary-container:         #0068f9;
  --error:                      #ba1a1a;
  --outline-variant:            #e9bcb5;
  --surface-container-low:      #f6f3f2;
  --primary-container:          #c00000;
  --surface-tint:               #c00000;
  --on-primary-fixed-variant:   #930100;
  --inverse-on-surface:         #f3f0ef;
  --on-primary:                 #ffffff;
  --inverse-primary:            #ffb4a8;
  --surface:                    #fcf9f8;
  --surface-container-lowest:   #ffffff;
  --on-secondary:               #ffffff;
  --on-surface-variant:         #5f3f3a;
  --secondary-fixed:            #ffdad4;
  --surface-container-highest:  #e5e2e1;
  --on-secondary-fixed-variant: #900e06;

  /* ── Semantic aliases ────────────────────────────────────── */
  --clr-bg:       var(--background);
  --clr-surface:  var(--surface);
  --clr-accent:   var(--primary);
  --clr-text:     var(--on-background);
  --clr-muted:    var(--on-surface-variant);

  --font-display: 'Kontora', sans-serif;
  --font-body:    'Kontora', system-ui, -apple-system, sans-serif;
  --max-w:        72rem;
  --radius:       4px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero__title--brand {
  color: var(--primary);
}

.hero__title em {
  font-style: normal;
  color: #ffffff;
  -webkit-text-stroke: 2px #000000;
  text-stroke: 2px #000000;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--clr-muted);
  max-width: 42rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

/* ── Coming Soon badge ───────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(230, 0, 0, 0.08);
  border: 1px solid rgba(230, 0, 0, 0.30);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ── Scroll hint ─────────────────────────────────────────── */

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.scroll-hint__line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--clr-muted));
}

/* ── Flyer image ─────────────────────────────────────────── */

.hero__flyer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}

.hero__flyer img {
  display: block;
  max-width: min(420px, 100%);
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
}

/* ── Footer ──────────────────────────────────────────────── */

footer {
  margin-top: auto;
  padding: 2.5rem 2rem 1.5rem;
  background-color: #ecbaba;
  border-top: none;
  text-transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  color: #6b4840;
  letter-spacing: 0.08em;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  width: 100%;
  max-width: var(--max-w);
}

.footer__sponsor-banner {
  display: block;
  width: auto;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
}

/* ── Meta line ───────────────────────────────────────────── */

.footer__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── Animations ──────────────────────────────────────────── */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

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

@media (max-width: 600px) {
  .hero__content {
    padding: 3rem 1.5rem 4rem;
  }
  .footer__meta {
    flex-direction: column;
    text-align: center;
  }

  .footer__sponsor-banner { height: 130px; }
  .scroll-hint {
    display: none;
  }
}
