@charset "utf-8";
:root {
    --couleur-fond: #f4f1ea;
    --vert-logo: #2d4f1e;
    --texte-couleur: #333333;
    --blanc: #ffffff;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--couleur-fond);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--texte-couleur);
}
.main-navigation {
    background-color: var(--blanc);
    padding: 10px 0;
    border-bottom: 4px solid var(--vert-logo);
    margin-bottom: 30px;
    width: 100%;
}
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}
.nav-list li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.nav-list li:not(:last-child):after {
    content: "-";
    color: var(--vert-logo);
    font-weight: bold;
    margin: 0 2px;
}
.nav-list li a {
    text-decoration: none !important;
    color: var(--vert-logo) !important;
    font-family: Arial, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    padding: 5px 8px;
    white-space: nowrap;
}
.nav-list li a:hover {
    color: #000000 !important;
    text-decoration: underline !important;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
@media (min-width: 992px) {
    .container {
        width: 66.66%;
    }
}
h1, h2, h3 {
    color: var(--vert-logo);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
h1 {
    font-size: 2.2rem;
    text-align: center;
}
h2 {
    font-size: 1.8rem;
    border-bottom: 3px solid var(--vert-logo);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}
.hero-header {
    width: 100%;
    height: 450px;
    background-image: url('banniere-le-gardien-des-souvenirs.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .hero-header {
        height: 250px;
    }
    .container {
        width: 100%;
        padding: 15px;
    }
    .nav-list {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 8px;
    }
    .nav-list li:after {
        display: none;
    }
    .nav-list li a {
        font-size: 1.2rem !important;
        padding: 8px;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-encart {
    background-color: var(--blanc);
    border: 4px solid var(--vert-logo);
    margin: 20px 0 30px 0;
    padding: 10px 0;
    text-align: center;
}
.contact-encart p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--vert-logo);
}

.site-footer {
    background-color: var(--blanc);
    border-top: 4px solid var(--vert-logo);
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
}
.site-footer p {
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--vert-logo);
}
.site-footer a {
    color: var(--vert-logo);
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer img {
    margin: 0 auto 15px auto;
}

.photo-article {
    margin: 30px auto;
    text-align: center;
    max-width: 500px;
}
.photo-article img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.photo-article figcaption {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}
/* === Liens dans le corps de texte === */
.container a,
.article a,          /* si tu as une classe .article ou .post-content */
main a {
    color: var(--vert-logo);
    text-decoration: none;
}

.container a:hover,
.container a:focus,
main a:hover,
main a:focus {
    color: #2d4f1e;
    text-decoration: underline;
}

.main-navigation a,
.site-footer a {
    color: inherit;
    text-decoration: none;
}