/* css/base.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Gère le décalage des liens d'ancrage pour ne pas tomber sous le menu */
    scroll-padding-top: var(--header-height);
    overflow-x: hidden; 
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    
    /* TEXTE GLOBAL EN BLANC */
    color: #f1f5f9;
    
    /* --- LE FOND UNIQUE (STYLE MICROSOFT) --- */
    background-color: #0f172a;
    background-image: radial-gradient(circle at 50% 0%, #334155 0%, #0f172a 80%);
    background-attachment: fixed; 
    
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

    /* CORRECTION MENU : On pousse le contenu vers le bas car le menu est maintenant FIXE */
    padding-top: var(--header-height);
}

a { text-decoration: none; color: inherit; transition: color var(--transition-speed); }
ul { list-style: none; }

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Utilitaires */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 100px 0; }
.bg-light { background-color: transparent; }
.text-center { text-align: center; }
.hidden { display: none; }