/* Base */
body {
    font-family: 'Georgia', serif;
    background-color: #ffffff; /* fond blanc */
    color: #000000;            /* texte noir */
    margin: 0;
    padding: 0;
}

/* En-tête & pied de page : gris clair, lisible partout */
header, footer {
    background-color: #f0f0f0; /* gris très clair */
    color: #000000;            /* texte noir */
    text-align: center;
    padding: 1em 0;
}

/* Liens globaux : bleu Croatie, rouge au hover */
a {
    color: #012169;            /* bleu */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #C8102E;            /* rouge */
    text-decoration: underline;
    outline: none;
}

/* Grille liste d’articles */
.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

/* Cartes d’articles : fond neutre, accents croates */
.blog-card {
    background-color: #f7f7f7;             /* neutre clair */
    border: 1px solid #012169;             /* bord bleu */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(1, 33, 105, 0.2); /* ombre bleue douce */
}

/* Titres dans les cartes : rouge Croatie */
.blog-card h2 {
    color: #C8102E;             /* rouge */
    font-size: 1.2em;
    margin-top: 0;
}

/* Boutons éventuels : fond bleu, texte blanc, hover rouge */
.button {
    display: inline-block;
    background-color: #012169;  /* bleu */
    color: #ffffff;             /* texte blanc */
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #C8102E;  /* rouge */
}

/* Petits accents décoratifs : jaune-or (optionnel) */
.highlight {
    color: #FFD700;             /* jaune */
    font-weight: bold;
}