* {
  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;
}

.leave-btn-wrapper {
  position: absolute;
  top: 10rem;
  left: 5%;
}

.leave-btn-wrapper button {
  padding: 10px 15px;
  background: transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  border: 1px solid #dbd5c9;
  border-radius: 40px;
  color: #dbd5c9;
  font-size: 1rem;
  font-weight: 200;
}

.gallery {
  padding: 10% 10% 4% 10%;
  position: relative;
  background-color: #080808;
}

.gallery h2 {
  font-family: "Julius_Sans_One", sans-serif;
  font-weight: 200;
  font-size: 2.4rem;
  color: #fff;
}

.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 8%;
}

.gallery-layout-inner {
  width: 100%;
  display: flex;
  gap: 1rem;
}

#s {
  height: 340px;
  object-fit: cover;
}

.gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.gallery-image:hover {
  transform: scale(1.06);
}

.videos-layout {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.videos-layout div {
  width: 33%;
}

.lightbox {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  height: 100%;
  left: 0;
  overflow: auto;
  padding-top: 3rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000 !important;
}

.lightbox-content {
  display: block;
  margin: 3rem auto auto;
  max-height: 80%;
  max-width: 80%;
}

.closeImg {
  align-items: center;
  background-color: #242421;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 25px;
  position: absolute;
  right: 3rem;
  top: 3rem;
  transition: 0.3s;
}

.close:focus,
.close:hover {
  color: #bbb;
  cursor: pointer;
  text-decoration: none;
}

.outer-element {
  overflow: hidden;
  display: block;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 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;
  }
  .leave-btn-wrapper {
    display: none;
  }
  main {
    height: 80vh;
  }
  .contact-starter-text {
    left: 4%;
  }
  h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
  }
  .gallery {
    padding: 30% 4% 4% 4%;
  }
  .gallery-layout-inner {
    flex-direction: column;
  }
  .lightbox-content {
    margin: 40% auto auto;
    max-width: 90%;
    max-height: 90%;
  }
  .closeImg {
    right: 4%;
  }
  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .header-footer {
    font-size: 2rem;
  }
  .booking-link-footer h4 {
    font-size: 2rem !important;
  }
  .booking-middle {
    gap: 0;
  }
  .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;
  }
  .leave-btn-wrapper {
    display: none;
  }
  main {
    height: 80vh;
  }
  .contact-starter-text {
    left: 4%;
  }
  h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
  }
  .gallery {
    padding: 20% 4% 4% 4%;
  }
  .gallery-layout-inner {
    flex-direction: column;
  }
  #s {
    height: 500px;
  }
  video {
    height: 500px;
  }
  .videos-layout {
    flex-direction: column;
  }
  .videos-layout div {
    width: 100%;
  }
  video {
    height: 100%;
    width: 100%;
  }
  .lightbox-content {
    margin: 40% auto auto;
    max-width: 90%;
    max-height: 90%;
  }
  .closeImg {
    right: 4%;
  }
  footer {
    background-color: #000000;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: initial;
    padding: 10% 5% 5% 5%;
  }
  .footer-layout-upper {
    flex-direction: column;
  }
  .footer-layout-lower {
    flex-direction: column;
    margin-top: 0;
  }
  .layout-links-wrapper {
    flex-direction: column;
  }
  .layout-hyper-links {
    display: none;
  }
  .layout-links-wrapper {
    width: 100%;
  }
  .footer-main-div {
    width: 100%;
  }
  footer h2 {
    display: none;
  }
  footer h4 {
    border: none;
    padding: 0;
  }
  .footer-item-mobile {
    display: none;
  }
  .partners-layout {
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .bottom-layout {
    flex-direction: column;
    text-align: center;
  }
  .bottom-layout p {
    margin: 0;
    line-height: 2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  .leave-btn-wrapper {
    display: none;
  }
  main {
    height: 80vh;
  }
  h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  .gallery {
    padding: 10% 4% 4% 4%;
  }
  footer {
    background-color: #000000;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: initial;
    padding: 10% 5% 5% 5%;
  }
  .footer-layout-upper {
    flex-direction: column;
  }
  .footer-layout-lower {
    flex-direction: column;
    margin-top: 0;
  }
  .layout-links-wrapper {
    flex-direction: column;
  }
  .layout-hyper-links {
    display: none;
  }
  .layout-links-wrapper {
    width: 100%;
  }
  .footer-main-div {
    width: 100%;
  }
  footer h2 {
    display: none;
  }
  footer h4 {
    border: none;
    padding: 0;
  }
  .footer-item-mobile {
    display: none;
  }
  .bottom-layout {
    flex-direction: column;
    text-align: center;
  }
  .bottom-layout p {
    margin: 0;
    line-height: 2rem;
  }
}

@media only screen and (min-width: 2560px) {
  .desktop-header {
    padding: 25px 55px;
  }
  .logo {
    width: 90px;
  }
  .link-item {
    font-size: 1.4rem;
  }
  .nav-button {
    font-size: 1.4rem !important;
    width: 145px;
    height: 55px;
  }
  .dropdown-item h3 {
    font-size: 2rem;
  }
  .dropdown-item p {
    font-size: 1.3rem;
  }
  .dropdown-links {
    display: none;
  }
  .leave-btn-wrapper button {
    font-size: 1.3rem;
  }
  main {
    height: 70vh;
  }
  h1 {
    font-size: 8rem;
  }
  #s {
    height: 550px;
  }
  video {
    height: 550px;
  }
  .lightbox-content {
    max-height: 95%;
    max-width: 95%;
    margin: 10% auto auto;
  }

  footer {
    background-color: #000000;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: initial;
    padding: 5% 10%;
  }
  footer h2 {
    display: none;
  }
  footer h4 {
    font-size: 1.4rem;
  }
  footer ul li {
    font-size: 1.2rem;
  }
}
