body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.containermenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.container-services {

    background-color: #ecad71;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 0%;
    color : #ecad71;
}

html {
    scroll-behavior: smooth;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.5s ease;
    
}

footer {
    background-color: #69493f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}


header h1 {
    margin: 0;
    text-align: center;
    font-weight: normal;
}


nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    width:100%;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #FFFFFF;;
    transition: 0.3s;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ecad71;
}

.nav-item-reserver a {
    border: 2px solid #ecad71; /* Bordure blanche élégante */
    border-radius: 25px; /* Coins arrondis pour un effet bouton */
    padding: 8px 20px; /* Espacement interne pour une meilleure ergonomie */
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Effet au survol pour le bouton "Réserver" */
.nav-item-reserver a:hover {
    background-color: #ecad71; /* Fond blanc au survol */
    color: #1A1A2E; /* Texte bleu marine lors du survol */
    border-color: #1A1A2E; /* Changement de la couleur de la bordure au survol */
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

section {
    padding: 60px 0;
    text-align: center;
}

.services-section {
    background-color: #ffffff; 
    color: #000000; 
    padding: 60px 20px;
    margin: 0; /* Évite les espaces entre les sections */
}

.services-section h2 {

    color: #ecad71;
}


.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.equipe-section {
    background-color: #69493f; /* Brun châtaigne */
    color: #FFFFFF; /* Texte en blanc pour le contraste */ 
    padding: 60px 20px;
    text-align: center;
}

.equipe-section h2 {
    font-size: 40px;
    margin-bottom: 19vh;
}

.galerie-container h2 {
    font-size: 40px;
}

.galerie-container p {
    font-size: 18px;
    margin-bottom: 5%;
}

.team-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 35%;
    gap: 5%;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 80%;
    padding: 3%;
    border-radius: 100%;
    height: auto;
}

.team-card h3 {
    font-size: 24px;
    color: #ecad71;
    margin: 20px 0 10px;
}

.team-card p {
    font-size: 16px;
    padding: 0 20px 20px;
    color: #666;
}

 /*.avis-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.avis-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ecad71;
}

.avis-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ecad71;
}

.swiper-container {
    width: 65%;
    margin: 20px;
    max-width: 100%;
    position: relative;
    padding-bottom: 50px; 
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    align-items: left;
    border: #ecad71;
    width: 30%; 
}

.avis-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    margin: 0 15px; 
    box-sizing: border-box;
}

.avis-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.avis-card h3 {
    font-size: 20px;
    color: #1A1A2E;
    margin-bottom: 15px;
    text-align: left;
}*/

.testimonials {
    max-width: 1300px;
    width: 80%;
    margin: auto;
  }
  
  .testimonials .wrapper {
    width: 100%;
    padding: 0 15px;
    
  }
  
  .wrapper .section-header {
    text-align: center;
    margin-bottom: 10%;
  }
  
  .wrapper .section-header .title {
    font-size: 35px;
    font-weight: 600;
    color: #ecad71;
    text-transform: capitalize;
    line-height: 1.2;
  }
  
  .wrapper .testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-item .info {
    display: flex;
    align-items: center;
  }
  
  .info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .info .name {
    font-weight: 600;
    line-height: 1.2;
    font-size: 20px;
    text-align: left;
  }
  
  .info .job {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ecad71;
  }
  
  .testimonial-item p {
    margin-top: 15px;
    font-size: 18px;
  }
  
  .testimonial-item .rating {
    margin-top: 15px;
    font-size: 16px;
    color: goldenrod;
  }
  
  .testimonials .swiper-pagination {
    position: relative;
    margin-top: 80px;
    bottom: auto;
  }
  
  .testimonials .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background: #ecad71;
  }



/* Styles pour les flèches de navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #1A1A2E;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    cursor: pointer;
    background-size: 44px 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.swiper-button-next {
    right: -60px; /* Positionne la flèche à l'extrémité droite de la page */
    background-image: url('path_to_next_arrow_icon.svg'); /* Remplacez par le chemin de votre icône */
}

.swiper-button-prev {
    left: -60px; /* Positionne la flèche à l'extrémité gauche de la page */
    background-image: url('path_to_prev_arrow_icon.svg'); /* Remplacez par le chemin de votre icône */
}

/* Styles pour la pagination */
.swiper-pagination {
    position: absolute;
    bottom: 10px; /* Position sous les avis */
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    background-color: #1A1A2E;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #FFD700;
}



/* Style pour la section de contact */
#contact {
    position: relative;
    width: 100%;
    margin-bottom: 1%;
    padding: 0;
}

.contacth2 {
    font-size: 40px;
    margin-bottom: 5%;
}

/* Conteneur de la carte */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

/* Style de l'iframe de la carte */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Boîte d'informations superposée */
.info-box {
    position: absolute;
    margin-top: 10%;
    bottom: 12%;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 40vh;
    max-width: 40%;
}

.info-box h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.info-box p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}



/* Assurez-vous que les autres sections ont également margin: 0; */
section {
    margin: 0;
}

.gallery {
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
}

.gallery img {
    width: 33%;
    max-height: 40vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.galerie-image {

    margin-bottom: 10px;
}


@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .gallery img {
        width: 80%;
    }
}

.hero {
    background: url(images/image1.webp) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Superposition sombre pour améliorer la lisibilité du texte */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn {
    background-color: #d49b66;
    font-size: 17px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #a95a2c;
}

/* Adaptation pour les appareils mobiles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}