/* Variables : palette, polices, espacements — tout au même endroit */
:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-muted: #6b7280;
    --color-accent: #2563eb;
    --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 700px;
}

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

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    padding: 3rem 1.25rem;
}

/* Centre le contenu */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-muted);
    font-size: 1.125rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Responsive : ce qui change sous 600px (mobile) */
@media (max-width: 600px) {
    body { padding: 2rem 1.25rem; }
    h1 { font-size: 2rem; }
}