/* =========================================
   VARIABLES GLOBALES (THÈME + TYPO)
========================================= */

:root {
    /* COULEURS */
    --accent: #FFD200;          /* jaune Popkfé */
    --text-color: #ffffff;
    --bg-color: #0b0b0b;

    /* TYPOGRAPHIE */
    --font-body: "Inter", "Avenir", "Avenir Next", sans-serif;
    --font-title: "Avenir", "Avenir Next", sans-serif;
    --font-cta: "Avenir Next", "Avenir", sans-serif;
    --font-italic: "Avenir", "Avenir Next", sans-serif;

    /* TAILLES DE TEXTE */
    --base-font-size: 16px;     /* taille mobile, évolutive via clamp si besoin */
}


/* =========================================
   RESET LÉGER (PRO, SANS RISQUE)
========================================= */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

img, video {
    max-width: 100%;
    display: block;
}


/* =========================================
   TEXTES GLOBAUX
========================================= */

body {
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    font-style: normal;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.45;
}


/* =========================================
   TITRES GÉNÉRAUX (peuvent être surchargés
   dans les composants si nécessaire)
========================================= */

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-weight: 900;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

#content {
    transition: opacity 0.25s ease;
}