/* ===============================
   BASE — DESIGN SYSTEM SADSO31
   Version DS‑1.1
================================ */

/* Variables globales */
:root {
    --bleu: #003366;
    --violet: #700140;
    --rose: #bd026c;
    --gris-clair: #e6e6e6;
    --gris-texte: #444;

    --font-titre: "Poppins", sans-serif;
    --font-texte: "Roboto", sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;

    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 20px rgba(0,0,0,0.12);

    --space-xs: 8px;
    --space-sm: 15px;
    --space-md: 30px;
    --space-lg: 60px;
    --space-xl: 100px;

    --bp-mobile: 600px;
    --bp-tablette: 900px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-texte);
    color: var(--gris-texte);
    line-height: 1.6;
    background: #f7f7f7;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* Titres */
h1 {
    font-family: var(--font-titre);
    color: var(--blanc);
}

h2, h3, h4 {
    font-family: var(--font-titre);
    color: var(--bleu);
}

