/* variables globales basées sur la maquette */
:root {
    --bg-color: #ffffff;       /* Fond blanc de la page */
    --card-bg: #1E2E52;        /* Fond bleu marine principal (header, footer, cartes) */
    --text-main: #1E2E52;      /* Texte principal sombre sur fond blanc */
    --text-muted: #AFE3F8;     /* Texte secondaire bleu clair */
    --accent-blue: #AFE3F8;    /* Accent bleu clair */
    --border-color: rgba(30, 46, 82, 0.1);
    
    --font-heading: 'Candal', sans-serif;
    --font-body: 'Abel', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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