:root {
  --left-bg: #254e33;
  --soft: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.28);
  --envato-h: 54px;
  --left-w: 52%;
  --right-w: 48%;
}

* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  background-color: #f8f5f0;
  font-family: "Gilda Display", serif;
  font-family: "Cinzel", serif;
  color: rgb(0, 0, 0);
}




.offcanvas {
    background-color: #1c2e25;
}

.navbar .scrolled {
    background-color: #1c2e25 !important;
}

.nav-link {
    font-size: 16px;
    color: white;
}
/* GLOBAL NAV DROPDOWN */
/* Parent */

/* Dropdown box */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  min-width: 180px;
  padding: 20px 24px;

  background: #f5f2ea; /* beige */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}



/*        HERO SPLIT LAYOUT      */
.hero-split {
  min-height: calc(100vh - var(--envato-h));
  width: 100%;
  display: flex;
}

.hero-left {
  width: var(--left-w);
  min-height: calc(100vh - var(--envato-h));
  background: var(--left-bg);
  color: #fff;
  position: relative;
  padding: 58px 72px 60px 44px;
  padding-bottom: 340px; /* leaves space so the bottom block never overlaps title */
}

.hero-right {
  width: var(--right-w);
  min-height: calc(100vh - var(--envato-h));
  position: relative;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.26),
      rgba(0, 0, 0, 0.14) 55%,
      rgba(0, 0, 0, 0.28)
    ),
    url("/image/One-Bedroom Apartments/13.jpg");
  background-size: cover;
  background-position: center;
}
.nav-link{
    color: #ffffff !important;
}
/*  LEFT SIDE  */
.brand-logo {
  width: 80px;
  height: auto;
  display: block;
  margin-top: -20px !important;
  opacity: 0.9;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.88;
  letter-spacing: -0.8px;
  max-width: 820px;
  margin: 0;
}

/* ✅ FIXED: bottom area (carousel + info) */
.left-bottom {
  position: absolute;
  left: 44px;
  right: 72px;
  bottom: 44px;

  display: flex; /* ✅ changed from grid */
  gap: 16px; /* ✅ controls the distance */
  align-items: flex-end;
}

/* ✅ make carousel width fixed */
#carouselExampleSlidesOnly {
  position: relative;
  flex: 0 0 250px; /* ✅ fixed column */
  width: 250px;
  height: 320px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Make slides fill the card */
#carouselExampleSlidesOnly .carousel-inner,
#carouselExampleSlidesOnly .carousel-item {
  height: 100%;
}

/* Crop images nicely */
#carouselExampleSlidesOnly img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Inner highlight overlay  */
#carouselExampleSlidesOnly::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ✅ NEW: keeps the right side compact (so it looks like screenshot #2) */
.left-info {
  max-width: 360px;
}

.left-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

/* ✅ FIXED: Make BOTH buttons same size like screenshot #2 */
.btn-solid,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px; /* ✅ taller */
  min-width: 40px; /* ✅ same width */
  padding: 0 22px;

  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}

