/* Global Styles */
body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background-color: #F9F5E9; /* Couleur de fond similaire à l'arrière-plan du logo */
    color: #333;
    text-align: center;
}

header {
    background: url('logo.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 2em 0;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Couche sombre avec opacité */
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 3em;
}

nav {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 1em;
}

nav ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    gap: 15px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5em 1em;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #FFD700; /* Couleur dorée pour l'effet de survol */
    background-color: rgba(255, 215, 0, 0.2); /* Couleur dorée légère en fond */
}

/* Section Styles */
section {
    padding: 3em 1em;
    margin: 2em 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

#menus, #horaires, #photos, #reserver {
    background-color: #D2B48C; /* Couleur brun clair */
    color: #fff; /* Texte en blanc */
    text-align: center;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
}

section p {
    font-family: 'Merriweather', serif;
    font-size: 1.2em;
    margin: 0 auto;
    max-width: 800px;
}

button {
    background-color: #4A7746;
    color: #fff;
    border: none;
    padding: 1em 2em;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3d6240;
}

/* Footer Styles */
footer {
    background-color: #4A7746;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Gallery Styles */
#photos {
    padding: 2em;
    margin: 1em 0;
    background-color: #D2B48C; /* Couleur brun clair */
    color: #fff; /* Texte en blanc */
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-container img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}