@import url('/variables.css');
@import url('/brand.css');

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

body {
  font-family: var(--font-ui);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 24px;
}

h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

p {
  color: var(--color-text-muted);
  font-size: 16px;
}

code {
  font-family: var(--font-code);
  background: var(--color-surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

/* ── Houdpagina ───────────────────────────────────────────────────────
   Tijdelijk, hoort bij de index.html die in fase 1 wordt vervangen.
   Accent is --cyan uit brand.css: gelijk aan Processen Slimmer, besluit
   van 12-09-2026 (OVERDRACHT.md §9 besluit 4).
   ──────────────────────────────────────────────────────────────────── */

main { max-width: 34rem; }

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 28px;
}

h1 {
  line-height: 1.2;
  font-size: clamp(24px, 5vw, 32px);
}

.contact {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
}

.contact a {
  color: var(--color-text);
  text-decoration-color: var(--cyan);
  text-underline-offset: 4px;
}

.contact a:hover { color: var(--cyan); }

.company {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