.btn-solid {
  background: #fff;
  color: #1c2e25;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/*  RIGHT NAV   */
.right-nav {
  position: absolute;
  top: 26px;
  left: 34px;
  right: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.hero-nav {
  display: flex;
  gap: 8px;
}
.nav-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.line {
    flex: 1;
    height: 1px;
    background: #ffffff98;
    margin: 0 10px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 6px 10px;
  text-decoration: none;
}

.nav-link.active {
  color: #fff;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.btn-book {
  background: rgba(255, 255, 255, 0.92);
  color: #1c2e25;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid;
}

/* RESPONSIVE  */

/* 1) Large tablets / smaller laptops */
@media (max-width: 1200px) {
  :root {
    --left-w: 55%;
    --right-w: 45%;
  }

  .hero-left {
    padding: 48px 48px 54px 36px;
    padding-bottom: 360px;
  }

  .hero-title {
    font-size: 58px;
    max-width: 640px;
    line-height: 0.95;
  }

  /* ✅ FIXED: do NOT re-add a huge gap here */
  .left-bottom {
    left: 36px;
    right: 48px;
    bottom: 36px;
    gap: 16px; /* ✅ keep tight */
  }

  #carouselExampleSlidesOnly {
    flex-basis: 300px; /* ✅ match width */
    width: 300px;
    height: 210px;
  }
}

/* 2) Tablets */
@media (max-width: 992px) {
  :root {
    --left-w: 100%;
    --right-w: 100%;
  }

  .hero-split {
    flex-direction: column;
  }

  .hero-left {
    width: 100%;
    padding: 42px 28px 44px 28px;
    padding-bottom: 24px;
  }

  .hero-right {
    width: 100%;
    min-height: 42vh;
  }

  /* bottom block becomes normal flow */
  .left-bottom {
    position: static;
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  #carouselExampleSlidesOnly {
    width: 100%;
    height: 220px;
    flex: 0 0 auto;
  }

  .left-info {
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
    max-width: 100%;
    line-height: 1.05;
  }

  .left-copy {
    max-width: 100%;
  }
}

/* 3) Phones */
@media (max-width: 576px) {
  .hero-left {
    padding: 34px 18px 30px 18px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.4px;
  }

  .left-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #carouselExampleSlidesOnly {
    height: 210px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-solid,
  .btn-ghost {
    width: 100%;
    min-width: 0;
  }

  .right-nav {
    top: 16px;
    left: 16px;
    right: 16px;
    gap: 10px;
  }
  .butoni-nav{
    display: none;
  }
}

/*  ABOUT SECTION   */
.about-block {
  background: #f3efe7;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* watermark */
.about-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: url("image/Avra-Apertments.png")
    center/contain no-repeat;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

/* content above watermark */
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #184231;
  padding: 6px 14px;
  margin-bottom: 30px;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -0.7px;
  color: #234b3a;
  margin: 0 auto 95px;
  max-width: 980px;
}

.about-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(35, 75, 58, 0.95);
  max-width: 760px;
  margin: 0 auto 18px;
}

.about-sub {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(35, 75, 58, 0.75);
  max-width: 760px;
  margin: 0 auto 40px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #234b3a;
  color: #fff;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #1c3c2f;
  transform: translateY(-2px);
}

.about-arrow {
  font-size: 16px;
}

.about-content {
  margin-top: 100px;
}

/* responsive watermark size */
@media (max-width: 992px) {
  .about-title {
    font-size: 48px;
  }
  .about-block::before {
    width: 420px;
    height: 420px;
    top: 150px;
    opacity: 0.09;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 36px;
  }
  .about-block::before {
    width: 300px;
    height: 300px;
    top: 130px;
    opacity: 0.08;
  }
}

/* FEATURES + STATS (GRID TABLE) */
.feature-stats {
  background: #f3efe7;
  padding: 70px 20px 90px;
}

.fs-wrap {
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid rgba(35, 75, 58, 0.55);
}

.fs-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fs-card {
  padding: 32px 26px;
  text-align: center;
  border-right: 1px solid rgba(35, 75, 58, 0.55);
}

.fs-card:last-child {
  border-right: none;
}

.fs-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  color: #234b3a;
  margin: 0 0 18px;
}

.fs-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 16px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(35, 75, 58, 0.35);
}

.fs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fs-caption {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(35, 75, 58, 0.75);
}

.fs-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fs-stat {
  padding: 38px 28px;
  border-right: 1px solid rgba(35, 75, 58, 0.55);
}

.fs-stat:last-child {
  border-right: none;
}

.fs-number {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 70px;
  line-height: 1;
  color: #234b3a;
  margin-bottom: 22px;
}

.fs-stat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #234b3a;
  margin-bottom: 10px;
}

.fs-stat-sub {
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(35, 75, 58, 0.7);
  max-width: 230px;
}

@media (max-width: 992px) {
  .fs-top {
    grid-template-columns: 1fr;
  }
  .fs-card {
    border-right: none;
  }
  .fs-card + .fs-card {
    border-top: 1px solid rgba(35, 75, 58, 0.55);
  }

  .fs-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .fs-stat:nth-child(2) {
    border-right: none;
  }
  .fs-stat {
    border-bottom: 1px solid rgba(35, 75, 58, 0.55);
  }
  .fs-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .fs-bottom {
    grid-template-columns: 1fr;
  }
  .fs-stat {
    border-right: none;
  }
  .fs-stat-sub {
    max-width: 100%;
  }
  .fs-number {
    font-size: 56px;
  }
}

