/* variables.css - CSS Variabelen voor consistente styling */

:root {
    /* Kleurenpalet */
    --color-primary: #18d26e; /* Hoofdkleur (fris groen) */
    --color-primary-light: #36e989; /* Lichtere versie van hoofdkleur */
    --color-primary-dark: #15b25d; /* Donkere versie van hoofdkleur */
    
    --color-secondary: #212529; /* Secundaire kleur (bijna zwart) */
    --color-secondary-light: #343a40; /* Lichtere versie van secundaire kleur */
    
    --color-accent: #ff6b6b; /* Accentkleur voor CTA's en belangrijke elementen */
    
    --color-gray-100: #f8f9fa; /* Zeer lichtgrijs */
    --color-gray-200: #e9ecef; /* Lichtgrijs */
    --color-gray-300: #dee2e6; /* Grijs */
    --color-gray-400: #ced4da; /* Middengrijs */
    --color-gray-500: #adb5bd; /* Donkerder grijs */
    --color-gray-600: #6c757d; /* Donkergrijs */
    --color-gray-700: #495057; /* Zeer donkergrijs */
    
    --color-white: #ffffff;
    --color-black: #000000;
    
    --color-success: #28a745; /* Voor succesberichten */
    --color-warning: #ffc107; /* Voor waarschuwingen */
    --color-error: #dc3545; /* Voor foutmeldingen */
    
    /* Typografie */
    --font-primary: 'Montserrat', sans-serif; /* Voor kopjes en belangrijke tekst */
    --font-secondary: 'Roboto', sans-serif; /* Voor normale tekst en paragraphs */
    
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px (standaard) */
    --font-size-md: 1.125rem;  /* 18px */
    --font-size-lg: 1.25rem;   /* 20px */
    --font-size-xl: 1.5rem;    /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem;  /* 36px */
    --font-size-4xl: 3rem;     /* 48px */
    --font-size-5xl: 3.75rem;  /* 60px */
    
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing (voor margins en paddings) */
    --space-xs: 0.25rem;  /* 4px */
    --space-sm: 0.5rem;   /* 8px */
    --space-md: 1rem;     /* 16px */
    --space-lg: 1.5rem;   /* 24px */
    --space-xl: 2rem;     /* 32px */
    --space-2xl: 3rem;    /* 48px */
    --space-3xl: 4rem;    /* 64px */
    --space-4xl: 6rem;    /* 96px */
    
    /* Border radius */
    --radius-sm: 0.25rem;  /* 4px */
    --radius-md: 0.5rem;   /* 8px */
    --radius-lg: 1rem;     /* 16px */
    --radius-full: 9999px; /* Voor volledig ronde elementen */
    
    /* Box shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container width */
    --container-max-width: 1200px;
    --container-padding: var(--space-md);
    
    /* Z-index levels */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
    
    /* Breakpoints (voor media queries in JavaScript) */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
  }