/* Explain: Theme design tokens (colors, fonts, spacing) for consistent styling. */
:root {
    /* Couleurs principales (Orange, Rouge, Doré) */
    --primary-color: #D35400;
    --primary-hover: #E67E22;
    --secondary-color: #8A1C04;
    --accent-color: #F1C40F;
    
    /* Fonds et surfaces (Noir profond, Marron terre sombre) */
    --background-color: #0b0806;
    --surface-color: #17110c;
    
    /* Texte (Beige clair pour contraster avec le fond sombre) */
    --text-color: #f3e5d8;
    --text-muted: #a89f91;
    --border-color: #3e2723;
    
    /* Typographie : Cinzel (Mystique/Ancestral) et Montserrat (Moderne/Lisible) */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}