* {
  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: 15% 5rem 10% 5rem;
  gap: 5%;
}

.main-layout {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.contact-info,
.header-main {
  width: 47.5%;
  overflow: hidden;
}

h1 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 3.4rem;
  color: #fff6ec;
  font-weight: 400;
  margin: 0;
}

.contact-item {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden !important;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5px;
  background-color: #fff6ec;
  width: 0;
}

.animate-wrapper {
  overflow: hidden;
}

.contact-item p {
  color: #fff6ec;
  font-size: 1.3rem;
  font-weight: 100;
  margin: 0 0 10px 0;
}

.contact-item a {
  color: #fff6ec;
  font-size: 1.3rem;
  font-weight: 100;
  margin: 0;
  text-decoration: none;
}

.map-wrapper {
  width: 100%;
  height: 550px;
  margin-top: 7%;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  border-radius: 5px;
}

#map-overlay p {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 100;
  color: #fff6ec;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif !important;
  background-color: #fff6ec;
  color: #080808;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

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;
  }
  main {
    padding: 35% 1rem 5% 1rem;
  }
  .main-layout {
    flex-direction: column;
    gap: 4rem;
  }
  h1 {
    font-size: 3rem;
  }
  .contact-info,
  .header-main {
    width: 100%;
  }
  .contact-item {
    padding: 20px 0;
  }
  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .booking-middle {
    gap: 2rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .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: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  main {
    padding: 25% 1rem 5% 1rem;
  }
  h1 {
    font-size: 3rem;
  }
  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: 4rem;
  }
  .contact-item a {
    font-size: 1.4rem;
  }
  #map-overlay p {
    font-size: 1.2rem;
  }
  #map-overlay a {
    font-size: 1.2rem;
  }
  #accept-map {
    font-size: 1.1rem;
  }
  .map-wrapper {
    height: 600px;
  }
}
