/* 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 : vert Portugal, rouge au hover */
a {
    color: #006600;            /* vert */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #E30613;            /* 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 portugais */
.blog-card {
    background-color: #f7f7f7;             /* neutre clair */
    border: 1px solid #006600;             /* bord vert */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 102, 0, 0.2); /* ombre verte douce */
}

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

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

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