/* ===================================
   VARIABLES CSS
   =================================== */

:root {
    /* Couleurs principales */
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #1f2937;

    /* Couleurs de texte */
    --text-dark: #111827;
    --text-light: #4b5563;

    /* Couleurs de fond */
    --bg-light: #f9fafb;
    --white: #ffffff;

    /* Ombres */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}