/**********  CHAMBRES  ***********/

section.chambre {
  max-width: 1200px;
  position: relative;
  margin: 0px auto 100px;
}
.chambre > h3 {
  display:none;
}

.photo-chambre {
  position: relative;
  height: min(100vh, 800px);
  overflow: visible;
  background-position: center center;
  background-size: cover;
  /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); */
  height: min(100vh, 800px);
  border-radius: 16px;

  background-position: center;
  background-size: cover;
}
.photo-chambre h3 {
  position:absolute;
  top:0;
  width:100%;

  color:white;
  /* text-shadow: rgba(255, 255, 255, 0.5); */
  text-align: center;
  padding:0.6rem 1rem 1.2rem;

  display:none
  

}

.photo-chambre img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: min(100vh, 800px);
  border-radius: 16px;
  border:solid 1px rgba(0, 0, 0, 0.2);
  
}
.photo-chambre img.fade {
  transition: 0.8s ease-in-out;
  opacity: 1;
}
.photo-chambre img.hide {
  opacity: 0;
  transition: none;
}
.timbres {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  transform: translateY(-50%);
}
.timbres img {
  width: max(8vw, 90px);
  height: max(8vw, 90px);
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: solid 3px rgba(255, 255, 255, 0.5);
  transition: 0.2s ease-in-out;
}
.timbres img.show {
  border: solid 3px rgba(255, 255, 255, 1);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.chambre-description {
  margin: max(6vw, 40px) auto 0;
  max-width: min(96%,1100px);
}
.chambre-description h3 {
  display:block;
}
@media screen and (max-width: 900px) {
  .chambre > h3 {
    display:block;
    padding: 0.5rem 0 1rem;
  }

  .chambre-description {
    margin: max(7vw, 40px) auto 0;
    padding-inline: 1rem;
  }
  .chambre-description h3 {
    display:none;
  }
}
.chambre-description p {
  text-align: left;
  margin:8px auto;
  font-size:1.1rem;
}
.chambre-description ul {
  /* display: flex;
  justify-content: flex-start;
  align-items: flex-start;
    gap: 10px; */
  column-count: 2;

  list-style-type: "👉🏼";
  width: fit-content;
  padding: 0;
  font-size:1.1rem;
  display:inline-block;
  margin:0.5rem 0 0.5rem 2rem;
  max-width:70%;
}
.chambre-description ul li {
  padding-left: 6px;
}

.chambre-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: max(3vw, 30px);
  width: fit-content;
  margin: auto;
}
.card-tarif {
  border: solid 1px #aaa;
  border-radius: 12px;
  margin: auto 8px;
  display: block;
  overflow: hidden;
  width: fit-content;
  float:right;
  text-align: center;
  font-size:1rem;
  max-width:160px;
}
.card-tarif div {
  display: block;
  margin: auto;
  padding: 4px 10px;

}
.card-tarif div.prix {
  font-size: 1.6rem;
  line-height: normal;
}
.card-tarif div.reserver {
  background-color: #bf9860 !important;
  transition: background-color 0.2s ease-in-out;
}
.card-tarif div.reserver a {
  text-transform: uppercase;
  color:white;
  text-decoration: none;
  display:block;
  width:100%;
  padding:6px 0;
  font-size:1.2rem;
}
.card-tarif div.reserver:hover  {
  background-color: #8f7148 !important;
}



.card-tarif div div {
  font-size: 0.9rem;
  line-height:0.9rem;
}

.card-tarif > div:nth-child(2n + 1) {
  background-color: #ddd;
}
.card-tarif > div:nth-child(1) {
  font-weight:400;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .card-tarif {
    max-width:140px;
  }
  .card-tarif > div:nth-child(1) {
    font-size: 1rem;
  }
  .card-tarif div.prix {
    font-size: 1.4rem;
  }
  .card-tarif div div {
    font-size: 0.8rem;
  }
}
.meilleur-tarif {
  font-size:0.8rem;
  background-color: #fff !important;
  color:#B27A4B;
}
.avertissement {
  padding: 1rem 2rem;
  border: solid 1px #aaa;
  border-radius: 1rem;
  margin: 2rem;
  background-color: #f0f1e4;
  font-weight: 700;
  text-align: center;
  color: #888;
}

@media screen and (max-width: 800px) {
  .photo-chambre {
    height: auto;
    box-shadow: none;
  }
  .photo-chambre > img {
    display: none;
    height: 0;
  }
  .timbres {
    position: relative;
    flex-direction: column;
    gap: 1vw;

    transform: none;
    padding: 0.5rem 0;
    bottom: auto;
    left: auto;
  }
  .timbres > img {
    width: min(96vw, 500px);
    height: auto;
    max-width: none;
    max-height: none;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center center;
    border: solid 2px rgba(255, 255, 255, 0.5);
    transition: none;
  }
}