/**
 * CSS Variables - Design System
 * Procedure Amministrative Theme
 */

:root {
    /* Colors - Based on actual site design */
    --color-primary: #4a7c4e;           /* Vert - couleur principale (nav, liens) */
    --color-primary-dark: #3d6640;
    --color-secondary: #CC3366;         /* Rose/magenta - accent */
    --color-secondary-dark: #a32952;
    --color-accent: #a83232;            /* Rouge adouci - barre sous nav */
    --color-accent-light: #c04545;
    --color-nav-bg: #4a7c4e;            /* Fond navigation */
    --color-green: #008000;             /* Vert pour breadcrumbs */

    /* Status colors */
    --color-success: #0DB10D;
    --color-success-bg: #ecfdf5;
    --color-error: #CD212A;
    --color-error-bg: #fef2f2;
    --color-warning: #F59E0B;
    --color-warning-bg: #fffbeb;
    --color-info: #3B82F6;
    --color-info-bg: #eff6ff;

    /* Text colors */
    --color-text: #000000;
    --color-text-light: #777777;
    --color-text-muted: #9ca3af;

    /* Background colors */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F1F2F3;
    --color-bg-dark: #2d4a3e;             /* Vert foncé pour footer */

    /* Border colors */
    --color-border: #e5e7eb;
    --color-border-dark: #d1d5db;

    /* Typography */
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Font weights */
    --font-normal: 400;
    --font-medium: 400;
    --font-bold: 700;

    /* Line heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Container widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;

    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-header: 200;
    --z-modal: 300;
}
