/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: black;
    text-align: center;
    line-height: 1.6;

}

#about, #reviews {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;  /* Ajuste la taille selon ton choix */
}

#about p {
    font-size: 18px; /* Ajuste cette valeur selon ta préférence */
}

/* Suppression des marges entre les sections */
section {
    margin: 0;
    padding: 0;
}

/* Titres */
h2 {
    color: #006400;
}

/* Cadres blancs pour le contenu */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 10px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* En-tête */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Menu de navigation */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #006400;
    transform: scale(1.1);
}

/* Galerie automatique */
.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    padding: 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
}

.gallery-container img.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0s;
}

/* Section Avis */
#reviews {
    background: white;
    padding: 60px 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.review {
    background: white;
    padding: 20px;
    border-radius: 10px;
    color: black;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

.large-review {
    width: 100%;
    max-width: 600px; /* Ajustable selon ton design */
}

.review p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Notes et étoiles */
.rating {
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* La note 4.9/5 en vert */
.rating .score {
    color: #006400;
    font-weight: bold;
}

/* Étoiles dorées */
.rating .stars {
    color: gold;
}

/* Supprime le soulignement des liens et garde leur couleur */
.rating a {
    text-decoration: none;
    color: inherit;
}
.ratings {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ratings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Ajoute un petit espace entre les deux notes */
}

/* Section FAQ */
#faq {
    background: white;
    padding: 60px 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Question de la FAQ */
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    color: #006400;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: #006400;
    color: white;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s;
}

/* Réponse de la FAQ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 20px;
    background: white;
    color: black;
    text-align: left;
    border-top: 1px solid #006400;
}

/* Animation ouverture */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact */
#contact p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

/* Pied de page */
footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    font-size: 14px;
    color: #444;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

footer a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #006400;
}

/* Formulaire de réservation */
#booking form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

#booking label {
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
}

#booking input, #booking select, #booking textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#booking textarea {
    height: 150px;
    resize: vertical;
}

#booking button {
    background: #006400;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

#booking button:hover {
    background: #004d00;
    transform: scale(1.05);
}

/* Ajout d'un espace entre l'en-tête et la première section */
#about {
    margin-top: 30px; /* Augmente l'espace entre le header et "À propos" */
    padding-top: 30px;
}

/* Ajout d'un espace entre chaque section */
section {
    padding: 30px 20px;
}

/* Espace supplémentaire au-dessus de la galerie */
#gallery {
    margin-top: 30px;
}

/* Espace plus grand entre l'en-tête et le contenu */
header {
    padding-bottom: 10px;
    
