/* Ajuster la marge de défilement pour les liens internes */
html {
    scroll-padding-top: 100px; /* Ajustez cette valeur en fonction de la hauteur de votre menu */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #edf0f5; /* Bleu savane clair */
    color: #57636f; /* Bleu foncé pour le texte */
}

h2, h5{
    font-weight: bold;
}

h5{
    margin-top:20px;
}

.welcome-header {
    background-color: #c3d9e8; /* Bleu plus chaud pour le header */
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #a4bdd2; /* Bleu doux pour la séparation */
}
.welcome-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #57636f; /* Bleu foncé */
}
.welcome-header img {
    max-width: 200px; /* Limite à 200px */
    margin: 1rem auto;
}
.welcome-message {
    text-align: center;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: #6F6357; /* Bleu clair */
}
.content {
    padding: 2rem;
}
.section {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #f8faff; /* Fond clair pour les sections */
    border: 1px solid #a4b9d2;
    border-radius: 8px;
}
.section img {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: 1rem auto 1rem auto;
    border-radius: 8px;
}
.section video {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: 1rem auto 1rem auto;
    border-radius: 8px;
}
.section-text {
    text-align: justify;
}
.two-columns {
    display: flex;
    align-items: center;
}
.two-columns img {
    max-width: 150px;
    max-height: 150px;
    margin-right: 1rem;
    border-radius: 8px;
}
.two-columns .section-text {
    flex: 1;
}
.section h2 {
    color: #4A403A;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section h3 {
    color: #4A403A;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.section h4 {
    color: #4A403A;
    font-size: 1.15rem;
    font-weight: bold;
    text-align: left;
}

a {
    color: #6F6357;
    text-decoration: underline;
}
a:hover {
    color: #4A403A;
}

.carousel-item img {
    height: 470px;
    object-fit: cover;
    width: 100%;
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.equipment-table td {
    vertical-align: middle;
    word-wrap: break-word; /* Permet de couper les mots longs */
    overflow-wrap: break-word; /* Gère le débordement de texte */
    white-space: normal; /* Permet le retour à la ligne */
}

.equipment-table td.icon,
.equipment-table td.check {
    padding: 0;
    text-align: right;
    width: 1%; /* Force la première colonne à être aussi petite que possible */
    white-space: nowrap; /* Empêche le texte de se couper */
}

.equipment-table td.icon,
.equipment-table td.section-title {
    padding-top: 13px;
}

.equipment-table td.section-title {
    padding-left: 15px; /* Espace entre l'icône et le titre */
    text-align: left;
}

.equipment-table td.list-item {
    padding-left: 15px; /* Espace entre l'icône et le texte */
    text-align: left;
}

.equipment-table td[colspan="2"] {
    text-align: left; /* Aligne le texte à gauche pour les cellules fusionnées */
    padding-left: 30px; /* Espace pour aligner avec les autres lignes */
}

.equipment-table tr.section{
    padding-top:10px;
}

.equipment-table img {
    max-width: 30px;
    height: auto;
    display: inline-block;
}

.section .row {
    display: flex;
    justify-content: center;
}

.accordion-button{
    font-weight: bold;
}

.accordion-button:not(.collapsed){
    color: #000000;
}

.map-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
   }
.map-responsive iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.sticky-top {
    position: -webkit-sticky; /* Pour Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Assurez-vous que le menu est au-dessus des autres éléments */
}

@media only screen and (min-width: 1400px) { 
    .gt_switcher_wrapper{
        bottom: unset!important;
        top: 2%!important;
        right: 2% !important;
    }
}

@media only screen and (max-width: 767px) { 
    .carousel-item img {
        height: 370px;
        object-fit: cover;
        width: 100%;
        padding-bottom: 10px;
    }
}

/* Style général de la section */
.reviews-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
/* Style du carrousel Swiper */
.swiper {
  width: 100%;
  padding: 20px 0 50px 0;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Important pour que les cartes aient la même hauteur */
  height: auto;
}
/* Style des flèches et de la pagination */
.swiper-button-next, .swiper-button-prev {
  color: #004a99;
}

.swiper-pagination-bullet-active {
  background: #007BFF;
}
/* Style de la carte d'avis */
.review-card {
  width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* S'assure que la carte remplit le slide */
  box-sizing: border-box;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Aligne les éléments en haut */
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.review-author-date {
  display: flex;
  flex-direction: column;
}
.review-author {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.review-date {
  font-size: 0.9rem;
  color: #888;
}
.review-rating-container {
  display: flex;
  align-items: center;
  font-weight: 700;
}
/* Style pour la note Airbnb (étoile) */
.rating-star-airbnb {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #FDCC0D; /* Or étoile */
}
.rating-star-airbnb svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

/* Style pour la note Booking (boîte bleue) */
.rating-box-booking {
  background: #003b95; /* Bleu marine foncé */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px 6px 6px 0px;
  height: 33px;
  width: 33px;
  font-size: 1rem;
  font-weight: bold;
}
.review-comment {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}
.review-footer {
  margin-top: 20px;
  text-align: right;
}
.review-footer img {
  width: 80px;
  opacity: 0.7;
}
/* Responsive */
@media (max-width: 768px) {
  .reviews-section h2 { font-size: 2rem; }
}