
.header {
  backdrop-filter: blur(10px);
  background-color: rgb(0, 0, 0, 0.2);
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  color: black;
  text-align: center;
  position: fixed;
  z-index: 1000;
  transition: background-color 0.5s ease;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}
.room-header {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
  .header_left {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
  }
  .header_left_room {
    display: flex;
    justify-content: start;
    flex-grow: 1;
    padding-left: 20px;
  }
  .header_center {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .header_center img {
      height: 80px;
    }
  .header_right {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
  }
  .header_right_room {
    display: flex;
    justify-content: end;
    align-content: end;
    flex-grow: 1;
    padding-right: 20px;
  }
  .button_home, .button_rooms, .button_information, .button_contact, .button_back {
    font-family: 'Alice', serif;
    font-size: 16px;
    padding: 1px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: transparent;
    cursor: pointer;
  }
  .button_home:hover, .button_rooms:hover, .button_information:hover, .button_contact:hover, .button_back:hover {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(255, 255, 255);
  }
  .button_book_header {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgb(246, 208, 36);
    padding: 8px;
    border: transparent;
    border-radius: 8px;
    color: black;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Alice', serif;
    cursor: pointer;
    width: 100px;
  }
  .button_book_header:hover {
    background-color: rgb(224, 185, 8);
    color: white;
  }
  .nav_button {
    font-family: 'Alice', serif;
    font-size: 16px;
    padding: 1px;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
  }
  
  .nav_button:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .nav_button.active {
    border-bottom: 1px solid white;
  }

  @media screen and (max-width: 700px) {
  .nav_button {
    font-size: 14px;
  }
  }