/**
 * Variables CSS - Design System EquipLy
 */

:root {
    /* Couleurs principales */
    --main-color: #4F46E5;
    --main-dark: #4338CA;
    --main-light: rgba(79, 70, 229, 0.1);

    /* Textes */
    --text-title: #333333;
    --text-body: #4b5563;
    --text-light: #8a8f98;

    /* Fonds */
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;

    /* Bordures */
    --border-color: #e5e5e5;
    --border-light: #eee;

    /* États */
    --color-success: #27ae60;
    --color-success-light: rgba(39, 174, 96, 0.1);
    --color-error: #e74c3c;
    --color-error-light: rgba(231, 76, 60, 0.1);
    --color-warning: #f39c12;
    --color-warning-light: rgba(241, 196, 15, 0.1);
    --color-info: #3498db;
    --color-info-light: rgba(52, 152, 219, 0.1);

    /* Typographie */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 38px;
    --font-size-5xl: 42px;

    /* Espacements */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Rayons */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --navbar-height: 70px;
    --sidebar-width: 260px;
    --container-max-width: 1200px;
}