/* HOVER EFFECT (like amenities cards)*/
.as-media,
.as-two-left,
.as-two-right,
.as-center {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hover effect */
.as-media:hover,
.as-two-left:hover,
.as-two-right:hover,
.as-center:hover {
  transform: translateY(-18px);
  z-index: 5;
}

.as-item:hover {
  transform: translateY(-6px);
}

/* =========================
   FOOTER (Avra style)
========================= */

.site-footer {
  position: relative;
  display: flex;
  background: var(--left-bg);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  padding: 140px 0 110px;
  min-height: 760px;
}

/* ✅ BIG WATERMARK "Avra" diagonal, italic, across whole screen */
.site-footer::before {
  content: "AVRA";
  position: absolute;
  left: 45%;
  top: 70%;
  transform: translate(-50%, -50%) skewX(-10deg);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;

  /* HUGE so it spans left->right */
  font-size: 40vw;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.07); /* visible like model */
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* container */
.footer-inner {
  padding-bottom: 90px; /* space for the bottom bar */
}

/* 4 columns layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr 1fr;
  gap: 90px; /* a bit wider like model */
  align-items: start;
}

/* Left column */
.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  margin-bottom: 26px;
}



/* Titles */
.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

/* Text */
.footer-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

/* Links */
.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  font-family: Inter, sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.footer-social .ico {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  opacity: 0.9;
}

/* ✅ Bottom bar: sits near bottom, line across */
.footer-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px; /* change this to move up/down */

  width: min(1250px, calc(100% - 48px)); /* same width as your container */
  padding-top: 26px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  z-index: 2; /* above watermark */
}

.footer-copy {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 26px;
}

.footer-legal a {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 1100px) {
  .site-footer {
    margin-top: -90px;
    padding: 110px 0 90px;
    min-height: 720px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-bottom {
    position: relative;
    bottom: auto;
    margin-top: 70px;
  }
  .site-footer::before {
    top: 60%;
    font-size: 72vw;
  }
}

@media (max-width: 576px) {
  .site-footer {
    margin-top: 0;
    padding: 80px 0 50px;
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }
  .site-footer::before {
    top: 60%;
    font-size: 110vw;
    transform: translate(-50%, -50%) rotate(-10deg) skewX(-10deg);
  }
}

/* =========================
   ABOUT PAGE CSS
========================= */
.section-hotel2{
   background: url('../image/One-Bedroom Apartment with City View/2.jpg') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  color: white;
}

/* small emblem on the left (top) */
.page-emblem {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 90px;
  height: 46px;
  object-fit: contain;
  opacity: 0.9;
  z-index: 3;
}

/* reuse your existing nav placement but on green hero */
.page-nav {
  z-index: 4;
}

/* title + breadcrumb */
.page-hero-inner {
  position: absolute;
  left: 34px;
  bottom: 70px;
  z-index: 3;
}

.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 70px;
  line-height: 0.9;
  color: #fff;
}

.page-breadcrumb {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: #fff;
}

.crumb-arrow {
  opacity: 0.8;
}

/* responsive */
@media (max-width: 992px) {
  .page-title {
    font-size: 64px;
  }
  .page-hero-inner {
    bottom: 46px;
  }
  .page-hero::after {
    right: -340px;
    top: -220px;
    width: 860px;
    height: 860px;
    opacity: 0.1;
  }
}

@media (max-width: 576px) {
  .page-hero {
    min-height: 360px;
  }
  .page-title {
    font-size: 52px;
  }
  .page-hero-inner {
    left: 16px;
    bottom: 40px;
  }
  .page-emblem {
    left: 16px;
    top: 18px;
  }
}

/* Page background */
body {
  background: #f6f3ea; /* beige */
}

/* Section spacing */
.escape-section {
  padding: 20px 0px;
}

/* Center wrapper (creates beige sides) */
.escape-wrap {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 40px; /* controls side spacing */
}

/* The actual image block */
.escape-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: url("/image/Apartment with Balcony/10.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.escape-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content */
.escape-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 20px;
  color: #fff;
}

.escape-kicker {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
}

