:root {
  --ff-heading: "Rubik", sans-serif;
  --ff-body: "Rubik", sans-serif;

  --lh-heading: 1.2;
  --lh-body: 1.5;

  --fs-body: 16px;
  --fs-52px: 52px;
  --fs-40px: 40px;
  --fs-35px: 35px;
  --fs-30px: 30px;
  --fs-22px: 22px;
  --fs-20px: 20px;
  --fs-18px: 18px;
  --fs-15px: 15px;
  --fs-14px: 14px;
  --fs-11px: 11px;

  --c-heading: 240 1% 25%;
  --c-body: 0 0% 0%;
  --c-base: 41 32% 56%;
  --c-primary: 95 42% 24%;
  --c-red: #c52f00;
  --c-secondary: #8f9893;
  --c-success: #1cb81c;
  --c-danger: #de3434;
  --c-warning: #ff701c;
  --c-info: #7189ff;
  --c-dark: #01111a;
  --c-white: 0 0% 100%;
  --c-black: #000000;
  --border-default: #ebebeb;
  --border-light: #f0f0f0;
  --border-dark: #ccc;
  --bg-default: #f1f1f1;
  --bg-light: #f4f4f4;

  --color-heading: hsl(var(--c-heading));
  --color-body: hsl(var(--c-body));
  --color-base: hsl(var(--c-base));
  --color-primary: hsl(var(--c-primary));
  --color-white: hsl(var(--c-white));

  --padding-site: 1rem;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: hsl(var(--c-body) / 0.8);
  line-height: var(--lh-body);
  font-weight: 300;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: cover;
}

img,
svg {
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: var(--lh-heading);
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
  color: var(--color-heading);
  margin: 0;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
  color: var(--color-heading);
}

hr {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid var(--color-base);
  opacity: .12;
}

a {
  text-decoration: none;
  color: hsl(var(--c-body) / 0.8);
  transition: all 0.3s ease;

  &:hover {
    color: var(--color-base);
  }
}

