* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  font-family: "Roboto", sans-serif;
  background-color: #080808;
  position: relative;
  z-index: -1;
}

.page {
  background-color: #080808;
}
body.light-mode footer {
  background-color: #0f0f0f;
}
body.light-mode header.scrolled {
  background-color: #0f0f0f;
}
body.light-mode .header-dropdown-one {
  background-color: #0f0f0f;
}
body.light-mode .header-dropdown-two {
  background-color: #0f0f0f;
}
body.light-mode .menu-mobile {
  background-color: #0f0f0f;
}
body.light-mode .page {
  background-color: #fdfaf6;
}
body.light-mode .intro-section {
  color: #242421;
}
body.light-mode .intro-section .secondary-cta {
  background-color: #2d2d2d;
  color: #fdfaf6;
}
body.light-mode .rooms-section {
  background-color: #f8f4e1;
  color: #242421;
}
body.light-mode .faq-section {
  color: #242421;
}
body.light-mode .blog-section h2 {
  color: #242421;
}
body.light-mode .blog-intro p {
  color: #242421;
}
body.light-mode .faq-ctas a {
  color: #242421;
}
body.light-mode .faq-icon img {
  filter: invert(100%);
}
body.light-mode .faq-cta .secondary-cta {
  background-color: #2d2d2d;
  color: #fdfaf6;
}
body.light-mode .slider-item {
  background-color: #faedce;
}
body.light-mode .rooms-ctas a {
  color: #242421;
}
body.light-mode .rooms-ctas img {
  filter: invert(100%);
}
body.light-mode .slider-line {
  background-color: #242421;
}
body.light-mode .next-slider {
  border: 1px solid #242421;
}
body.light-mode .prev-slider {
  border: 1px solid #242421;
}
body.light-mode .slider-buttons-wrapper img {
  filter: invert(100%);
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@font-face {
  font-family: "PPCirka";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/PPCirka/PPCirka-Bold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/roboto-v50-latin-300.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/fonts/Roboto/roboto-v50-latin-regular.woff2) format("woff2");
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/rubik-regular.ttf") format("truetype");
  unicode-range: U+0020-007E;
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/rubik-700.ttf") format("truetype");
  unicode-range: U+0020-007E;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #242421;
}
::-webkit-scrollbar-thumb {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.promo-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #fff2e040, transparent 45%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible .promo-popup__backdrop {
  opacity: 1;
}

.promo-popup__card {
  position: relative;
  width: min(92vw, 660px);
  background: #fff2e0;
  color: #1a1a1d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.promo-popup.is-visible .promo-popup__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid #1a1a1d1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.promo-popup__close:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.promo-popup__close img {
  width: 18px;
  height: 18px;
  filter: invert(100%);
}

.promo-popup__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.promo-popup__content {
  padding: 1.8rem 2rem 2rem;
  display: grid;
  gap: 0.6rem;
}

.promo-popup__content h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "PPCirka", sans-serif;
  color: #1a1a1d;
}

.promo-popup__content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 200;
  color: #1a1a1d;
}

.promo-popup__cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: #1a1a1d;
  color: #fff2e0;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-popup__cta img {
  width: 10px;
  height: auto;
  margin-top: 1px;
}

.promo-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .promo-popup__card {
    width: 100%;
  }

  .promo-popup__image img {
    height: 200px;
  }

  .promo-popup__content {
    padding: 1.4rem 1.5rem 1.6rem;
  }

  .promo-popup__content h3 {
    font-size: 1.5rem;
  }

  .promo-popup__content p {
    font-size: 1rem;
  }
}

