/* Réinitialisation et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #555;
    background-color: #f5f0e8; /* Fond beige clair */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* En-tête sobre */
header {
    background-color: #fff;
    color: #333;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #6b8c42; /* Vert sobre */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: #6b8c42;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #333;
}

/* Bannière sobre */
.banner {
    background-color: #e8e4d9; /* Beige clair */
    color: #333;
    text-align: center;
    padding: 50px 0;
    margin-bottom: 30px;
}

.banner h2 {
    font-size: 2em;
    font-weight: normal;
}

/* Contenu principal */
.intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
}

.activity {
    background-color: #fff;
    border-radius: 0; /* Angle droit pour un style sobre */
    padding: 25px;
    width: 45%;
    min-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.activity img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.activity h4 {
    color: #6b8c42;
    margin-bottom: 10px;
}

/* Galerie simple */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Boutons sobres */
.button {
    display: inline-block;
    background-color: #6b8c42;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border: none;
    margin-top: 15px;
    font-family: 'Georgia', serif;
}

.button:hover {
    background-color: #5a7a37;
}

/* Pied de page sobre */
footer {
    background-color: #fff;
    color: #555;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ddd;
}

footer a {
    color: #6b8c42;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .activities {
        flex-direction: column;
        align-items: center;
    }

    .activity {
        width: 100%;
    }
}
a {
text-decoration: none;
color: #6b8c42;
}
