* {
  padding: 0px;
  margin: 0px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.dore {
  color: gold !important;
}

/* POLICE D'ÉCRITURE =================================================================*/

/*  font-family: Arial, Helvetica, sans-serif; Corp de texte
    font-family: Georgia, 'Times New Roman', Times, serif; Texte
    font-family: 'EB Garamond', serif; 
*/

/* BARRE DE RECHERCHE =================================================================*/

.SeachBar {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Search,
.Search-btn {
  border: 0;
  padding: 0 10px;
  text-align: center;
  color: black;
  font-size: 25px;
  font-weight: 1000;
  height: 50px;
}

.Search {
  border-radius: 30px 0 0 30px;
  width: 500px;
  
}

.Search-btn {
  border-radius: 0 30px 30px 0;
  background-color: #91713c;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out, font-size 0.2s ease-in-out;
  cursor: pointer;
}

.Search-btn:hover {
  background-color: #623e2a;
  font-size: 30px;
  font-weight: 800;
}

/* HEADER */
header {
  background-image: url("Img/backdroung-accueil.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.content {
  text-align: center;
  color: #ffffff;
}

.content h1 {
  font-family: 'EB Garamond', serif;
  text-transform: uppercase;
  font-size: 3.5rem;
  margin: 20px auto;
  overflow: hidden;
  border-right: .15em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
}

/* ANIMATION ÉCRITURE =================================================================*/ 
@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: rgb(255, 255, 255);
  }
}

   /* SECTION UNE PRÉSENTATION DE L'HOTEL =========================================================== */
   .Section-un {
    align-items: center;
    background-color: #f4f1ed;
    display: flex;
    padding: 77px;
    gap: 100px;
}

.Section-un h2 {
    font-size: 3.125rem;
    color: #91713c;
    font-family: 'EB Garamond', serif;
}

.Section-un p {
    font-size: 1.5rem;
    color: #91713c;
    margin: 20px 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* SLIDER DE LA SECTION SUR LA PRÉSENTATION DE L'HOTEL  ======================================================================================== */
.slideH-container {
    position: relative;
}

.slideH-container img {
    height: 500px;
    width: 400px;
    transition: transform 0.5s;
    border-radius: 10px;
}

.slideH-container img:hover {
    transform: translateY(-10px);
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: transform 0.5s;
}
.prev:hover, .next:hover {
  transform: scale(1.1);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.dot-div {
    text-align: right;
}
/* SECTION DEUX CHAMBRE D'HOTEL=========================================================== */
.Section-deux {
  background-color: #f4f1ed;
  height: 100vh;
  width: 100%;
}

h3 {
  font-size: 3.125rem;
  font-family: 'EB Garamond', serif;
  padding-top: 60px;
  color: #91713c;
  text-align: center;
  text-transform: uppercase
  
}

.Room-div {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 100vw;
  gap: 10px;
}

.Room-div img {
  height: 216px;
  width: 398px;
  transition: transform 0.5s;
}
.Room-div img:hover {
  transform: translateY(-10px);

}

.Room-border {
  border: solid 2px #623e2a;
  height: 216px;
  width: 396px;
}

.Room-border p {
  font-size: 1.3rem;
  color: #623e2a;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.Room-border a {
  border-radius: 20px 20px 20px 20px;
  background-color: #91713c;
  padding: 10px;
  margin-top: 20px;
  margin-left: 50px;
  margin-right: 50px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  justify-content: center;
  transition: all 0.5s;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.Room-border a:hover {
  background-color: #623e2a;
  border: solid 1px #91713c;
  color: white;
  text-decoration: none;
  transform: scale(1.1);
}

/* SECTION TROIS PRÉSENTATION SUITE GOLDEN RESORT =========================================================== */
.Section-trois {
  background-color: #f4f1ed;
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
  align-items: center;
}

.Section-trois h4 {
  font-size: 2.5rem;
  color: #91713c;
  font-family: 'EB Garamond', serif;
}

.Section-trois p {
  font-size: 1rem;
  color: #91713c;
  margin: 1rem 0;
  font-family: Arial, Helvetica, sans-serif;
}

.Section-trois img {
  height: auto;
  width: 100%;
  max-width: 600px;
  transition: transform 0.5s;
  display: block;
  border-radius: 10px;
}

.Section-trois img:hover {
  transform: translateY(-10px);
}

.Section-trois div {
  padding: 2%;
  flex: 1 1 45%;
  min-width: 300px;
}

.prectangle {
  height: auto;
  width: 100%;
  max-width: 600px;
  border: solid 2px #623e2a;
  text-align: center;
  padding: 1rem;
}
/* SECTION QUATRE SUITE PRÉSENTATION DE LA SUITE GOLDEN RESORT =========================================================== */
.Section-quatre {
  background-color: #f4f1ed;
  display: flex;
  justify-content: space-between;
  padding: 80px;
  gap: 20px; 
}

.Section-quatre .gauche,
.Section-quatre .droite {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.Section-quatre .gauche img,
.Section-quatre .droite img {
  height: 100%;
  border-radius: 10px;
  transition: transform 0.5s;
}

.Section-quatre .gauche {
  flex: 1; 
}

.Section-quatre .droite {
  flex: 2; 
}

.Section-quatre img:hover {
  transform: translateY(-10px);
}

.Section-quatre .gauche p,
.Section-quatre .droite p {
  border: solid 2px #623e2a;
  color: #623e2a;
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.Section-quatre .gauche img,
.Section-quatre .droite img {
  object-fit: cover;
  width: 100%;
}

/* SECTION OFFRES ET PROMOTIONS =========================================================== */
.Section-Promos {
  background-color: #f4f1ed;
  height: 100vh;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

h5 {
  text-transform: uppercase;
  font-size: 3.125rem;
  padding-top: 60px;
  color: #91713c;
  text-align: center;
  font-family: 'EB Garamond', serif;
}

.Promos-div {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  max-width: 100vw;
  gap: 10px;


}

.Promos-div img {
  height: 216px;
  width: 398px;
  transition: transform 0.5s;
}

.Promos-div img:hover {
  transform: translateY(-10px);
}


.Promos-border {
  border: solid 2px #623e2a;
  height: 216px;
  width: 396px;
}

.Promos-border p {
  font-size: 1.2rem;
  color: #623e2a;
  padding: 10px;
}
.Promos-border ul {
  padding-left: 30px;
}

/* SECTION COMMENTAIRE =========================================================== */
.label-container button {
  border: none;
  cursor: pointer;
}

.Section-Commentaire {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

.card-slider {
  display: flex;
  overflow-x: auto;
  margin-top: 20px;
  gap: 50px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card-slider::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.label-container {
  display: flex;
  align-items: center;
}

.label-container {
  display: flex;
  align-items: center;
}

.label-container button {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  color: #111;
  cursor: pointer;
  padding: 10px;
  width: fit-content;
  margin-left: 5px;
}

.label-container button:disabled {
  background-color: whitesmoke;
  cursor: not-allowed;
  border: none;
}

.Commentaire-card {
  transition: transform 0.3s ease-in-out;
  font-family: "Arial", sans-serif;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1));
  border-radius: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.Commentaire-card:hover {
  transform: scale(0.95);
}

.image-container img {
  width: 350px;
  height: 240px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  image-rendering: pixelated;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1)100%);
}

.Commentaire {
  width: 350px;
  height: 230px;
  color: white;
}

.Commentaire img {
  width: 48px;
  height: 48px;
  margin: 0;
}


.product-image {
  position: relative;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.pmargin {
  margin: 25px 0;
}

h6 {
  text-transform: uppercase;
  font-size: 3.125rem;
  padding-bottom: 90px;
  padding-top: 16px;
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: 'EB Garamond', serif;
}

.Comment-Fond {
  display: flex;
  flex-direction: row-reverse;
  background-image: url(Img/commentaire-fond.webp);
  background-size: cover;
  height: 100vh;
}

.note {
  padding-left: 10px;
}

/* BOUTON METTRE UN COMMENTAIRE =========================================================== */
.Add-comment button {
  background-color: #623E2A;
  color: white;
  padding: 15px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.5s;
}

.Add-comment button:hover {
  background-color: #91713c;
  color: white;
  text-decoration: none;
  transform: scale(1.1);
}

.Add-comment {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* FORMULAIRE D'AJOUT D'UN COMMENTAIRE =========================================================== */
.CommentForm-Modale {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.CommentForm-Modale.active {
  visibility: visible;
}

.Commentaire-Form {
  margin: 90px auto 0px;
  padding: 0;
  font-family: 'Tilt Neon', cursive;
  font-weight: 400;
  line-height: 1.2;
  width: 400px;
  color: white;
  background-color: #623E2A;
  padding: 10px;
  border-radius: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.form-block span {
  color: #E3E3E3;
  font-style: italic;
}

.Commentaire-Form .form-block:not(:first-child) {
  margin-top: 1em;
}

.Commentaire-Form input,
.Commentaire-Form textarea
{
  margin-top: 8px;
  width: 100%;
  height: 35px;
  border: 2px solid gray;
  color: rgb(0, 0, 0);
  border-radius: 4px;
  padding: 8px 12px;
}

.Commentaire-Form textarea {
  min-height: 60px;
  max-height: 60px;
  max-width: 100%;
  min-width: 100%;
  padding-top: 1em;
}

.ArrierePlan {
  position: absolute;
  width: 100%;
  height: 100%;
  
}

/* BOUTON QUITTER + TITRE DU FORMULAIRE DE COMMENTAIRE ===================================*/
.CommentClose {
  background-color: #B30000;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  top: -20px;
  left: 340px;
  transition: background-color 0.5s , color 0.5s;
}
.CommentClose:hover {
  background-color: #FF0000;
  color: white;
}

.comment-titre {
  margin: 0;
  font-size: 1.3rem;
}

/* FOOTER =========================================================== */
footer {
  background-color: #623E2A;
  width: 100%;
  height: 100vh;
}

.Footer-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 100px;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.Footer-border {
  border: solid 2px white;
  height: 242px;
  width: 340px;
  padding-left: 5px;
  color: white;
  font-size: 1.3rem;
}

.Titre {
  text-align: center;
}

.Footer-box a {
  color: white;
  padding: 10px;
  text-decoration: none;
  transition: all 0.5s;
}

.Footer-border i {
  transition: all 0.5s;
}
.Footer-border i:hover {
  color: #91713c;
transform: scale(1.5);
}

.Titrep {
  text-transform: uppercase;
  font-size: 2rem;
  padding-top: 100px;
  padding-left: 5%;
  color: white;
  font-family: 'EB Garamond', serif;
}

.mentionsLegale a {
  text-decoration: underline;
}

.mentionsLegale a:hover {
  text-decoration: none;
}

.HDP {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  font-family: Arial, Helvetica, sans-serif;

}

.HDP a {
  border-radius: 20px 20px 20px 20px;
  background-color: #91713c;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 20px;
  padding-left: 100px;
  padding-right: 100px;
  transition: all 0.5s ease;
  display: flex;
  text-align: center;
}

.HDP a:hover {
  background-color: #ffffff;
  color: #91713c;
  text-decoration: none;
  transform: scale(1.1);
}