@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

/* Couleurs de la palette */
:root {
    --color-1: #26441e;
    --color-2: #e0ada5;
    --color-3: #c0d8c0;
    --color-4: #a5961f;
    --color-5: #494949;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    color: var(--color-5);
}


.avis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px; /* Espacement sous l'élément */
    max-width: 90%; /* Ajustement de la largeur */
    box-sizing: border-box;
    text-align: center; /* Assure un alignement centré */
}

/* Centrer l'image */
.avis img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centre l'image horizontalement */
}

/* Media queries pour les petits écrans */
@media (max-width: 768px) {
    .avis {
        max-width: 95%;
        padding-bottom: 10px; /* Ajustement du padding */
    }

    .avis img {
        width: 100%;
        height: auto; /* Empêcher la distorsion */
    }
}





.container {
    width: 90%;
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo {
    width: auto;
    height: 150px;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.language-menu {
  padding: 10px;
  margin: 10px auto;
  font-size: 14px;
  width: fit-content;
  text-align: center;
}

.language-menu a {
  display: inline-block;
  margin: 0 10px; /* Ajustement des marges */
  text-decoration: none; /* Supprime le soulignement par défaut */
}

.language-menu a:not(:last-child) {
  border-right: 1px solid #ccc; /* Séparateur visuel */
  padding-right: 10px;
}

.logo img {
    height: 100%;
}

.site-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3em;
    color: var(--color-1);
    margin: 0;
    text-align: center;
}

.description-situation {
    text-align: center;
}

.situation-list {
    list-style: none;
    padding: 0;
}

.situation-list li {
    margin-bottom: 5px;
}

.situation-list li i {
    margin-right: 5px;
}

.button-nav {
    background-color: #26441e;
    padding: 10px 0;
    text-align: center;
}

.button-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button-nav ul li {
    margin: 0 15px;
}

.button-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.button-nav ul li a:hover {
    color: #e6f511;
}

@media (max-width: 768px) {
    .button-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .button-nav ul li {
        margin: 5px 0;
    }
}


.description-text {
    flex: 1;
}

.activity-image {
    flex: 1;
    text-align: right;
}

.activity-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .description-container {
        flex-direction: column;
        align-items: stretch;
    }

    .activity-image {
        text-align: center;
    }

    .activity-image img {
        max-width: 100%;
    }
}

/* Design discret pour la section de sélection de langue */
.language-selection {
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.language-selection h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.language-selection p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.language-links {
    margin-top: 15px;
}

.language-links a {
    font-size: 16px;
    color: #337ab7;
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-links a:hover {
    background: #f0f0f0;
    color: #23527c;
}

/* Style pour le slideshow */
.image-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}


.equipments ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.equipments li {
    font-size: 1em;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.equipments li i {
    margin-right: 5px;
    color: var(--color-4);
}


.main-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease;
}

.thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    position: relative;
}

.thumbnail {
    width: 120px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.thumbnail.active {
    border: 2px solid #007bff;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .main-image {
        height: 400px;
    }

    .thumbnail {
        width: 90px;
        height: 70px;
    }
}


.characteristics {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.characteristics h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.characteristics p {
    font-size: 1em;
    line-height: 1.4;
}

.description-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 1em;
}

.description-text {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}

.description-text p b {
    font-size: 1.2em;
    color: var(--color-1);
}

.description-situation {
    text-align: left; /* Aligner à gauche */
}


.google-map {
    margin-top: 10px;
}

.google-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.equipments ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.equipments li {
    font-size: 1em;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.equipments li i {
    margin-right: 5px;
    color: var(--color-4);
}

.footer {
    font-size: 0.8em;
    text-align: center;
    margin-top: 20px;
    padding: 15px 20px;
    color: #555;
    border-top: 1px solid #ddd;
    background-color: #f8f8f8;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #0073e6;
    text-decoration: none;
}

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

/* Styles pour le modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .site-title {
        font-size: 2em;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 300px;
    }
}

.reservation-container {
    text-align: center;
    margin: 30px 0;
}

.reservation-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: var(--color-1); /* Utilisation de votre couleur principale */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.reservation-button:hover {
    background-color: var(--color-4); /* Changement vers une couleur complémentaire au survol */
}
