/* ==========================================================
   COLORS.CSS - Charte graphique 1 Vie, 2 Chiens
   CSS Variables and Color Palette
   ========================================================== */

:root {
    /* Brand Colors */
    --primary-color: #212C21;       /* Vert fonce (header, elements principaux) */
    --text-green: #404E40;          /* Vert intermediaire (textes) */
    --secondary-color: #8B5A2B;     /* Marron terre (accents, hover) */
    --tertiary-color: #D4D7A5;      /* Vert clair (backgrounds doux) */
    --white: #FFFFFF;               /* Blanc pur */
    --dark-color: #212C21;          /* Meme que primary pour coherence */
    --success-color: #8B5A2B;       /* Marron pour succes */
    --grey-light: #949699;

    /* System Colors */
    --danger-color: #dc3545;        /* Rouge erreur */
    --light-bg: #F5F5F5;            /* Fond clair */
    
    /* Properties */
    --border-radius: 8px;           /* Arrondi standard */
    --transition: all 0.3s ease;    /* Transition standard */
}
