html, body {
  font-family: 'Alice', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  background-color: rgb(255, 255, 255);
}

h2 {
  font-weight:100;
}
h3 {
  font-weight: 100;
}
h4 {
  font-weight: 100;
}
p {
  font-family: 'Alice', serif;
  font-size: 16px;
  color: rgb(0, 0, 0);
}
.behind_header {
  background-color: rgb(255, 255, 255);
  height: 80px;
  width: 100%;
  display: none;
}
.tab_language {
  position: fixed;
  right: 0;
  top: 90px;
  display: none;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 80px;
  width: 30px;
  background-color: gray;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 1000;
}
.tab_language_button {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
.tab_language_button:hover {
  font-size: 16px;
}
.main_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.container_image_home {
  width: 100%;
  height: 100vh;
  min-height: 450px;
  margin: 0;
  position: relative;
}
.image_home {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 2s ease-in-out;
}
.image_home.fade-out {
  opacity: 0;
}
.welcome_title {
  font-family: 'Alice', serif;
  font-size: 5vw;
  position: absolute;
  top: 0;
  left: 50px;
  width: 80%;
  color: white; 
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}
.welcome_text {
  backdrop-filter: blur(8px);
  background-color: rgb(0, 0, 0, 0.2);
  position: absolute;
  padding: 10px;
  top: 20%;
  left: 15%;
  width: 70vw;
  border-radius: 5px;
  color: rgb(254, 254, 254); 
}
.welcome_text h1 {
  text-align: center;
  color: rgb(255, 255, 255); 
  font-size: 30px;
  margin: 10px 20px 10px 20px;
}
.welcome_text p {
  text-align: center;
  color: rgb(255, 255, 255); 
  font-size: 2vw;
  margin: 10px 20px 10px 20px;
}
.button_discover {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  background-color: rgb(252, 252, 252, 0.5);
  border: 1px solid rgb(255, 252, 252);
  color: rgb(0, 0, 0);
  padding: 7px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 100;
  font-family: 'Alice', serif;
  cursor: pointer;
  width: 210px;
}
.button_discover:hover {
  background-color: rgb(0, 0, 0, 0.8);
  color: white;
  border-color: black;
}
.line_heads {
  width: 85%;
  margin-bottom: 20px;
  margin-top: 20px;
}

.container_rooms {
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px;
}
.search_bar {
  width: 45%;
  max-width: 550px;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgb(243, 242, 242);
}
.search_bar label {
  font-size: 15px;
}
.search_bar_datepicker {
  gap: 5px;
  width: 160px;
  height: 25px;
  font-size: 12px;
  align-items: start;
  justify-content: space-between;
  text-align: center;
  border: 1px solid rgb(149, 148, 148);
  border-radius: 2px;
}
.search_bar_button {
  height: 26px;
  font-size: 14px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 3px;
  background-color: transparent;
}
.search_bar_button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.rooms {
  color: rgb(0, 0, 0);
  width: 85%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
.room {
  background-color: rgb(243, 242, 242);
  color: black;
  padding: 0px;
  display: grid;
  grid-template-columns:  1fr 1fr;
  border-radius: 10px;
}
.room1_sliderbox, .room2_sliderbox, .room3_sliderbox, .room4_sliderbox {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: grid;
}
.room1_image, .room2_image, .room3_image, .room4_image {
  display: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  object-fit: cover;
}
.room1_image.active, .room2_image.active, .room3_image.active, .room4_image.active {
  display: block;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 1;
  color: rgb(255, 255, 255);
  padding: 0;
  margin: 0;
}
.arrow:hover {
  background-color: rgba(80, 79, 79, 0.8);
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}

.room_info_box {
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
    .room_info_title {
      align-self: center;
      text-align: center;
    }
    .room_info_price {
      align-self: center;

    }
    .room_info_text {
      margin: 0;
      flex-grow: 1;
    }
    .room_info_button {
      background-color: transparent;
      padding: 7px;
      border: 1px solid rgb(0, 0, 0);
      border-radius: 8px;
      color: black;
      font-size: 18px;
      font-weight: 100;
      font-family: 'Alice', serif;
      cursor: pointer;
      width: 210px;
      margin-bottom: 20px;
      margin-top: 20px;
      align-self: center;
    }

.room_options img {
  width: 40px;
  height: 40px;
}
.room_info_button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.container_information {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}
.info {
  display: flex;
  margin: 0;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.container_contact {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
}
.container_contact h3 {
  width: 80%;
}

.container_contact h2, .container_contact h3, .container_contact p {
  color: rgb(255, 255, 255);
}
.contact_box {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.contact_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.contact_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  width: 100%;
}
.contact_row * {
  margin: 5px 0;
  color: rgb(255, 255, 255);
}
.contact_info p {
  color: rgb(255, 255, 255);
}
.contact_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 80%;
}

.contact_form form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.form_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form_group label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

.form_group input,
.form_group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Alice', serif;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #000;
}

.contact_button {
  padding: 10px 20px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 5px;
  font-family: 'Alice', serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact_button:hover {
  background-color: #fff;
  color: #000;
}


@media screen and (max-width: 700px) {
  
  .welcome_title {
    font-size: 30px;
    top: 15%;
    left: 32%;
    width: 80%;
  }
  .welcome_title_text {
    display: none;
  }
  .welcome_text {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 75vw;
    padding: 5px;
  }
  .welcome_text h1 {
    font-size: 17px;
    margin: 10px 5px 10px 5px;
  }
  .welcome_text p {
    font-size: 14px;
    margin: 10px 20px 10px 20px;
  }
  .container_image_home {
    height: 100dvh;
  }
  .rooms {
    width: 100%;
  }
  .room {
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: center;
  }
  .room1_image, .room2_image, .room3_image, .room4_image {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
  }
  .search_bar {
    width: 90%;
    min-width: 100px;
    margin-bottom: 20px;
  }
  .search_bar_button {
    height: 36px;
    margin-left: 10px;
  }
  .contact_box {
    grid-template-columns: 1fr;
  }
  .contact_form form {
    padding-top: 30px;
  }

}