/* ──────────────────────────────────────── */
/* 1️⃣ Base : Box‑sizing universel           */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ──────────────────────────────────────── */
/* 2️⃣ Marges / paddings : Tous les éléments  */
html, body,
h1,h2,h3,h4,h5,h6,
p, figure, blockquote,
ul, ol, dl, dd,
table, th, td,
button,input,textarea,label,select,
fieldset {
    margin: 0;
    padding: 0;
}

/* ──────────────────────────────────────── */
/* 3️⃣ Texte : police, taille & interligne   */
html {
    font-size: 16px;          /* base : 1rem = 16 px */
    line-height: 1.5;
}
body {
    font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            'Segoe UI',
            Roboto,
            Helvetica,
            Arial,
            sans-serif;
    background: #fff;
    color: #111;
}

/* ──────────────────────────────────────── */
/* 4️⃣ Listes : pas de puces/bullets          */
ul, ol {
    list-style: none;
}

/* ──────────────────────────────────────── */
/* 5️⃣ Liens : pas de soulignement par défaut */
a {
    color: inherit;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;   /* optionnel : soulignement au survol */
}

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

/* ──────────────────────────────────────── */
/* 7️⃣ Formulaires : héritage de police      */
button, input, textarea, select {
    font: inherit;
    background: none;
    border: none;
}

/* ──────────────────────────────────────── */
/* 8️⃣ Tables : collapse & largeur pleine     */
table {
    border-collapse: collapse;
    width: 100%;
}
