/**
 * Variables CSS - Diezstar Theme
 * 
 * Définit toutes les variables de design du thème
 * Thème sombre, esthétique musique urbaine africaine
 */

:root {
    /* Couleurs principales - Palette sombre */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #2a2a2a;
    --color-bg-card: #1f1f1f;
    --color-bg-hover: #2f2f2f;
    
    /* Couleurs d'accent - Vibrantes */
    --color-accent-primary: #ff6b35;
    --color-accent-secondary: #f7931e;
    --color-accent-tertiary: #ffd700;
    --color-accent-success: #00ff88;
    
    /* Couleurs texte */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-tertiary: #808080;
    --color-text-muted: #606060;
    
    /* Couleurs liens */
    --color-link: var(--color-accent-primary);
    --color-link-hover: var(--color-accent-secondary);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typographie - Réduite pour un look moderne et dense */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 0.9375rem; /* 15px - Base moderne */
    --font-size-md: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-xxl: 1.5rem;   /* 24px - Réduit depuis 32px */
    --font-size-xxxl: 2rem;    /* 32px - Réduit depuis 48px */
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Bordures */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;
    
    --border-width: 1px;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-header: 100;
    --z-lecteur: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    
    /* Layout */
    --header-height: 64px; /* Hauteur fixe - alignement strict */
    --lecteur-height: 80px;
    --container-max-width: 1200px;
    --container-padding: var(--spacing-md);
    
    /* Breakpoints (pour référence JS) */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

/* Mode sombre par défaut (déjà défini ci-dessus) */
@media (prefers-color-scheme: light) {
    /* Le thème reste sombre même en mode clair */
    /* Les variables restent identiques */
}

