* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #080808;
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "PP_Pangaia";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/PPPangaia/PPPangaia-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Thin.ttf) format("truetype");
}

.header-desktop {
  position: fixed;
  z-index: 100;
  left: 0;
  padding: 20px 35px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background-color: #080808;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 6px 10px rgba(0, 0, 0, 0.3);
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links {
  display: flex;
  gap: 25px;
}

.links a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.info-links-nav a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.text {
  height: 1.3rem;
  line-height: 1.3rem;
  overflow: hidden !important;
  position: relative;
  display: inline-block;
}

.text.play .letter {
  transform: translateY(-100%);
}

.text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
  position: relative;
}

.letter:nth-child(1) {
  transition-delay: 0s;
}

.letter:nth-child(2) {
  transition-delay: 0.02s;
}

.letter:nth-child(3) {
  transition-delay: 0.05s;
}

.letter:nth-child(4) {
  transition-delay: 0.08s;
}

.letter:nth-child(5) {
  transition-delay: 0.11s;
}

.letter:nth-child(6) {
  transition-delay: 0.14s;
}

.letter:nth-child(7) {
  transition-delay: 0.17s;
}

.letter:nth-child(8) {
  transition-delay: 0.16s;
}

.letter:nth-child(9) {
  transition-delay: 0.24s;
}

.letter:nth-child(10) {
  transition-delay: 0.27s;
}

.letter:nth-child(11) {
  transition-delay: 0.3s;
}

.letter:nth-child(12) {
  transition-delay: 0.33s;
}

.letter:nth-child(13) {
  transition-delay: 0.36s;
}

.letter:nth-child(14) {
  transition-delay: 0.39s;
}

.letter:nth-child(15) {
  transition-delay: 0.42s;
}

.info-links-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  /* backdrop-filter: blur(5px);
  border-bottom: 1px solid #dbd5c9; */
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #080808;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.7rem 0;
  color: #fff6ec;
  font-weight: 100;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #dbd5c9;
}

.menu-bottom a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1rem;
  text-decoration: none;
}

.menu-rooms {
  background-color: #080808;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.menu-rooms-closing {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.4rem;
  width: 100%;
  position: absolute;
  top: 0;
}

.info-links-nav button {
  background-color: #fff6ec;
  color: #080808;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  padding: 13px 33px;
  font-size: 1rem;
  font-weight: 200;
}

main {
  padding: 10% 5rem 10% 5rem;
  min-height: 100vh;
  position: relative;
}

h1 {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #fff6ec;
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: #fff6ec;
  font-weight: 200;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 200;
  color: #fff6ec;
  font-size: 1.4rem;
}

.form-pos {
  width: 100%;
  margin-top: 2rem;
}

#multiStepForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin: 0 auto;
}

.navigation-buttons {
  margin-top: 1.5rem;
}

.legal-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.input {
  width: 100% !important;
}

input,
select {
  height: 3.5rem;
}

input,
select,
option,
textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #171717;
  font-size: 1rem;
  font-family: "Inter", sans-serif !important;
  font-weight: 200 !important;
  font-size: 1.1rem;
  cursor: pointer;
  background-color: #171717;
  color: #fff6ec;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #f49b1f;
  outline: none;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.legal-wrapper label {
  font-size: 0.9rem;
  font-weight: 100;
  cursor: pointer;
}

.legal-wrapper label a {
  color: #f49b1f;
  text-decoration: none;
}

.send-btn {
  color: #080808;
  background-color: #fff6ec;
  width: 140px;
  height: 45px;
  border: none;
  margin-left: 1rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  font-weight: 200 !important;
  margin-top: 2rem;
}

.menu-btns {
  color: #080808;
  background-color: #fff6ec;
  width: 140px;
  height: 45px;
  border: none;
  margin-left: 1rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  font-weight: 200 !important;
}

