.locations-title {
    text-align: center;
    margin-top: 50px;
}

.locations-subtitle {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 22px;
}

.locations-infos {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.details-infos {
    display: flex;
    align-items: center;
    gap: 7px;
}

.details-infos i {
    font-size: 20px;
}

.details-infos p {
    font-size: 18px;
}

.locations-descriptions {
    margin-top: 75px;
    margin-left: 60px;
    width: 60%;
}

.locations-descriptions p {
    margin-top: 25px;
}

.points-forts {
    margin-left: 60px;
    margin-top: 50px;
}

.locations-chips {
    display: flex;
    margin-left: 60px;
    margin-top: 25px;
    gap: 25px;
    flex-wrap: wrap;
}

.locations-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid black;
    border-radius: 20px;
    padding: 5px 10px;
}

.locations-gallery {
    margin-left: 60px;
    margin-top: 25px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.locations-gallery img.miniature {
    width: 300px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
    object-fit: cover;
}

.locations-gallery img.miniature:hover {
    opacity: 0.6;
}

.locations-morePhotos {
    margin-left: 60px;
    margin-top: 25px;
    padding: 10px 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #179182;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.locations-morePhotos:hover {
    background-color: #0d554c;
}

.locations-sliderDisplay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
  }
  
  .locations-sliderContent {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .locations-sliderContent img.locations-slide {
    margin: auto;
    display: none;
    max-width: 80%;
    max-height: 80%;
  }
  
  .locations-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .locations-prev, .locations-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -50px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .locations-prev {
    left: 0;
  }
  
  .locations-next {
    right: 0;
  }

  .locations-reservationLinks {
    display: flex;
    margin-top: 25px;
    font-size: 20px;
    margin-left: 60px;
    font-weight: 600;
    align-items: center;
    gap: 50px;
  }

  .locations-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: grey;
    gap: 7px;
  }

  .locations-links a:hover {
    color: black;
  }

  @media (max-width: 800px) {
    .locations-descriptions {
      margin-left: 30px;
      margin-right: 30px;
      text-align: center;
      width: auto; /* Ajuste la largeur pour respecter les marges */
    }

    .locations-gallery {
        justify-content: center; /* Centrer les éléments flex enfants horizontalement */
        margin-left: auto;
        margin-right: auto;
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .points-forts {
        margin: 50px auto;
        text-align: center;
    }

    .locations-morePhotos {
        display: block;
        margin: 25px auto;
    }

    .locations-reservationLinks {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
  }