/* reset.css - Réinitialisation des styles par défaut du navigateur */
html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Formulaires et inputs */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Boutons cliquables */
button, select, [role="button"] {
    cursor: pointer;
}

/* Liens */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Listes */
ul, ol {
    list-style: none;
}

/* Médias */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Tableaux */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Desactiver le scroll bounce sur mobile */
body {
    overscroll-behavior-y: none;
}