.escape-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 25px;
}

.escape-text {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

.escape-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.escape-btn {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.escape-btn.primary {
  background: #ffffff;
  color: #1f3f2d;
}

.escape-btn.primary:hover {
  background: #e9e9e9;
}

.escape-btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.escape-btn.outline:hover {
  background: #ffffff;
  color: #1f3f2d;
}

/* Responsive */
@media (max-width: 992px) {
  .escape-title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .escape-title {
    font-size: 36px;
  }

  .escape-buttons {
    flex-direction: column;
  }
}

/* ROOMS STYLECSS------ */

.page-rooms .nav-item.dropdown-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* show on hover */
.page-rooms .dropdown-hover:hover .nav-dropdown,
.page-rooms .dropdown-hover:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* dropdown links */
.page-rooms .nav-dd-link {
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(24, 66, 49, 0.95);
}

.page-rooms .nav-dd-link:hover {
  opacity: 0.75;
}

/* =========================
   ROOMS PAGE - GRID SECTION
========================= */

.page-rooms .rooms-showcase {
  background: #f3efe7;
  padding: 120px 20px 120px;
}

.page-rooms .rooms-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.page-rooms .rooms-head {
  text-align: center;
  margin-bottom: 70px;
}

.page-rooms .rooms-kicker {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(35, 75, 58, 0.85);
  margin-bottom: 16px;
}

.page-rooms .rooms-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.05;
  color: #234b3a;
  margin: 0;
}

.page-rooms .rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 per row */
  gap: 18px;
}

/* Card */
.page-rooms .room-card {
  border: 1px solid rgba(35, 75, 58, 0.55);
  background: transparent;
}

/* Image frame */
.page-rooms .room-media {
  padding: 18px;
  border-bottom: 1px solid rgba(35, 75, 58, 0.55);
}

.page-rooms .room-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Body */
.page-rooms .room-body {
  padding: 18px 18px 20px;
}

/* You used 2 different structures (toprow/midrow and top/head) — support both */
.page-rooms .room-toprow,
.page-rooms .room-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.page-rooms .room-label,
.page-rooms .room-tag {
  font-family: Inter, sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(35, 75, 58, 0.7);
}

/* Stars (works for both styles) */
.page-rooms .stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

.page-rooms .room-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 12px;
  color: #f59e0b;
}

/* Name + price row */
.page-rooms .room-midrow,
.page-rooms .room-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.page-rooms .room-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
  color: #234b3a;
  margin: 0;
}

.page-rooms .room-price {
  text-align: right;
  min-width: 150px;
  font-family: "Cormorant Garamond", serif;
  color: #234b3a;
}

.page-rooms .room-price .price,
.page-rooms .room-price strong {
  font-size: 26px;
  font-weight: 400;
}

.page-rooms .room-price .per,
.page-rooms .room-price span {
  font-size: 14px;
  opacity: 0.75;
  margin-left: 4px;
}

/* Description */
.page-rooms .room-desc {
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(35, 75, 58, 0.74);
  margin: 0 0 16px;
  max-width: 520px;
}

/* Features row (works for both versions: .feat divs and span version) */
.page-rooms .room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding-top: 12px;
  border-top: 1px solid rgba(35, 75, 58, 0.35);
  margin-bottom: 18px;
}

.page-rooms .room-features .feat,
.page-rooms .room-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(35, 75, 58, 0.88);
}

.page-rooms .room-features i {
  color: #234b3a;
  font-size: 16px;
}

/* Button */
.page-rooms .room-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 54px;
  background: #234b3a;
  color: #fff;

  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  text-decoration: none;
  border-radius: 3px;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.page-rooms .room-btn:hover {
  background: #1c3d30;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .page-rooms .rooms-title {
    font-size: 48px;
  }
  .page-rooms .rooms-grid {
    grid-template-columns: 1fr;
  }
  .page-rooms .room-media img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .page-rooms .rooms-showcase {
    padding: 80px 16px 90px;
  }
  .page-rooms .rooms-title {
    font-size: 38px;
  }
  .page-rooms .room-media img {
    height: 300px;
  }
  .page-rooms .room-price {
    min-width: auto;
  }
}

/* CONTACT US PAGE /////////// */

