@charset "utf-8";
/* PRENOTA / BOOKING SPLIT PAGE */
html, body.booking-page {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
.booking-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.booking-half {
  position: relative;
  flex: 1 1 50%;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-half:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, .5);
}
.booking-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
}
.booking-content .booking-logo {
  max-width: 220px;
  width: 60%;
  margin: 0 auto 30px;
  display: block;
}
.booking-content .booking-logo-invert {
  filter: invert(1) brightness(2);
}
.booking-content h3 {
  color: #fff;
  font-family: Architectural;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.booking-content .custom-button {
  background: rgba(19, 19, 19, .25);
}
.booking-top-bar {
  position: fixed;
  top: 25px;
  left: 25px;
  right: 25px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-back {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 19, 19, .4);
  padding: 10px 20px;
  border-radius: 30px;
  transition: background .25s ease-in-out;
}
.booking-back:hover {
  background: rgba(19, 19, 19, .75);
  color: #fff;
  text-decoration: none;
}
.booking-lang a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 19, 19, .4);
  padding: 10px 20px;
  border-radius: 30px;
  transition: background .25s ease-in-out;
}
.booking-lang a:hover {
  background: rgba(19, 19, 19, .75);
  color: #fff;
  text-decoration: none;
}
.booking-lang img {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .booking-split {
    flex-direction: column;
  }
  .booking-half {
    min-height: 50vh;
  }
  .booking-content h3 {
    font-size: 26px;
  }
}
