/**
 * CSS Variables - Design System Mobiliteitsplein
 *
 * Gebaseerd op config/design-system.php
 * Huisstijlkleuren en design tokens
 */

:root {
    /* ==========================================================================
       KLEUREN - Huisstijl Mobiliteitsplein
       ========================================================================== */

    /* Primaire kleuren */
    --color-primary: #004E3D;
    --color-primary-rgb: 0, 78, 61;
    --color-secondary: #BBD151;
    --color-secondary-rgb: 187, 209, 81;

    /* Accent kleuren */
    --color-accent1: #7CC5AD;          /* Turquoise */
    --color-accent1-rgb: 124, 197, 173;
    --color-accent2: #A5ADB8;          /* Licht grijs/blauw */
    --color-accent2-rgb: 165, 173, 184;
    --color-accent3: #F7A941;          /* Oranje/zand */
    --color-accent3-rgb: 247, 169, 65;

    /* Neutrale kleuren */
    --color-white: #FFFFFF;
    --color-light: #F8F9FA;
    --color-gray: #6C757D;
    --color-gray-light: #E9ECEF;
    --color-gray-dark: #495057;
    --color-dark: #343A40;
    --color-black: #212529;

    /* Status kleuren */
    --color-success: #198754;
    --color-warning: #FFC107;
    --color-danger: #DC3545;
    --color-info: #0DCAF0;

    /* ==========================================================================
       TYPOGRAFIE
       ========================================================================== */

    /* Font families */
    --font-primary: 'TT Commons Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, monospace;

    /* Font weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */

    /* Line heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* ==========================================================================
       SPACING
       ========================================================================== */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */

    /* ==========================================================================
       BORDERS
       ========================================================================== */
    --radius-none: 0;
    --radius-sm: 0.25rem;     /* 4px */
    --radius-md: 0.375rem;    /* 6px */
    --radius-lg: 0.5rem;      /* 8px */
    --radius-xl: 0.75rem;     /* 12px */
    --radius-2xl: 1rem;       /* 16px */
    --radius-full: 9999px;    /* Pill shape */

    --border-thin: 1px;
    --border-medium: 2px;
    --border-thick: 4px;

    /* ==========================================================================
       SHADOWS
       ========================================================================== */
    --shadow-none: none;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* ==========================================================================
       TRANSITIONS
       ========================================================================== */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;

    /* ==========================================================================
       BREAKPOINTS (voor referentie - gebruik media queries)
       ========================================================================== */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;

    /* ==========================================================================
       LAYOUT
       ========================================================================== */
    --container-max-width: 1400px;
    --header-height: 80px;
    --header-height-mobile: 60px;
}
