/* ==========================================================================
   Max's Notes — Design System
   NOOIT aanpassen zonder expliciete instructie van de gebruiker.
   ========================================================================== */

:root {
  /* Colors — Primary */
  --color-primary: #0B1D3A;
  --color-primary-light: #132D5E;

  /* Colors — Accent */
  --color-accent: #2ECC71;
  --color-accent-hover: #27AE60;

  /* Colors — Background */
  --color-bg: #FFFFFF;
  --color-bg-alt: #EBF2FB;

  /* Colors — Text */
  --color-text: #1A1A2E;
  --color-text-light: #6B7280;

  /* Colors — Border */
  --color-border: #E5E7EB;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 20px;
  --font-size-xl: 28px;
  --font-size-2xl: 36px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 64px;

  /* Layout */
  --max-width: 1080px;
  --nav-height: 56px;

  /* Border Radius */
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 29, 58, 0.10);

  /* Transitions */
  --transition: all 0.2s ease;
}
