:root {
    --primary: #d4af37; /* Or pour le côté Premium VTC */
    --bg: #ffffff;
    --text: #222;
    --bg-alt: #f4f4f4;
    --border: #ddd;
}

/* Responsive & Base */
html {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    color: var(--text);
    background-color: var(--bg);
}

/* Header & Navigation */
header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: var(--text);
}

nav a:hover {
    color: var(--primary);
}

/* Typographie */
h1, h2, h3 { line-height: 1.2; }
h1 { font-size: 2.5rem; color: var(--primary); }

/* Formulaires & Inputs (pour ton futur annuaire) */
form {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
}

input, textarea, select, button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover { filter: brightness(1.1); }

/* Tableaux (Idéal pour l'annuaire) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 0.75rem;
    border: 1px solid var(--border);
    text-align: left;
}

th { background: var(--bg-alt); }

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 600px) {
    nav { flex-direction: column; gap: 0.5rem; }
}

/* À ajouter dans ton fichier css/style.css */

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

select {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: #fff;
    font-size: 1rem;
    appearance: none; /* Supprime le style par défaut du navigateur */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Amélioration du menu avec icônes */
nav {
    display: flex;
    flex-wrap: wrap; /* Pour le mobile */
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

nav a {
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    background: var(--bg-alt);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

nav a:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

/* On s'assure que les emojis ne décalent pas le texte */
nav a::before {
    margin-right: 5px;
}

article a {
    text-decoration: none;
    display: block; /* Cela permet au lien de bien englober le bouton */
}