html {
    scroll-behavior: smooth;
}

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

/* ============================================
    VARIABLES CSS - Couleurs et espaces
   ============================================ */

:root {
    /* Couleurs principales */
    --color-primary: #3B5FC6;
    --color-secondary: #8B5CF6;

    /* Couleurs de fond */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;

    /* Couleurs de texte */
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;

    /* Espacements */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 88px;

    /* Arrondis des coins */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    .dark-mode {
        --color-primary: #3B5FC6;
        --color-secondary: #8B5CF6;

        /* Couleurs de fond */
        --bg-white: #2f3547;
        --bg-light: #1F2937;
        --bg-gray: #9CA3AF;

        /* Couleurs de texte */
        --text-dark: #FFFFFF;
        --text-gray: #F9FAFB;
        --text-light: #F3F4F6;
    }
}

/* ============================================
    TYPOGRAPHIE
   ============================================ */

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}


h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}


h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}


p {
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
}

/* ============================================
    LIENS
   ============================================ */

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* ============================================
    LISTES
   ============================================ */

ul {
    list-style: none;
}

/* ============================================
    IMAGES
   ============================================ */

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

/* ============================================
    CONTENEUR
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}