/* ============================================================================
   RESET & STYLES DE BASE
   
   Styles fondamentaux appliqués globalement.
   Reset CSS + configuration de base pour un comportement cohérent
   sur tous les navigateurs.
   ============================================================================ */

/* ========================================
   RESET UNIVERSEL
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   CONFIGURATION HTML
======================================== */
html {
    scroll-behavior: smooth;
    /* Améliore le rendu des fonts */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   CONFIGURATION BODY
======================================== */
body {
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-text);
    overflow-x: hidden;  /* Évite le scroll horizontal */
    cursor: none;        /* Curseur custom activé */
    line-height: 1.6;
}

/* ========================================
   MASQUAGE CURSEUR SYSTÈME
   Nécessaire pour le curseur personnalisé
======================================== */
*,
*::before,
*::after {
    cursor: none !important;
}

/* ========================================
   SÉLECTION DE TEXTE
======================================== */
::selection {
    background-color: var(--color-accent);
    color: var(--color-text);
}