/* Explain: Theme tokens for website colors and fonts, updated for a professional blue and orange theme. */
:root {
    --primary-color: #1E3A8A;
    --primary-hover: #1E40AF;
    --secondary-color: #3B82F6;
    --accent-color: #EA580C;
    --button-color: #EA580C;
    --background-color: #F9FAFB;
    --surface-color: #FFFFFF;
    --text-color: #111827;
    --text-muted: #4B5563;
    --border-color: #E5E7EB;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(30, 58, 138, 0.12);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --field-bg: #F3F4F6;
    --primary-soft: rgba(30, 58, 138, 0.05);
    --accent-soft: rgba(234, 88, 12, 0.08);
    --shadow-soft: 0 10px 40px rgba(17, 24, 39, 0.04);
    --shadow-hover: 0 20px 40px rgba(30, 58, 138, 0.08);
    --shadow-button: 0 8px 20px rgba(234, 88, 12, 0.25);
    --shadow-button-hover: 0 12px 25px rgba(234, 88, 12, 0.35);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Footer spécifiques pour contraster avec le reste du site clair */
    --footer-bg: #111827;
    --footer-text: #F9FAFB;
    --footer-text-muted: #9CA3AF;
    --footer-border: rgba(255, 255, 255, 0.1);
}