h1 {
  margin: 15vh 0;
  font-size: 3rem;
  font-family: 'Playfair Display SC', sans-serif;
  font-weight: 300;
  text-align: center;
}
h2{
  font-size: 2rem;
}
h3{
  font-size: 1rem;
  font-family: 'Playfair Display SC', sans-serif;
  font-weight: 300;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.location-item {
    width: 15vw;
    margin: 10px;
    text-align: center;
}

.informations-assise {
  display: none;
  flex-direction: row;
  align-items: center;
  margin: 5vw;
  gap: 5vw;
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  border: 10px solid #ffffff;
  border-radius: 15px;
  padding: 50px;
  flex-wrap: wrap;
}
.gauche {
  height: 400px;
}
.droite {
  min-width: 40vw;
  display: flex;
  flex-direction: column;
}

.location-item img{
  width: 100%;
  border-radius: 15%;
  border: 2px solid black ;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}   




.gauche img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15%;
}



.line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
  gap: 10px;
}

.line button{
  border-radius: 5px;
  border: var(--marron-ecorce) solid 3px;
  padding: 10px;
  width: 200px;
  background-color: var(--caramel-clair);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
}

.line button:hover{
  transform: scale(1.05);
  color: transparent;
  background-color: var(--marron-ecorce);
  position: relative
}

button:hover::before {
  content: "Bientôt disponible";
  position: absolute;
  left: 20%;
  top: 30%;
  color: var(--caramel-clair);
}


.line p {
  font-size: 12px;
  text-decoration: italic;
  text-align: left;
  color: #cbcbcb;
}
.two-col-list {
    display: flex;
    margin-top: 10px;
    gap: 2rem;
    flex-wrap: wrap;
}
.two-col-list ul {
    flex: 1;
    list-style: disc inside;
}
.two-col-list ul li {
    white-space: nowrap;
}

.actif{
    display: flex;
}

/* Large desktops (≥1440px) */
@media (min-width: 1440px) {
   
}
  
/* Medium desktops (992px–1439px) */
@media (min-width: 992px) and (max-width: 1439px) {
 
}
  
/* Tablets (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
}

/* Large phones (576px–767px) */
@media (min-width: 576px) and (max-width: 767px) {
 
}

/* Standard mobile (375px–575px) */
@media (min-width: 375px) and (max-width: 575px) {
  html{
    font-size: 1;
  }
  
}

/* Small phones (<375px) */
@media (max-width: 374px) {

}