.side-items {
  position: fixed;
  right: 0;
  top: 35%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.discount-code {
  color: #8c1007;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
}

.booking-reviews {
  position: relative;
}

.review-badge {
  width: 170px;
  height: auto;
  border-radius: 5px 0 0 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.close-review-item {
  background: transparent;
  border: none;
  position: absolute;
  top: 3px;
  right: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.booking-reviews:hover .close-review-item {
  opacity: 0.7;
}

.close-review-item:hover {
  opacity: 1 !important;
}

.close-review-item img {
  width: 26px;
  display: block;
}

.desktop-header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px 50px;
  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.no-shadow {
  box-shadow: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 69px;
  height: auto;
}

.logo-mobile {
  width: 50px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.link-item {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-button {
  background-color: #8c1007;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 1.1rem;
  min-width: 170px;
  text-decoration: none;
  color: #dbd5c9;
  box-shadow:
    0 73px 20px 0 rgba(79, 79, 79, 0),
    0 47px 19px 0 rgba(79, 79, 79, 0.01),
    0 26px 16px 0 rgba(79, 79, 79, 0.05),
    0 12px 12px 0 rgba(79, 79, 79, 0.09),
    0 3px 6px 0 rgba(79, 79, 79, 0.1);
  overflow: hidden !important;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
  border: none;
}

.header-dropdown-one {
  height: 0;
  background-color: #080808;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  position: fixed;
  z-index: 100;
  overflow: hidden;
}

.header-dropdown-two {
  height: 0;
  background-color: #080808;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  position: fixed;
  z-index: 100;
  overflow: hidden;
}

.link-item img {
  transition: transform 0.4s ease-in-out;
}

#dropdown-one:hover img {
  transform: rotate(180deg);
}

#dropdown-two:hover img {
  transform: rotate(180deg);
}

.dropdown-one-layout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 150px 8rem 4rem 8rem;
  gap: 5%;
}

.dropdown-side {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dropdown-item {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  cursor: pointer;
}

.dropdown-item {
  color: #dbd5c9;
}

.dropdown-links a {
  color: #dbd5c9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 200;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.dropdown-item h3 {
  font-family: "PPCirka", sans-serif;
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 1rem;
}

.dropdown-item p {
  font-size: 0.9rem;
  font-weight: 200;
}

sup {
  font-size: 0.6rem;
}

.dropdown-item-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.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: #dbd5c9;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #dbd5c9;
}

.menu-bottom a {
  font-size: 1rem;
  font-weight: 200;
  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;
}

.starter-img-container {
  width: 100%;
  height: 100vh;
}

video {
  filter: brightness(55%);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

main {
  position: relative;
  height: 100vh;
}

.starter-text {
  position: absolute;
  bottom: 25%;
  left: 6rem;
  width: 80%;
}

h1 {
  font-family: "PPCirka", serif;
  font-size: 5.2rem;
  color: #dbd5c9;
  font-weight: 800;
  margin: 0;
}

.starter-text p {
  color: #dbd5c9;
  font-size: 1.3rem;
  font-weight: 200;
}

.starter-text h2 {
  color: #dbd5c9;
  font-size: 1.3rem;
  font-weight: 200;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-cta {
  box-shadow:
    0 103px 29px 0 rgba(0, 0, 0, 0),
    0 66px 26px 0 rgba(0, 0, 0, 0.02),
    0 37px 22px 0 rgba(0, 0, 0, 0.08),
    0 16px 16px 0 rgba(0, 0, 0, 0.13),
    0 4px 9px 0 rgba(0, 0, 0, 0.15) !important;
}

.hero-cta-wrapper .secondary-cta {
  background-color: #fef3e2;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #0f0f0f;
  box-shadow:
    0 73px 20px 0 rgba(79, 79, 79, 0),
    0 47px 19px 0 rgba(79, 79, 79, 0.01),
    0 26px 16px 0 rgba(79, 79, 79, 0.05),
    0 12px 12px 0 rgba(79, 79, 79, 0.09),
    0 3px 6px 0 rgba(79, 79, 79, 0.1);
  overflow: hidden !important;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

.secondary-cta:hover {
  opacity: 0.6;
}

.dirs21-widget-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 6rem;
}

.mode-wrapper {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.lightmode-badge {
  margin-left: -10px;
}

.lightmode-badge img {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.lightmode-badge.hide img {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.toggle-switch {
  position: relative;
  width: 70px;
  height: 33px;
  background-color: #dbd5c9;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 1s ease;
}

.toggle-switch .switch {
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left 0.5s cubic-bezier(0.68, -0.55, 0.17, 1.55);
}

.toggle-switch.day .switch {
  left: 6px;
  background-color: #dbd5c9;
}

.toggle-switch.night .switch {
  left: 40px;
  background-color: #1b1d1c;
}

.toggle-switch.day {
  background-color: #1b1d1c;
}

.toggle-switch.night {
  background-color: #dbd5c9;
}

.icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate(-50%, -50%);
}

.sun,
.moon {
  width: 15px;
  height: 15px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.sun {
  position: absolute;
  left: 8px;
  top: 6px;
}

.moon {
  position: absolute;
  right: 13px;
  top: 6px;
}

.toggle-switch.day .sun {
  opacity: 1;
}

.toggle-switch.day .moon {
  opacity: 0;
}

.toggle-switch.night .sun {
  opacity: 0;
}

.toggle-switch.night .moon {
  opacity: 1;
}

.intro-section {
  margin: 10rem 8rem 9rem 8rem;
  color: #dbd5c9;
}

.intro-layout {
  display: flex;
  justify-content: space-between;
}

.text-intro {
  width: 40%;
}

.intro-welcome {
  font-weight: 200;
  font-size: 1.2rem;
}

.intro-section h2 {
  font-family: "PPCirka", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
}

.intro-text p {
  font-size: 1.3rem;
  font-weight: 200;
}

.intro-info-layout {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.info-item p {
  font-size: 1.3rem;
  font-weight: 200;
  margin-top: 0;
}

.info-header {
  font-family: "PPCirka", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
}

.images-intro {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.image-down {
  padding-top: 5rem;
}

.images-intro img {
  width: 300px;
  height: 500px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.images-intro img:hover {
  transform: scale(1.08);
}

.images-intro-wrapper {
  overflow: hidden;
  border-radius: 5px;
  clip-path: inset(100% 0% 0% 0%);
}

.intro-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-ctas button {
  background-color: #c5ae80;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #1b1d1c;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.intro-ctas button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.intro-ctas a {
  font-size: 1.2rem;
  font-weight: 200;
  color: #dbd5c9;
  text-underline-offset: 3px;
  gap: 4px;
}

.rooms-section {
  padding: 9rem 8rem 9rem 8rem;
  color: #dbd5c9;
  background-color: #000000;
}

.rooms-intro {
  margin: 0 0 2rem 0;
}

.rooms-intro h2 {
  font-family: "PPCirka", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.rooms-intro p {
  font-size: 1.3rem;
  font-weight: 200;
}

.rooms-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}

.room-item {
  background-color: #2d2d2d;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 350px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-title {
  padding: 1.7rem 1.3rem 1rem 1.3rem;
}

.rooms-title h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: "PPCirka", serif;
  color: #fdfaf6;
}

.rooms-equipment {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0rem 1.3rem;
}

.rooms-equipment p {
  font-weight: 200;
  font-size: 1rem;
  height: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border: 1px solid #dbd5c9;
  border-radius: 40px;
  margin: 0;
  color: #fdfaf6;
}

.rooms-equipment sup {
  margin-top: -7px;
}

.rooms-text {
  padding: 1.3rem;
}

.rooms-text p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 200;
  color: #fdfaf6;
}

.rooms-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.main-cta {
  background-color: #8c1007;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #dbd5c9;
  box-shadow:
    0 73px 20px 0 rgba(79, 79, 79, 0),
    0 47px 19px 0 rgba(79, 79, 79, 0.01),
    0 26px 16px 0 rgba(79, 79, 79, 0.05),
    0 12px 12px 0 rgba(79, 79, 79, 0.09),
    0 3px 6px 0 rgba(79, 79, 79, 0.1);
  overflow: hidden !important;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

.main-cta:hover {
  opacity: 0.6;
}

.rooms-cta .secondary-cta {
  background-color: #fef3e2;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #0f0f0f;
  box-shadow:
    0 73px 20px 0 rgba(79, 79, 79, 0),
    0 47px 19px 0 rgba(79, 79, 79, 0.01),
    0 26px 16px 0 rgba(79, 79, 79, 0.05),
    0 12px 12px 0 rgba(79, 79, 79, 0.09),
    0 3px 6px 0 rgba(79, 79, 79, 0.1);
  overflow: hidden !important;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

.secondary-cta:hover {
  opacity: 0.6;
}

.restaurant-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  overflow: hidden;
  width: 100%;
}

.restaurant-section .img {
  position: relative;
  width: 100%;
  height: 100%;
}

.restaurant-section .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 250, 0.08) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.text-content-header {
  position: absolute;
  top: 7%;
  left: 8rem;
  right: 10%;
  z-index: 2;
  overflow: hidden !important;
  padding: 5% 0 5% 0;
}

.text-content-header h2 {
  font-family: "PPCirka", sans-serif;
  color: #dbd5c9;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
  width: 45%;
}

.restaurant-ctas {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  position: absolute;
  bottom: 7%;
  left: 8rem;
  z-index: 2;
}

.restaurant-ctas .secondary-cta {
  background-color: #fef3e2;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #0f0f0f;
  box-shadow:
    0 73px 20px 0 rgba(79, 79, 79, 0),
    0 47px 19px 0 rgba(79, 79, 79, 0.01),
    0 26px 16px 0 rgba(79, 79, 79, 0.05),
    0 12px 12px 0 rgba(79, 79, 79, 0.09),
    0 3px 6px 0 rgba(79, 79, 79, 0.1);
  overflow: hidden !important;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

.secondary-cta:hover {
  opacity: 0.6;
}

.blog-section {
  margin: 10rem 8rem 2rem 8rem;
  color: #dbd5c9;
}

.blog-section h2 {
  font-family: "PPCirka", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-intro p {
  font-size: 1.3rem;
  font-weight: 200;
}

.blog-layout {
  display: flex;
  gap: 1.6rem;
  margin-top: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.blog-layout.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.blog-layout::-webkit-scrollbar {
  display: none;
}

.blog-item {
  background-color: #2d2d2d;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  flex: 0 0 clamp(280px, 70vw, 450px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 300px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  display: flex;
  align-items: center !important;
  gap: 0.5rem;
  padding: 1rem 1.3rem 0 1.3rem;
}

.blog-info p {
  margin: 0;
  font-weight: 100;
  font-size: 0.9rem;
}

.blog-text {
  padding: 1.3rem;
}

.blog-text h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: "PPCirka", serif;
}

.blog-text p {
  font-size: 1.2rem;
  font-weight: 200;
}

.slider-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-top: 4rem;
}

.slider-line {
  width: 100%;
  height: 1px;
  background-color: #dbd5c9;
}

.slider-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.next-slider,
.prev-slider {
  background: transparent;
  border: 1px solid #dbd5c9;
  border-radius: 2px;
  cursor: pointer;
  height: 48px;
  width: 80px;
}

.next-slider:disabled,
.prev-slider:disabled {
  opacity: 0.4;
  cursor: default;
}

.next-slider img,
.prev-slider img {
  width: 20px;
}

.faq-section {
  margin: 0 8rem 0 8rem;
  color: #dbd5c9;
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  align-items: flex-start;
  margin-top: 8rem;
}

.sticky-faq {
  position: sticky;
  top: 190px;
  padding-bottom: 2rem;
}

.services-item {
  width: 40%;
}

.faq-header {
  font-family: "PPCirka", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
}

.sticky-faq p {
  font-size: 1.3rem;
  font-weight: 200;
  width: 80%;
  margin-top: 3rem;
}

.faq-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-ctas button {
  background-color: #c5ae80;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #1b1d1c;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.faq-ctas button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.faq-ctas a {
  font-size: 1.2rem;
  font-weight: 200;
  color: #dbd5c9;
  text-underline-offset: 3px;
  gap: 4px;
}

.cta-faq-pos {
  margin-top: 2.7rem;
}

.faq-wrapper {
  width: 100%;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4a4947;
  width: 100%;
  cursor: pointer;
  padding: 1.4rem 0;
}

.faq-item:first-child {
  border-top: 1px solid #4a4947;
  margin-top: 2rem;
}

.faq-item h4 {
  font-weight: 200;
  font-size: 1.6rem;
  margin: 2.3rem 0;
}

.faq-icon {
  border: 1.8px solid #4a4947;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border-radius: 2px;
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 300ms ease,
    opacity 250ms ease;
}

.faq-content p {
  margin: 1rem 0 2rem 0;
  font-size: 1.3rem;
  font-weight: 200;
}

.faq-content a {
  margin: 1rem 0 2rem 0;
  font-size: 1.3rem;
  font-weight: 200;
  color: #8c1007;
  text-decoration: none;
  position: relative;
}

.adress-link {
  display: inline-block;
}

.faq-content a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.faq-content a:hover::before {
  transform: scaleX(1);
}

.faq-content.open {
  opacity: 1;
}

.faq-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.faq-item[aria-expanded="true"] + .faq-content {
  border-bottom: 1px solid #4a4947;
}

.info-cards-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9rem 8rem;
  z-index: 1;
  position: relative;
}

.cards-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.item {
  overflow: hidden;
  cursor: pointer;
}

.item-small {
  grid-column: span 1;
  grid-row: span 1;
}

.item-large {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.item-fill {
  width: 100%;
  height: 100%;
  position: relative;
}

.item:hover .item-img {
  transform: scale(1.08);
}

.item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  transition: transform 0.4s ease-in-out;
}

.item-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #dbd5c9;
}

.item-link {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.item-link h4 {
  color: #dbd5c9;
  font-size: 1.8rem;
  font-family: "PPCirka", sans-serif;
  margin: 0;
}

.item-link img {
  width: 16px;
  height: auto;
}

.item-category {
  border-radius: 5px;
  background: rgba(54, 57, 63, 0.6);
  filter: blur(0.5px);
  padding: 10px 15px;
}

.item-category h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 200;
}

footer {
  background-color: #000000;
  width: 100%;
  min-height: 20vh;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  padding: 4rem 8rem 1rem 8rem;
  color: #dbd5c9;
}

footer h2 {
  font-family: "PPCirka", sans-serif;
  font-size: clamp(3rem, 6.5vw, 9rem);
  color: #dbd5c9 !important;
}

.footer-layout-upper {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  align-items: stretch;
}

.layout-links-wrapper,
.layout-hyper-links {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  width: 49%;
}

.footer-main-div {
  width: 49%;
}

footer h4 {
  border-top: 1px solid #dbd5c9;
  padding-top: 1rem;
  font-family: "PPCirka", sans-serif;
  font-size: 1.3rem;
  color: #dbd5c9;
  margin-bottom: 20px;
}

footer ul {
  padding: 0;
}

footer ul li {
  font-size: 1rem;
  font-weight: 200;
  line-height: calc(1rem + 10px);
  list-style: none;
  color: #dbd5c9;
}

footer ul li a {
  text-decoration: none;
  color: #dbd5c9;
}

.hyper-links-container {
  background-color: #0a0a0a;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  width: 49%;
  cursor: pointer;
}

.hyper-links-container h3 {
  font-family: "PPCirka", sans-serif;
  font-size: 1.7rem;
  color: #dbd5c9;
}

.circle-hyper-links {
  background-color: #dbd5c9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-hyper-links img {
  filter: invert(100%);
  width: 12px;
  height: auto;
}

.social-links-layout {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 25px;
}

.yt-icon {
  width: 30px;
  margin-top: -2px;
}

.tiktok-icon {
  margin-left: -3px;
}

.parnters-logos {
  display: flex;
  gap: 2rem;
}

.CM-logo {
  width: 80px !important;
  height: auto;
  margin-right: 10px;
}

.ginie-logo {
  width: 55px !important;
  height: auto;
}

.footer-layout-lower {
  display: flex;
  justify-content: flex-start;
  margin-top: 5%;
  gap: 2.5%;
}

.footer-layout-lower div {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  bottom: -1rem;
}

.bottom-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bottom-layout p {
  font-size: 0.9rem;
  font-weight: 200;
}

.bottom-layout a {
  text-decoration: none;
  color: #dbd5c9;
}

.linked-hv-f {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.linked-hv-f:before {
  background-color: #f49b1f;
  bottom: 0;
  content: "";
  height: 1px;
  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;
}

@media (max-width: 768px) {
  .pop-up {
    width: 100%;
    max-height: 98vh;
  }
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
  .starter-text {
    bottom: 40%;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
    text-align: center;
  }
  .dirs21-widget-wrapper {
    display: flex;
    justify-content: center;
    left: 1rem;
    right: 1rem;
    bottom: 3rem;
  }
  .mode-wrapper {
    right: 1rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  .rmv-mobile {
    display: none;
  }
  .hero-cta-wrapper {
    display: flex;
    justify-content: center;
  }
  .review-badge {
    width: 150px;
  }
  .intro-section {
    margin: 8rem 1rem;
  }
  .intro-layout {
    flex-direction: column;
    gap: 6rem;
  }
  .intro-section h2 {
    font-size: 2.6rem;
  }
  .text-intro,
  .images-intro {
    width: 100%;
  }
  .intro-info-layout {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .intro-cta {
    display: flex;
    justify-content: center;
  }
  .intro-cta .secondary-cta {
    display: none;
  }

  .image-down {
    padding-top: 0;
  }
  .images-intro {
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  .images-intro img {
    width: 100%;
    height: 300px;
  }
  .rooms-section {
    padding: 8rem 1rem;
  }
  .rooms-intro h2 {
    font-size: 2.4rem;
    width: 100%;
  }
  .rooms-layout {
    grid-template-columns: 1fr;
  }
  .rooms-title {
    padding: 1rem;
  }
  .rooms-equipment {
    padding: 0rem 1rem;
  }
  .rooms-text {
    padding: 1rem;
  }
  .hero-cta-wrapper .secondary-cta {
    padding: 0.7rem 0.8rem;
  }
  .main-cta {
    padding: 0.7rem 0.8rem;
  }
  .rooms-cta .secondary-cta {
    padding: 0.7rem 0.8rem;
  }
  .rmv-line-m {
    display: none;
  }
  .scroll-img {
    filter: brightness(70%);
  }
  .text-content-header h2 {
    font-size: 2.6rem;
    width: 100%;
  }
  .text-content-header,
  .restaurant-ctas {
    left: 1rem;
    right: 1rem;
  }
  .blog-section {
    margin: 8rem 1rem 0 1rem;
  }
  .blog-section h2 {
    font-size: 2.4rem;
    width: 100%;
  }
  .blog-layout {
    scroll-snap-type: x mandatory;
  }

  .blog-item {
    flex: 0 0 100%;
  }
  .blog-text {
    padding: 1rem;
  }
  .blog-text h3 {
    font-size: 1.5rem;
  }
  .activities-item {
    flex-direction: column;
    margin-bottom: 5rem;
  }
  .activities-info-img {
    display: none;
  }
  .activities-ctas a {
    display: none;
  }
  .activities-ctas img {
    display: none;
  }
  .faq-section {
    margin: 8rem 1rem 0 1rem;
  }
  .section-header {
    font-size: 2.2rem;
  }
  .faq-ctas {
    display: none;
  }
  .faq-layout {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
  .faq-item {
    padding: 0.7rem 0;
  }
  .faq-icon {
    display: none;
  }
  .services-item {
    width: 100%;
  }
  .sticky-faq {
    position: static;
  }
  .sticky-faq p {
    width: 100%;
  }
  .faq-item h4 {
    font-size: 1.4rem;
  }
  .answer-item {
    padding-right: 0;
    padding-left: 5px;
  }
  .faqs-layout {
    width: 100%;
    margin-top: 0;
  }
  .cross-box {
    width: 60px;
    height: 60px;
  }
  .cross-box img {
    width: 22px;
  }

  .info-cards-section {
    padding: 8rem 1rem;
  }
  .cards-layout {
    display: flex;
    flex-direction: column;
  }
  .item-img {
    height: 300px;
  }
  footer {
    background-color: #000000;
    padding: 6rem 1rem 1rem 1rem;
  }
  .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;
  }
  .parnters-logos {
    gap: 0rem;
  }
  .parnters-logos img {
    width: 80%;
  }
  .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: 1024px) {
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
  .logo-mobile {
    width: 70px;
    height: auto;
  }
  .line {
    width: 32px;
  }
  .line-small {
    width: 25px;
  }
  .starter-text {
    bottom: 35%;
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
  }
  h1 {
    font-size: 3.8rem;
  }
  .dirs21-widget-wrapper {
    bottom: 2rem;
    left: 2rem;
    width: 50%;
  }
  .intro-section {
    margin: 8rem 2rem 9rem 2rem;
    color: #dbd5c9;
  }
  .intro-layout {
    flex-direction: column;
    gap: 6rem;
  }
  .text-intro,
  .images-intro {
    width: 100%;
  }
  .images-intro {
    justify-content: space-between;
  }
  .images-intro img {
    width: 350px;
  }
  .rooms-section {
    padding: 8rem 2rem 9rem 2rem;
  }
  .rooms-layout {
    grid-template-columns: 1fr 1fr;
  }
  .room-text,
  .rooms-slider {
    width: 100%;
  }
  .text-content-header {
    left: 2rem;
  }

  .text-content-header h2 {
    width: 100%;
  }
  .restaurant-ctas {
    left: 2rem;
  }
  .blog-section {
    margin: 8rem 1rem 0 1rem;
  }
  .blog-section h2 {
    font-size: 2.6rem;
    width: 100%;
  }

  .activities-info-img {
    display: none;
  }
  .activities-ctas a {
    display: none;
  }
  .activities-ctas img {
    display: none;
  }
  .faq-section {
    margin: 8rem 2rem 0 2rem;
  }
  .section-header {
    font-size: 2.2rem;
  }
  .faq-layout {
    flex-direction: column;
    gap: 0;
    margin-top: 6rem;
  }
  .services-item {
    width: 100%;
  }
  .sticky-faq {
    position: static;
  }
  .question-box h4 {
    font-size: 1.3rem;
  }
  .answer-item {
    padding-right: 0;
    padding-left: 5px;
  }
  .faqs-layout {
    width: 100%;
  }
  .cross-box {
    width: 60px;
    height: 60px;
  }
  .cross-box img {
    width: 22px;
  }
  .info-cards-section {
    padding: 8rem 2rem;
  }
  .cards-layout {
    display: flex;
    flex-direction: column;
  }
  .item-img {
    height: 350px;
  }
  footer {
    background-color: #000000;
    padding: 6rem 1rem 1rem 1rem;
  }
  .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;
  }
  .parnters-logos {
    gap: 0rem;
  }
  .parnters-logos img {
    width: 80%;
  }
  .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) {
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .starter-text {
    bottom: 35%;
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
  }
  h1 {
    font-size: 3.8rem;
  }
  .dirs21-widget-wrapper {
    left: 2rem;
  }
  .intro-section {
    margin: 8rem 2rem 9rem 2rem;
    color: #dbd5c9;
  }
  .intro-layout {
    flex-direction: column;
    gap: 6rem;
  }
  .text-intro,
  .images-intro {
    width: 100%;
  }
  .images-intro {
    justify-content: center;
  }
  .images-intro img {
    width: 100%;
  }
  .rooms-section {
    padding: 8rem 2rem 9rem 2rem;
  }
  .rooms-layout {
    flex-direction: column;
  }
  .room-text,
  .rooms-slider {
    width: 100%;
  }
  .text-content-header {
    left: 2rem;
  }
  .text-content-header h2 {
    width: 100%;
  }
  .restaurant-ctas {
    left: 2rem;
  }
  .activities-section {
    margin: 8rem 1rem 0 1rem;
  }
  .activities-section h2 {
    font-size: 2.6rem;
    width: 100%;
  }
  .activities-layout h3 {
    font-size: 1.9rem;
  }
  .activities-item {
    flex-direction: column;
    margin-bottom: 5rem;
  }
  .activities-info-img {
    display: none;
  }
  .activities-ctas a {
    display: none;
  }
  .activities-ctas img {
    display: none;
  }
  .faq-section {
    margin: 10rem 2rem 0 2rem;
    color: #dbd5c9;
  }
  .faq-layout {
    gap: 2rem;
  }
  .info-cards-section {
    padding: 8rem 2rem;
  }
  .cards-layout {
    display: flex;
    flex-direction: column;
  }
  .item-img {
    height: 350px;
  }
  footer {
    background-color: #000000;
    padding: 6rem 1rem 1rem 1rem;
  }
  .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;
  }
  .parnters-logos {
    gap: 0rem;
  }
  .parnters-logos img {
    width: 80%;
  }
  .bottom-layout {
    flex-direction: column;
    text-align: center;
  }
  .bottom-layout p {
    margin: 0;
    line-height: 2rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .info-header {
    font-size: 2.4rem;
  }
  .info-item {
    width: 100%;
  }
  .rooms-layout {
    gap: 1.8rem;
  }
  .room-text {
    width: 50%;
  }
  .faq-layout {
    gap: 5rem;
  }
  .text-content-header h2 {
    width: 60%;
  }
}
