* {
  box-sizing: border-box;
}

body {
  background-color: #080808;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "PPCirka";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/PPCirka-Medium/PPCirka-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/fonts/Inter/Inter_18pt-Regular.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Inter/Inter_18pt-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Inter/Inter_18pt-Thin.ttf) format("truetype");
  font-display: swap;
}

.book-mobile {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1))
    drop-shadow(-1px 9px 9px rgba(0, 0, 0, 0.09))
    drop-shadow(-3px 19px 12px rgba(0, 0, 0, 0.05))
    drop-shadow(-6px 35px 14px rgba(0, 0, 0, 0.01))
    drop-shadow(-9px 54px 15px rgba(0, 0, 0, 0));
}

.book-mobile img {
  width: 70px;
  height: auto;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 1rem 3.4rem;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 1) 100%
  );
}

.header-desktop nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.nav-logo {
  display: flex;
  justify-content: center;
}

.desktop-logo {
  width: 128px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.nav-links a {
  font-family: "PPCirka", sans-serif;
  color: #dbd5c9;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.globe-icon {
  width: 18px;
  height: auto;
  margin-top: -5px;
}

.nav-cta a {
  font-family: "PPCirka", sans-serif;
  color: #dbd5c9;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
}

.nav-button {
  cursor: pointer;
  font-family: "PPCirka", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  color: #dbd5c9;
  background-color: #748873;
  border: none;
  padding: 15px 24px;
}

.current-site {
  color: #748873 !important;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 1.2rem 1rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 1) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.logo-mobile {
  width: 70px;
}

.line-menu {
  background-color: #dbd5c9;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #dbd5c9;
  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%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.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;
  top: 30%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  font-family: "PPCirka";
  text-decoration: none;
  padding: 0.7rem 0;
  color: #dbd5c9;
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 2rem;
}

.lang-menu-mobile {
  margin-left: 2rem;
}

.lang-menu-mobile {
  display: flex;
  align-items: center;
  gap: 3px;
}

.lang-menu-mobile a {
  color: #dbd5c9;
  font-weight: 200;
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.lang-menu-mobile img {
  width: 18px;
  height: auto;
}

.menu-divider {
  display: block;
  margin: 1rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.icons-menu {
  display: flex;
  color: #dbd5c9;
  font-family: "BebasNeue", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.icons-menu a {
  margin: 0 0.5rem;
}

main {
  padding: 10rem 8rem 6rem 8rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 6rem;
}

.img-item {
  overflow: hidden;
  display: block;
  line-height: 0;
}

.g-img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.g-img:hover {
  transform: scale(1.08);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav span {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 0 20px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

footer {
  position: relative;
  background-color: #000000;
  padding: 6rem 8rem 0 8rem;
}

.logo-footer img {
  width: 100px;
}

.footer-layout {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
  z-index: 1 !important;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 40%;
}

.footer-links div {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.6rem;
}

.footer-partner-links {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 60%;
}

.partners-layout {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  gap: 2rem;
}

.social-links-layout {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  gap: 1rem;
  margin-top: 2rem;
}

.boutique-hotel-logo {
  margin-top: -3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-weight: 100;
  font-size: 0.9rem;
  color: #dbd5c9;
}

.footer-legal a {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 0.9rem;
  text-decoration: none;
  margin: 0;
}

.line {
  height: 15px;
  width: 1px;
  background-color: #dbd5c9;
}

.line-bottom {
  height: 15px;
  width: 1px;
  background-color: #dbd5c9;
}

.credits {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 0.9rem;
  text-decoration: none;
}

.rmv-desktop {
  display: none;
}

@media (max-width: 768px) {
  .book-mobile {
    display: block;
    right: 1rem;
    bottom: 1rem;
  }
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1.5rem;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
  }
  main {
    padding: 4rem 1rem 6rem 1rem;
  }
  article {
    margin: 4rem 1rem;
  }
  .gallery-layout {
    grid-template-columns: 1fr;
  }
  .lightbox-close {
    right: 0.5rem;
  }
  .lightbox-nav span {
    padding: 0;
  }
  footer {
    padding: 8rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 4rem;
  }
  .footer-links {
    width: 100%;
  }
  .footer-links div {
    width: 47%;
  }
  .footer-partner-links {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .partners-layout {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    gap: 1rem;
  }

  .partners-layout > * {
    flex: 0 0 calc(30% - 1rem);
  }

  .social-links-layout {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
  }

  .boutique-hotel-logo {
    margin-top: -3px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.7rem;
  }
  .line-bottom {
    display: none;
  }
  .footer-bottom p {
    margin: 0;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .hat-footer {
    right: 0rem;
  }

  .rmv-mobile {
    display: none;
  }
  .rmv-desktop {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .fixed-btn {
    right: 1rem;
    bottom: 1rem;
  }
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1.5rem;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
  }
  main {
    padding: 4rem 1rem 6rem 1rem;
  }
  article {
    margin: 4rem 1rem;
  }
  .gallery-layout {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-close {
    right: 0.5rem;
  }
  .lightbox-nav span {
    padding: 0;
  }
  footer {
    padding: 8rem 1.5rem 1rem 1.5rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 4rem;
  }
  .footer-links {
    width: 80%;
  }
  .footer-partner-links {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .partners-layout {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    gap: 2rem;
  }

  .social-links-layout {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
  }

  .boutique-hotel-logo {
    margin-top: -3px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.7rem;
  }
  .line-bottom {
    display: none;
  }
  .footer-bottom p {
    margin: 0;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .hat-footer {
    right: 0rem;
  }
  .rmv-mobile {
    display: none;
  }
  .rmv-desktop {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .menu-links {
    padding-top: 7%;
  }
  main {
    padding-top: 15%;
  }

  footer {
    padding: 6rem 6rem 0 6rem;
  }
}
