/* Variables Globales - Identité Visuelle de la CODEMBAC */
:root {
    /* Palette de couleurs */
    --color-primary: #198754;       /* Vert éco-responsable */
    --color-primary-hover: #146c43;
    --color-dark: #212529;          /* Anthracite profond (texte et fonds sombres) */
    --color-light: #f8f9fa;         /* Fond clair */
    --color-muted: #6c757d;         /* Texte secondaire */
    --color-white: #ffffff;
    --color-border: #dee2e6;

    /* Typographie */
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    
    /* Échelles d'espacement de base (en rem) */
    --space-xs: 0.25rem;  /* 4px */
    --space-sm: 0.5rem;   /* 8px */
    --space-md: 1rem;     /* 16px */
    --space-lg: 1.5rem;   /* 24px */
    --space-xl: 3rem;     /* 48px */
    --space-xxl: 4.5rem;  /* 72px */
}

/* Reset de base et accessibilité */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%; /* 1rem = 16px par défaut */
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

/* Typographie en rem */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
}

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