/* Reset CSS - Supprime les styles par défaut du navigateur */

/* Reset universel */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML et Body */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Éléments de bloc */
div, section, article, aside, header, footer, nav, main, figure {
    margin: 0;
    padding: 0;
    display: block;
}

/* Éléments inline */
span, a, img, strong, em, i, b, u {
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
}

/* Listes */
ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: inherit;
}

/* Paragraphes */
p {
    margin: 0;
    padding: 0;
}

/* Formulaires */
form, input, textarea, select, button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

/* Tables */
table, tr, td, th, thead, tbody {
    margin: 0;
    padding: 0;
    border: none;
    border-collapse: collapse;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Liens */
a {
    color: inherit;
    text-decoration: none;
}

/* Focus — visible uniquement au clavier */
*:focus {
    outline: none;
}
*:focus-visible {
    outline: 2px solid #3eb33e;
    outline-offset: 2px;
}

/* Boutons */
button {
    cursor: pointer;
}
