/* Explain: Theme design tokens for colors, fonts, and spacing. - */
:root {
    /* Design chaleureux et professionnel */
    --primary-color: #5D4037; /* Brun bois foncé */
    --primary-hover: #4E342E;
    --secondary-color: #8D6E63; /* Brun moyen */
    --accent-color: #D7CCC8; /* Beige / Crème */
    --background-color: #F5F5F5; /* Gris très clair / Crème */
    --surface-color: #FFFFFF;
    --text-color: #212121; /* Gris foncé */
    --text-muted: #616161;
    --border-color: #E0E0E0;
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
}