/* ==============================
   CONTACT PAGE (isolated)
   ============================== */

.contact-page {
  background: #f6f3ea;
  padding: 70px 0 90px;
  color: #254e33;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

.contact-page .ct-wrap {
  width: min(1400px, 92%);
  margin: 0 auto;
}

/* top cards */
.contact-page .ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}

.contact-page .ct-card {
  border: 1px solid rgba(25, 58, 42, 0.45);
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 78px;
}

.contact-page .ct-ico {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
  color: #254e33;
}

.contact-page .ct-card-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.85;
  margin-bottom: 6px;
}

.contact-page .ct-card-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.1;
}

/* main layout */
.contact-page .ct-main {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.contact-page .ct-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #254e33;
  opacity: 0.95;
}

.contact-page .ct-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.contact-page .ct-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(25, 58, 42, 0.75);
  max-width: 420px;
  margin: 0 0 60px;
}

/* follow */
.contact-page .ct-follow-label {
  font-size: 14px;
  color: rgba(25, 58, 42, 0.85);
  margin-bottom: 12px;
}

.contact-page .ct-social {
  display: flex;
  gap: 10px;
}

.contact-page .ct-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #254e33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

:root {
  --arv-green: #254e33;
}

/* error state */
.ct-field.has-error input,
.ct-field.has-error textarea {
  border-color: #c0392b;
}

.ct-error {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #c0392b; /* red like screenshot */
  line-height: 1.2;
}

/* success message */
.contact-alert {
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.contact-alert i {
  font-size: 28px;
  color: #000;
}

.contact-alert-success span {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  color: #000;
}

/* button color (your request) */
.ct-submit {
  background: var(--arv-green);
  border: 1px solid var(--arv-green);
  color: #fff;
}

.ct-submit:hover {
  filter: brightness(0.95);
}

.ct-error {
  display: none;
  color: #d62828;
  font-size: 13px;
  margin-top: 6px;
}

.ct-field input.error {
  border: 1px solid #d62828;
}

.ct-field textarea.error {
  border: 1px solid #d62828;
}
/* Map section like screenshot */
.contact-map-section {
  background: #f3f0e9; /* same vibe as your page */
  padding: 70px 0; /* space top & bottom */
}

.contact-map-card {
  width: 100%;
  max-width: 1100px; /* controls the map width like screenshot */
  margin: 0 auto;
  height: 520px; /* map height */
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive height on mobile */
@media (max-width: 768px) {
  .contact-map-card {
    height: 360px;
  }
}

/* ==============================
   HOMEPAGE ROOMS SECTION
   ============================== */

.home-rooms {
  background: #f3f0e9;
  padding: 110px 0;
}

.home-rooms-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.home-rooms-head {
  text-align: center;
  margin-bottom: 60px;
}

.home-rooms-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #254e33;
  margin-bottom: 12px;
}

.home-rooms-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 1.05;
  color: #254e33;
  margin: 0;
}

/* Grid */
.home-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Card */
.home-room-card {
  border: 1px solid rgba(37, 78, 51, 0.35);
  background: transparent;
}

/* Image */
.home-room-media {
  padding: 20px 20px 0 20px;
  border-bottom: 1px solid rgba(37, 78, 51, 0.35);
}

.home-room-media img {
  width: 100%;
  display: block;
}

/* Body */
.home-room-body {
  padding: 22px 20px 20px 20px;
}

/* Top row */
.home-room-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

.home-room-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #254e33;
  opacity: 0.75;
  margin-bottom: 10px;
}

.home-room-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #254e33;
  margin: 0;
}

.home-room-right {
  text-align: right;
  min-width: 140px;
}

.home-room-stars {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 12px;
  color: #c98a2d;
}

.home-room-price {
  font-family: "Cormorant Garamond", serif;
  color: #254e33;
}

.home-room-price-value {
  font-size: 22px;
}

.home-room-price-unit {
  font-size: 14px;
  opacity: 0.7;
}

/* Description */
.home-room-desc {
  color: #5a6b60;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Meta */
.home-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(37, 78, 51, 0.35);
  border-bottom: 1px solid rgba(37, 78, 51, 0.35);
  margin-bottom: 16px;
  font-size: 13px;
  color: #254e33;
}