input,
textarea {
  width: 100%;
  border: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.container {
  max-width: calc(var(--container) + var(--padding-site) * 2);
  padding-inline: var(--padding-site);
  margin: auto;
}

.section-heading {
  text-align: center;
  padding-block: 3.625rem 4.375rem;

  .container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .title {
    font-size: var(--fs-40px);
  }

  .subtitle {
    font-size: var(--fs-22px);
    color: var(--color-base);
  }

  .description {
    padding-block-start: 0.75rem;
    max-width: 660px;
    margin: auto;
  }
}

.hero {
  --hero-height: 320px;

  height: var(--hero-height);
}

.wysiwyg {
  line-height: 1.45;
}

.wysiwyg *+p {
  margin-top: 1.5rem;
}

.wysiwyg p+ul {
  margin-block-start: 0.75rem;
  padding-inline-start: 1.5rem;
}

.wysiwyg a {
  color: var(--color-base);
}

[data-aos^="fade"][data-aos^="fade"] {
  transform: translateY(50px);
  /* Shorter travel distance (Default was 100px) */
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 13px 40px;
  font-family: var(--ff-body);
  font-size: var(--fs-14px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.10em;
  transition: all 0.3s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.btn--base {
  background-color: var(--color-base);
  border-color: var(--color-base);
  color: var(--color-white);
}

.btn--base:hover {
  background-color: transparent;
  color: var(--color-base);
  border-color: var(--color-base);
}

.btn--base-outline {
  background-color: transparent;
  border-color: var(--color-base);
  color: var(--color-base);
}

.btn--base-outline:hover {
  background-color: var(--color-base);
  color: var(--color-white);
}

.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  border-color: var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
}

.btn--red {
  background-color: var(--c-red);
  border-color: var(--c-red);
  color: var(--color-white);
}

.btn--red:hover {
  background-color: transparent;
  color: var(--c-red);
}

.btn--white {
  background-color: var(--color-white);
  border-color: rgba(103, 103, 103, 0.2);
  color: hsl(var(--c-body) / 0.8);
}

.btn--white:hover {
  background-color: var(--color-base);
  color: var(--color-white);
}

.btn--link {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-base);
  text-decoration: underline;
  padding: 0;
  font-weight: 400;
}

.btn--link:hover {
  color: var(--c-dark);
}

.header-area {
  background-color: var(--color-white);
  padding-block: 8px;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  transition: all ease 0.3s;
  box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.13);
  font-weight: normal;

  .container {
    --container: 1300px;

    position: relative;
    z-index: 1;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
  }

  .whatsapp-toggler-wrapper {
    display: none;
  }

  .logo img {
    max-width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .sidebar-menu-wrapper {
    width: auto;
    margin: auto;
  }

  .menu {
    display: flex;
    gap: 0 30px;
  }

  .menu .menu-item.current-menu-item a {
    font-weight: 700;
  }

  .menu .menu-item a {
    font-size: var(--fs-18px);
    transition: all ease 0.3s;
    text-decoration: none;
  }
}

.book-now-mobile {
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: 99;
  text-align: center;
  display: none;

  .btn {
    width: 100%;
  }
}

.room-specs {
  display: flex;
  gap: 0.25rem;
  color: var(--color-base);
  font-weight: 400;
  font-size: var(--fs-11px);
  margin-block-start: 0.25rem;

  .spec {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
  }

  .spec:not(:last-child)::after {
    content: '|';
  }

  .text {
    font-size: var(--text-12px);
  }
}

footer {
  padding-block: 6.25rem 2rem;
  margin-top: 130px;
  background-color: var(--color-base);
  color: var(--color-white);
  font-weight: 400;
  position: relative;

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    .logo-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      position: absolute;
      z-index: 1;
      top: -85px;
    }

    .logo {
      max-width: 160px;
    }

    .footer-logo {
      text-align: center;
      max-width: -moz-fit-content;
      max-width: fit-content;
      margin-inline: auto;
      position: relative;
      z-index: 0;
    }

    .footer-logo::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -35%);
      width: 208px;
      height: 208px;
      background-color: var(--color-base);
      border-radius: 50%;
      transition: all 0.3s ease;
      z-index: -1;
    }

    .content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.75rem;
      position: relative;
      z-index: 1;
    }
  }

  .contact-us {
    text-align: center;
    font-size: var(--fs-18px);

    a {
      color: var(--color-white);

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .footer-nav>.menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;

    a {
      color: var(--color-white);
      font-size: var(--fs-18px);

      &:hover {
        text-decoration: underline;
      }
    }

    .current-menu-item a {
      color: var(--color-white);
      font-weight: 500;
    }
  }

  .follow-us {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;

    .links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: hsl(var(--c-white) / 0.1);
      border-radius: 100px;

      &:hover {
        background-color: hsl(var(--c-white) / 0.25);
      }

      img {
        aspect-ratio: 1;
        width: 50%;
        object-fit: contain;
      }
    }
  }

  .footer-nav.legals-nav a {
    font-size: var(--fs-14px);
  }
}

.section-form {
  padding-block-end: 44px;

  .section-bg {
    background-color: hsla(47, 54%, 90%, 0.4);
  }

  .container {
    padding-block: 24px;
    position: relative;
  }

  .form-content {
    max-width: 740px;
    margin: auto;
    position: relative;
    z-index: 1;
  }

  .form-title {
    text-align: center;
    margin-block-end: 24px;
    font-size: var(--fs-30px);
  }

  .wpcf7[dir="ltr"],
  .wpcf7 input[type="url"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"] {
    direction: rtl;
  }

  .fields-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .wpcf7-not-valid-tip {
    font-size: var(--fs-14px);
  }

  .wpcf7-form-control {
    background: #fff;
    padding: 8px 30px;
    color: var(--color-base);
  }

  .wpcf7-form-control::placeholder {
    color: var(--color-base);
    opacity: 1;
  }

  .wpcf7-form-control::-moz-placeholder {
    color: var(--color-base);
    opacity: 1;
  }

  .wpcf7-form-control::-webkit-input-placeholder {
    color: var(--color-base);
  }

  .wpcf7-form-control::-moz-placeholder {
    color: var(--color-base);
    opacity: 1;
  }

  .wpcf7-form-control:-ms-input-placeholder {
    color: var(--color-base);
  }

  textarea {
    height: 88px;
    min-height: 88px;
  }

  .input-field:nth-child(4) {
    grid-column: span 3;
  }

  .button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block-start: 20px;
  }

  .btn {
    max-width: 230px;
    width: 100%;
  }

  .rose-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;

  span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

