/* ==============================================
   BASE & RESET
   Styles fondamentaux appliqués à tout le document.
=============================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Indique au navigateur que le site gère lui-même
       les deux modes — empêche tout dark mode forcé
       par l'OS, le navigateur ou des extensions. */
    color-scheme: light dark;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    font-weight: 400;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: var(--color-transition);
}

::selection {
    background-color: var(--primary-blue);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--primary-blue);
    color: #ffffff;
}
