:root {
    --color-primary: #1a2332;
    --color-secondary: #d4af37;
    --color-accent: #8b0000;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Didot', serif;
    --spacing-unit: 1rem;
    --border-radius: 4px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hiver {
    --color-primary: #0a192f;       /* Bleu nuit profond */
    --color-secondary: #e0e0e0;     /* Blanc cassé */
    --color-accent: #4a90e2;        /* Bleu glace */
    --color-light: #f0f8ff;         /* Blanc bleuté */
    --color-dark: #112240;          /* Bleu foncé */
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Didot', serif;
    --spacing-unit: 1rem;
    --border-radius: 4px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.printemps {
    --color-primary: #4caf50;       /* Vert printanier */
    --color-secondary: #ffeb3b;     /* Jaune pâle */
    --color-accent: #ff7043;        /* Corail doux */
    --color-light: #e8f5e9;         /* Vert très clair */
    --color-dark: #2e7d32;          /* Vert foncé */
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Didot', serif;
    --spacing-unit: 1rem;
    --border-radius: 6px;          /* Légèrement plus arrondi */
    --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.ete {
    --color-primary: #2196f3;       /* Bleu azur */
    --color-secondary: #ffc107;     /* Jaune soleil */
    --color-accent: #e91e63;        /* Rose vif */
    --color-light: #f3e5f5;         /* Lavande très clair */
    --color-dark: #0d47a1;          /* Bleu marine */
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Didot', serif;
    --spacing-unit: 1rem;
    --border-radius: 8px;          /* Plus arrondi pour un effet détendu */
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.automne {
    --color-primary: #8d6e63;       /* Marron chaud */
    --color-secondary: #ff9800;     /* Orange brûlé */
    --color-accent: #d32f2f;        /* Rouge bordeaux */
    --color-light: #fff8e1;         /* Crème */
    --color-dark: #5d4037;          /* Marron foncé */
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Didot', serif;
    --spacing-unit: 1rem;
    --border-radius: 4px;
    --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.theme-transition * {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, fill 0.5s ease;
}