/* ============================================================
   variables.css — Alle kleuren, fonts en basis-instellingen
   
   Wil je iets aanpassen? Begin hier!
   ============================================================ */

:root {
  /* --- Kleuren --- */
  --bg:        #0a0c0f;       /* Achtergrond */
  --surface:   #111318;       /* Kaarten / panelen */
  --border:    #1e2229;       /* Randen */
  --accent:    #00e5ff;       /* Hoofdkleur (cyan) */
  --accent2:   #7b61ff;       /* Secundaire kleur (paars) */
  --text:      #e8eaf0;       /* Hoofdtekst */
  --muted:     #4a5060;       /* Subtekst / labels */

  /* --- Fonts --- */
  --font-mono:    'JetBrains Mono', monospace;  /* Broodtekst / UI */
  --font-display: 'Syne', sans-serif;           /* Grote koppen */

  /* --- Spacing --- */
  --page-padding: 2rem;       /* Ruimte aan de zijkanten */
  --bar-height:   56px;       /* Hoogte van header en footer */
}

/* ============================================================
   Reset & basis
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.75;
}

img {
  max-width: 100%;
  display: block;
}
