/* ===================================
   VARIABLES CSS - Configuration globale
   =================================== */

:root {
    /* Couleurs principales */
    --color-primary: #9333ea;
    --color-secondary: #4f46e5;
    --color-accent: #ec4899;
    --color-background: #000000;
    --color-surface: #111827;
    
    /* Couleurs de texte */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e5e7eb;
    --color-text-light: #9ca3af;
    
    /* Couleurs d'interface */
    --color-border: #1f2937;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
    --gradient-overlay: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%, transparent 100%);
    
    /* Typographie */
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    
    /* Tailles de police */
    --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 */
    --font-size-6xl: 3.75rem;     /* 60px */
    --font-size-7xl: 4.5rem;      /* 72px */
    --font-size-8xl: 6rem;        /* 96px */
    
    /* Espacements */
    --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 */
    --spacing-24: 6rem;      /* 96px */
    
    /* Rayons de bordure */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 1rem;       /* 16px */
    --radius-xl: 1.5rem;     /* 24px */
    --radius-2xl: 2rem;      /* 32px */
    --radius-full: 9999px;
    
    /* Ombres */
    --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);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 30;
    --z-modal-backdrop: 40;
    --z-modal: 50;
    --z-popover: 60;
    --z-tooltip: 70;
    --z-toast: 80;
    
    /* Breakpoints (pour utilisation en JavaScript) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
    
    /* Dimensions */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* Navigation */
    --nav-height: 5rem;      /* 80px */
    --nav-height-mobile: 5rem; /* 64px */
    
    /* Hero */
    --hero-min-height: 100vh;
    
    /* Animations */
    --animation-fade-in: fadeIn 0.6s ease-out;
    --animation-slide-up: slideUp 0.8s ease-out;
    --animation-scale: scale 0.3s ease-out;
}

/* Variables pour le mode sombre (déjà actif) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Les couleurs restent identiques car le design est déjà sombre */
    }
}

/* Variables responsives */
@media (max-width: 768px) {
    :root {
        /* Ajustements pour mobile */
        --font-size-5xl: 2.5rem;     /* 40px */
        --font-size-6xl: 3rem;       /* 48px */
        --font-size-7xl: 3.5rem;     /* 56px */
        --font-size-8xl: 4rem;       /* 64px */
        
        --spacing-16: 3rem;           /* 48px */
        --spacing-20: 4rem;           /* 64px */
        --spacing-24: 5rem;           /* 80px */
        
        --nav-height: var(--nav-height-mobile);
    }
}