.home-room-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Button */
.home-room-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 54px;
  background: #254e33;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-room-btn:hover {
  filter: brightness(1.08);
}

/* CTA Button */
.home-rooms-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.home-rooms-discover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #254e33;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 28px;
  height: 54px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border: none;
}

.home-rooms-discover-btn:hover {
  filter: brightness(1.08);
}

/* Responsive */
@media (max-width: 992px) {
  .home-rooms-title {
    font-size: 46px;
  }
  .home-rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FIX MOBILE HAMBURGER POSITION (always visible) ===== */
@media (max-width: 992px) {
  /* make sure the button is above everything */
  .right-nav {
    position: fixed !important;
    top: calc(var(--envato-h) + 12px) !important; /* below envato bar */
    right: 16px !important;
    left: auto !important;
    z-index: 999999 !important;
    justify-content: flex-end;
  }

  /* ensure the button itself shows */
  .btn-menu {
    display: inline-flex !important;
    border: 0;
    background: transparent;
    padding: 10px;
  }
}

.menu-lines {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 2px;
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.menu-lines::before {
  top: -7px;
}
.menu-lines::after {
  top: 7px;
}

/* Force Bootstrap offcanvas ABOVE everything */
.offcanvas {
  z-index: 9999999 !important;
}
.offcanvas-backdrop {
  z-index: 9999998 !important;
}

/* =========================
   MOBILE OFFCANVAS 
   ========================= */

.mobile-offcanvas.offcanvas {
  width: 260px !important;
  background: #f5f2ea !important;
  color: #1f4d36;
}

/* header */
.mobile-offcanvas .offcanvas-header {
  padding: 14px 18px 10px !important;
  align-items: flex-start;
}

/* logo */
.mobile-offcanvas .mobile-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.18;
}

/* close button (make it visible + not huge) */
.mobile-offcanvas .btn-close {
  transform: scale(0.9);
  opacity: 0.65;
}

/* body spacing */
.mobile-offcanvas .offcanvas-body {
  padding: 8px 18px 18px !important;
}

/* remove bootstrap blue/underline inside offcanvas */
.mobile-offcanvas a {
  color: #1f4d36 !important;
  text-decoration: none !important;
}

/* main mobile nav links */
.mobile-offcanvas .mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-offcanvas .mobile-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 2px 0;
  line-height: 1.2;
}

/* Menu title */
.mobile-offcanvas .mobile-Menu > .mobile-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.65;
  margin-top: 6px;
}

/* sublinks */
.mobile-offcanvas .mobile-sublink {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 0 2px 14px;
  opacity: 0.9;
}

/* active link styling (optional) */
.mobile-offcanvas .mobile-link.active {
  color: #0f2f20 !important;
}

/* bottom button (fix “weird” look) */
.mobile-offcanvas .mobile-book {
  margin-top: 14px;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  background: #254e33;
  color: #fff !important;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/*                 AMENITIES SECTION                 */
.amenities{
  background: #254E33;
  padding: 140px 20px;
}

.amenities-wrap{
  max-width: 1400px;
  margin: 0 auto;
}

.amenities-head{
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: start;
  gap: 90px;
  margin-bottom: 70px;
}

.amenities-left-label{
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding-top: 10px;
}

.amenities-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 55px;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 14px;
  max-width: 760px;
}

.amenities-sub{
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 560px;
}

.amenities-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amenity-card{
  position: relative;
  background: #f3efe7;
  padding: 60px 50px;
  min-height: 340px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  border: 1px solid rgba(255,255,255,.10);
}