body.menu-open .hamburger {
  span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  span:nth-child(2) {
    opacity: 0;
  }

  span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.mobile-menu {
  position: fixed;
  top: var(--header-height, 80px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: hsl(var(--c-base) / 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 30px 50px 100px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;

  &.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
  }
}

.mobile-menu-nav {
  width: 100%;
  max-width: 360px;

  >ul {
    display: flex;
    flex-direction: column;

    li {
      border-bottom: 1px solid hsl(var(--c-white) / 0.21);

      a {
        display: block;
        padding: 0.5rem;
        font-size: var(--fs-22px);
        font-weight: 400;
        text-align: center;
        color: var(--color-white);
      }
    }

    .current-menu-item>a {
      font-weight: 700;
    }
  }

  >ul:last-child li:last-child {
    border-bottom: none;
  }
}

.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 1rem;

  .link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      filter: brightness(1);
    }
  }
}

@media (max-width: 1367px) {
  .header-area {
    .logo img {
      max-width: 130px;
    }

    .menu {
      display: flex;
      gap: 0 20px;
    }

    .menu .menu-item a {
      font-size: var(--fs-body);
    }
  }
}

@media (max-width: 1023px) {
  :root {
    --fs-heading-one: 40px;
    --fs-heading-two: 30px;
    --fs-heading-three: 26px;
    --fs-heading-four: 22px;
    --fs-heading-five: 20px;
    --fs-heading-six: 16px;
  }

  .header-area {
    padding-block: 0;

    .container {
      padding: 10px 20px;
    }

    .logo img {
      max-width: 100px;
    }

    .header-wrapper {
      justify-content: space-between;

      .sidebar-menu-wrapper {
        display: none;
      }
    }

    .whatsapp-toggler-wrapper {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .menu>ul {
      gap: 0 16px;
      flex-wrap: wrap;
      flex-direction: column;
      margin-inline: auto;
      margin-bottom: 35px;
    }

    .menu>ul .menu-item {
      max-width: 250px;
      margin-inline: auto;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2117647059);
    }

    .menu>ul .menu-item a {
      font-size: 23px;
      line-height: 1;
      color: var(--color-white);
      display: block;
      padding-block: 10px;
    }
  }

  .hero {
    --hero-height: 250px;
  }

  .section-heading {
    padding-block: 2.5rem;

    .title {
      font-size: var(--fs-30px);
    }

    .subtitle {
      font-size: var(--fs-body);
    }
  }

  .book-now-mobile {
    display: block;
  }

  footer {
    padding-block: 100px 120px;

    .logo-wrapper>svg {
      max-width: 170px;
    }

    .container {
      .footer-logo::before {
        width: 178px;
        height: 178px;
      }

      .logo {
        max-width: 130px;
      }
    }

    .contact-us {
      font-size: var(--fs-body);
    }

    .footer-nav.web-nav {
      margin-top: 12px;
    }

    .footer-nav>.menu {
      a {
        font-size: var(--fs-14px);
      }
    }

    .follow-us {
      order: -1;
    }
  }

  .section-form .form-title {
    font-size: var(--fs-22px);
  }
}

@media (max-width: 767px) {
  .section-form .fields-wrapper {
    grid-template-columns: 1fr;
  }

  .section-form .input-field:nth-child(4) {
    grid-column: span 1;
  }
}