/* ============================================
   VARIABLES & RESET - LEX'RECOUVREMENT
   Fichier de base universel
   À TOUJOURS charger en premier sur toutes les pages
   ============================================ */

/* RESET CSS MINIMAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABLES CSS GLOBALES */
:root {
    /* Couleurs principales */
    --navy: #0d2847;
    --gold: #c8a866;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Espacements (optionnel) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius (optionnel) */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    
    /* Transitions (optionnel) */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

/* TYPOGRAPHIE DE BASE */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* LIENS DE BASE (optionnel) */
a {
    color: inherit;
    text-decoration: none;
}

/* LISTES DE BASE (optionnel) */
ul, ol {
    list-style: none;
}

/* IMAGES RESPONSIVES (optionnel) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   FIN DU FICHIER VARIABLES
   Poids: ~2 KB
   Dépendances: Aucune
   Utilisé par: Tous les autres fichiers CSS
   ============================================ */