.amenity-watermark{
  position: absolute;
  right: 12px;
  top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 180px;
  letter-spacing: -3px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(35,75,58,.22);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.amenity-icon{
  position: relative;
  z-index: 2;
  font-size: 34px;
  color: #234B3A;
  margin-bottom: 26px;
}

.amenity-content{
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 46px;
  z-index: 2;
}

.amenity-name{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .2px;
  color: #234B3A;
  margin: 0 0 12px;
}

.amenity-desc{
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(35,75,58,.74);
  margin: 0;
  max-width: 430px;
}

.amenity-card:hover{
  transform: translateY(-18px);
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  z-index: 5;
}

@media (prefers-reduced-motion: reduce){
  .amenity-card{ transition: none; }
  .amenity-card:hover{ transform: none; }
}

@media (max-width: 992px){
  .amenities{ padding: 110px 18px; }

  .amenities-head{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .amenities-title{ font-size: 50px; }

  .amenities-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .amenity-card{
    padding: 44px 34px;
    min-height: 300px;
  }

  .amenity-content{
    left: 34px;
    right: 34px;
    bottom: 34px;
  }

  .amenity-watermark{ font-size: 160px; }
}

@media (max-width: 576px){
  .amenities-title{ font-size: 40px; }
  .amenities-grid{ grid-template-columns: 1fr; }
  .amenity-watermark{
    font-size: 150px;
    right: 10px;
  }
}
/* ================================
   AMENITIES SHOWCASE SECTION (FIXED)
================================ */

.amenities-showcase{
  background: #ede7dc;   /* slightly darker beige */
  padding: 140px 20px;
}

/* ✅ Wrapper centered + controlled left positioning WITHOUT margin-left hacks */
.amenities-showcase-wrap{
  max-width: 1400px;
  margin: 0 auto;

  /* ✅ controls how “left” your whole section feels */
  padding-left: 20px;   /* change this: 80px / 120px / 150px */
  padding-right: 40px;
}

/* TOP TEXT AREA */
.as-head{
  max-width: 760px;
}

.as-kicker{
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(35,75,58,.85);
  margin-bottom: 18px;
}

.as-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 65px;
  line-height: 1.02;
  color: #234B3A;
  margin: 0 0 20px;
}

.as-sub{
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(35,75,58,.70);
  margin: 0;
  max-width: 520px;
}

/* IMAGE BLOCK */
.as-media{
  margin-top: 70px;
}

.as-image{
  max-width: 760px;
  border: 1px solid rgba(35,75,58,.55);
  padding: 10px;
  background: transparent;
}

.as-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* CAPTION UNDER IMAGE */
.as-caption{
  margin-top: 28px;
  max-width: 520px;
}

.as-caption-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 28px;
  color: #234B3A;
  margin: 0 0 8px;
}

.as-caption-sub{
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(35,75,58,.70);
  margin: 0;
}

/* CONTINUATION (2 images row + center sauna) */

/* big left + small right */
/* big left + small right */
.as-two{
  margin-top: 110px;
  display: grid;
  grid-template-columns: 760px 1fr;
  gap: 160px;
  align-items: start;
}

/* 🔥 MOVE RIGHT BLOCK UP */
.as-two-right{
  padding-top: 10px;
  margin-top: -120px;   /* <-- THIS moves the small image up */
}


/* small framed right image */
.as-image--small{
  max-width: 520px;
  margin-left: auto;
}

.as-image--small img{
  height: 320px;
}

.as-caption--right{
  max-width: 520px;
  margin-left: auto;
}
.as-two{
  align-items: start;
}


/* centered sauna block */
.as-center{
  margin-top: 80px;
  text-align: center;
}

.as-image--wide{
  max-width: 500px;
  margin: 0 auto;
}

.as-image--wide img{
  height: 260px;
}

.as-caption--center{
  max-width: 720px;
  margin: 26px auto 0;
}

/* RESPONSIVE */

/* ✅ On medium screens, reduce the left padding automatically */
@media (max-width: 1200px){
  .amenities-showcase-wrap{
    padding-left: 60px;
  }

  .as-two{
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .as-image--small,
  .as-caption--right{
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 992px){
  .amenities-showcase-wrap{
    padding-left: 0px;
    padding-right: 0px;
  }

  .as-title{ font-size: 50px; }

  .as-image{
    max-width: 100%;
  }

  .as-image img{ height: 360px; }

  .as-two{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .as-image--wide{
    max-width: 100%;
  }
}

@media (max-width: 576px){
  .amenities-showcase{
    padding: 80px 16px 100px;
  }

  .as-title{ font-size: 38px; }

  .as-image img{ height: 280px; }

  .as-two{
    margin-top: 80px;
    gap: 40px;
  }

  .as-image--small img{
    height: 260px;
  }

  .as-image--wide img{
    height: 240px;
  }
}