.form-page {
  display: none;
}
.form-page.active {
  display: block;
  width: 100%;
  margin-top: 10%;
}
.navigation-buttons {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  gap: 2rem;
  margin-top: 2rem;
}

footer {
  background-color: #0e0e0e;
  padding: 4rem 5rem 2rem 5rem;
}

.pos-book-rquest {
  display: flex;
  justify-content: center;
  margin: 9rem 0;
}

.icon-h4-layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-footer {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  margin: 0;
  color: #fff6ec;
}

.booking-middle {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.booking-circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #d9c195;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.booking-circle img {
  filter: invert(100);
  width: 20px;
}

.booking-link-footer a {
  color: #d9c195 !important;
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  margin: 0;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.booking-link-footer h4 {
  margin: 0;
  font-weight: 400;
  font-size: 3rem;
}

.booking-footer {
  margin-left: calc(72px + 1rem);
}

.footer-links-layout {
  display: flex;
  justify-content: space-evenly;
}

.footer-links-layout h4 {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff6ec;
}

.footer-links-layout ul {
  padding: 0;
}

.footer-links-layout ul li {
  list-style: none;
  line-height: 1.5rem;
}

.footer-links-layout ul li a {
  color: #fff6ec;
  font-size: 1.1rem;
  font-weight: 100;
  text-decoration: none;
}

.linked-hv-f {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.linked-hv-f:before {
  background-color: #f49b1f;
  bottom: 0;
  content: "";
  height: 0.5px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 0;
}

.linked-hv-f:hover:before {
  width: 100%;
}

.linked-hv-f:hover {
  color: #f49b1f !important;
}

.social-icons-layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sc-icon-m {
  width: 20px;
  height: auto;
}

.sc-icon-l {
  width: 22px;
  height: auto;
}

.partners-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.hotel-logo {
  width: 80px;
  height: auto;
}

.bs-logo {
  width: 60px;
  height: auto;
}

.bs-logo-l {
  width: 68px;
  height: auto;
}

.philosoph-logo {
  width: 110px;
  height: auto;
  margin: 0 -15px 0 -20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #fff6ec;
  font-weight: 100;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 0.9rem;
  text-decoration: none;
  text-underline-offset: 2px;
}

.credits:hover {
  color: #dc2626;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  h1 {
    font-size: 3rem;
  }
  main {
    padding: 30% 1rem;
  }
  #multiStepForm {
    width: 100%;
  }
  .navigation-buttons {
    display: flex;
    right: 1rem;
    bottom: 1rem;
    gap: 0;
  }

  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .booking-middle {
    gap: 2rem;
  }
  .header-footer {
    font-size: 2rem;
  }
  .booking-link-footer h4 {
    font-size: 2rem !important;
  }
  .booking-circle {
    width: 80px;
    height: 80px;
  }
  .partners-layout {
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-links-layout {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  main {
    padding: 20% 1rem;
  }
  #multiStepForm {
    width: 60%;
  }
  .navigation-buttons {
    display: flex;
    right: 1rem;
    bottom: 1rem;
    gap: 0;
  }
  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .booking-middle {
    gap: 2rem;
  }
  .header-footer {
    font-size: 2rem;
  }
  .booking-link-footer h4 {
    font-size: 2rem !important;
  }
  .booking-circle {
    width: 80px;
    height: 80px;
  }
  .footer-links-layout {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .partners-layout {
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 2560px) {
  .header-desktop {
    padding: 25px 45px;
  }
  .links a {
    font-size: 1.3rem;
  }
  .info-links-nav a {
    font-size: 1.3rem;
  }
  .info-links-nav button {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
  h1 {
    font-size: 3.6rem;
  }
  label {
    font-size: 1.6rem;
  }
  input,
  select,
  option,
  textarea {
    font-size: 1.2rem;
    padding: 0.7rem;
  }
  .menu-btns {
    font-size: 1.1rem;
  }
  .send-btn {
    font-size: 1.1rem;
  }
}
