/* --- Réglages généraux --- */
body {
    font-family: Arial, sans-serif; /* Police facile à lire */
    background-color: #f4f4f4; /* Fond gris très clair */
    color: #333; /* Texte gris foncé, pas noir pur */
    line-height: 1.6; /* Espace entre les lignes de texte */
    margin: 0;
    padding: 0;
}

/* --- Le conteneur principal --- */
.container {
    max-width: 800px; /* Largeur maximale du contenu */
    margin: 20px auto; /* Centre le site sur la page */
    background-color: #ffffff; /* Fond blanc pour le contenu */
    padding: 20px 40px; /* Espace à l'intérieur du conteneur */
    border-radius: 10px; /* Bords arrondis */
    box-shadow: 0 0 15px rgba(0,0,0,0.1); /* Ombre discrète */
}

/* --- Entête et pied de page --- */
header, footer {
    text-align: center;
    padding: 10px 0;
}

header h1 {
    font-size: 2.5em; /* Titre principal très grand */
    color: #005a9c; /* Un joli bleu */
}

footer {
    margin-top: 30px;
    border-top: 2px solid #eeeeee; /* Ligne de séparation */
    font-size: 0.9em;
}

/* --- Navigation principale --- */
nav {
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-bottom: 30px;
}

nav a {
    text-decoration: none; /* Pas de soulignement sur les liens */
    color: #005a9c;
    font-size: 1.2em; /* Texte des liens assez grand */
    font-weight: bold;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s; /* Effet de transition doux */
}

nav a:hover, nav a.active {
    background-color: #eef5fa; /* Fond bleu clair au survol ou si la page est active */
    color: #003d6b;
}

/* --- Styles du contenu principal --- */
main h2 {
    font-size: 2em; /* Titres de section */
    color: #d9534f; /* Un rouge doux pour attirer l'oeil */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 40px;
}

main h3 {
    font-size: 1.5em; /* Sous-titres */
    color: #333;
}

p, li {
    font-size: 1.1em; /* Texte courant un peu plus grand */
}

ul {
    list-style-type: '💡 '; /* Puces personnalisées et plus visibles */
    padding-left: 20px;
}

li {
    margin-bottom: 10px; /* Espace entre les éléments de liste */
}

strong {
    color: #005a9c; /* Met en valeur les mots importants */
}

/* --- Styles spécifiques à la page d'accueil --- */
.accueil-intro {
    text-align: center;
    font-size: 1.2em;
}

.accueil-boutons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.accueil-boutons a {
    display: block;
    width: 200px;
    background-color: #5cb85c;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: bold;
    margin: 10px;
    transition: transform 0.2s;
}

.accueil-boutons a:hover {
    background-color: #4a9e4a;
    transform: scale(1.05);
}

.accueil-boutons span {
    display: block;
    font-size: 0.7em;
    font-weight: normal;
    margin-top: 5px;
}