@font-face {
  font-family: 'Vignette Sans';
  src: url('../fonts/VignetteSans-Regular.woff2') format('woff2'),
    url('../fonts/VignetteSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Vignette Sans', sans-serif;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light-bg);
  overflow-x: hidden;
}

:root {
  --primary-color: #2E273B;
  --secondary-color: #5F2836;
  --light-bg: #F4EDE9;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.text-muted {
  color: rgba(34, 34, 34, 0.7) !important;
}

/* Buttons */
.btn-custom {
  display: inline-flex;
  align-items: center;
  text-wrap: nowrap;
  gap: 8px;
  padding: 12px 22px;
  text-decoration: none;
  font-family: 'Vignette Sans', sans-serif;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all .35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
  text-transform: uppercase;
}

/* Hover lift animation */
.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .15);
}

.btn-custom .apply-arrow {
  transition: transform .3s ease;
  font-size: 1rem;
}

.btn-custom:hover .apply-arrow {
  transform: translateX(5px) rotate(45deg);
}


.btn-primary-custom {
  background: #5c353d;
  color: #fff;
}

.btn-primary-custom:hover {
  background: var(--primary-color);
  color: #fff;
}


.btn-secondary-custom {
  background: var(--primary-color);
  color: #fff;
}

.btn-secondary-custom:hover {
  background: var(--secondary-color);
}


.btn-outline-primary-custom {
  background: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline-primary-custom:hover {
  background: var(--secondary-color);
  color: #fff;
}


.btn-white-custom {
  background: #fff;
  color: #000;
}

.btn-white-custom:hover {
  background: var(--light-bg);
  color: #000;
}


.btn-menu {
  background: #3f344a;
  color: #fff;
  letter-spacing: 3px;
  font-size: 18px;
}

.btn-menu:hover {
  background: #33293d;
}

h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

#cinematic {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background video */
#bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ==============================
    WHITE OVERLAY
============================== */
.phase1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* Logo masked video */
.logo-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 350px;

  z-index: 5;

  -webkit-mask-image: url('../assets/logo.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url('../assets/logo.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.logo-video-wrapper {
  transform-origin: center center;
}

.logo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Overlay */
.violet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2E273B 0%, #2E273B 100%);
  transform: translateY(100%);
  opacity: 0.8;
  z-index: 2;
}

.hero-section {
  transform: translateY(40px);
}

/* Hero */
.hero-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: 10;
}

.hero-text h2 {
  color: #fff;
}

/* Phase 3 Dark Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(10, 8, 20, 0.85) 0%,
      rgba(25, 20, 41, 0.409) 80%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1;
}

/* Make sure content sits above overlay */
.hero-section>* {
  position: relative;
  z-index: 2;
}

.navbar-custom.phase-3~#cinematic .hero-section::before {
  opacity: 1;
}

.hero-section.dark-mode::before {
  opacity: 1;
}

/* LEAVES â€“ shown on Phase 2, hidden otherwise */
.leaf {
  position: fixed;
  pointer-events: none;
  will-change: transform;
  z-index: 4;
}

.leaf-left {
  left: -25px;
  top: 150px;
  max-width: 290px;
  transform: translateY(0) rotate(0deg);
}

.leaf-right {
  right: -30px;
  bottom: -115px;
  max-width: 360px;
  transform: translateY(0) rotate(70deg) scaleX(-1);
}


.logo-wrapper {
  position: relative;
  width: 220px;
  /* adjust if needed */
  height: 60px;
  /* fixed height */
}

.logo-wrapper a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.logo-wrapper a>div {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.logo-wrapper img {
  height: 90px;
  width: auto;
}

#mainNav {
  display: flex;
  justify-content: center;
  align-items: center;

}

#mainNav a {
  margin: 0 18px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: normal;
}

/* #main-content {
  height: 150vh;
} */

/* â”€â”€ HAMBURGER button hover â”€â”€ */
.hamburger-btn {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn:hover {
  transform: scale(1.15);
  opacity: 0.75;
}


/* Hamburger icon */
.hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: color 0.3s;
  color: #111;
  /* Phase 1 default */
}


.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar panel */
.sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 90vw);
  height: 100vh;
  background: #13101a;
  z-index: 1000;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 40px 48px;
  overflow-y: auto;
}

.sidebar.open {
  right: 0;
}

.sidebar-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.sidebar-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.sidebar nav {
  flex: 1;
}

.sidebar nav a {
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s, letter-spacing 0.25s;
}

.sidebar nav a:hover {
  color: #c0a0a8;
  letter-spacing: 4px;
}

.sidebar-footer {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
}

.sidebar-social {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.sidebar-social a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  transition: color 0.2s;
}

.sidebar-social a:hover {
  color: #fff;
}

.no-scroll {
  overflow: hidden;
}

.sidebar-overlay {
  opacity: 0;
  pointer-events: none;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}


.navbar-custom {
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.logo-wrapper>div {
  transition: opacity 0.5s ease;
}

.logo-video-wrapper {
  will-change: transform;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 1000;
  transition: color 0.2s ease;
  color: #111;
  /* default phase 1 */
}

/* Nav links */
.navbar-custom nav a {
  margin: 0 14px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
  transition: color 0.2s;
}

/* Hamburger */
.navbar-custom .hamburger-btn {
  color: #111;
  transition: color 0.2s;
}

/* Book Now */
.book-now {
  background: transparent;
  border: 1px solid #392F4A;
  border-radius: 0.5rem;
  color: #392F4A;
  padding: 10px 20px;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s;
}

.book-now:hover {
  background-color: #111;
  color: #fff;
}


/* Search button */
.booking-search {
  background: #7b2c3b;
  color: #fff;
  border: none;
  padding: 0 38px;
  font-size: 14px;
  letter-spacing: 2px;
  height: 60px;
  transition: all 0.2s;
  white-space: nowrap;
}

.booking-search:hover {
  background: #392F4A;
  color: #fff;
}


.navbar-custom.is-white {
  color: #fff;
}

.navbar-custom.is-white nav a {
  color: #fff;
}



.navbar-custom.is-white .hamburger-btn {
  color: #fff;
}

.navbar-custom.is-white .book-now {
  color: #fff;
  border-color: #fff;
}

.navbar-custom.is-white .book-now:hover {
  background-color: #fff;
  color: #111;
}

.hamburger-btn svg {
  fill: currentColor;
}

/* Logo visibility control */
.logo-dark,
.logo-light,
.logo-white {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Phase 1 — black logo on light hero overlay (logo-dark uses black SVG asset) */
.navbar-custom.phase-1 .logo-dark {
  opacity: 1;
  filter: none;
}

/* Phase 2 + 3 */
.navbar-custom.is-white .logo-light {
  opacity: 1;
  filter: invert(0);
}

/* Phase 4 — black logo on light section */
.navbar-custom.phase-4 .logo-dark {
  opacity: 1;
  filter: none;
}

/* Right side layout */
.navbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

/* Phase 4 â€“ force black */
.navbar-custom.phase-4 {
  color: #111;
}

.navbar-custom.phase-4 nav a {
  color: #111;
}

.navbar-custom.phase-4 .hamburger-btn {
  color: #111;
}

.navbar-custom.phase-4 .book-now {
  color: #111;
  border-color: #111;
}

.navbar-custom.phase-4 .book-now:hover {
  background-color: #111;
  color: #fff;
}



/* Remove invert in phase 4 (normal page) */
.navbar-custom.phase-4 .logo-light {
  filter: invert(1);
}

.logo-dark img {
  transition: filter 0.4s ease;
}

.navbar-custom.phase-4 {
  background-color: #F4EDE9;
  /* or your light section color */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  #mainNav .desktop-dining-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  #mainNav .desktop-dining-toggle {
    margin: 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    color: #000;
    transition: color 0.2s ease;
    cursor: pointer;
  }

  .navbar-custom.is-white #mainNav .desktop-dining-toggle {
    color: #fff;
  }

  .navbar-custom.phase-4 #mainNav .desktop-dining-toggle {
    color: #111;
  }

  #mainNav .desktop-dining-toggle i {
    font-size: 11px;
    transition: transform 0.2s ease;
  }

  #mainNav .desktop-dining-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 190px;
    padding: 10px 0;
    border: 1px solid rgba(57, 47, 74, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(26, 20, 36, 0.14);
    backdrop-filter: blur(10px);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
  }

  .navbar-custom.is-white #mainNav .desktop-dining-menu {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(46, 39, 59, 0.96);
  }

  #mainNav .desktop-dining-menu a {
    display: block;
    margin: 0;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #111 !important;
    text-decoration: none;
    white-space: nowrap;
  }

  .navbar-custom.is-white #mainNav .desktop-dining-menu a {
    color: #fff !important;
  }

  #mainNav .desktop-dining-menu a:hover {
    background: rgba(57, 47, 74, 0.06);
  }

  .navbar-custom.is-white #mainNav .desktop-dining-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  #mainNav .desktop-dining-dropdown:hover .desktop-dining-menu,
  #mainNav .desktop-dining-dropdown:focus-within .desktop-dining-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  #mainNav .desktop-dining-dropdown:hover .desktop-dining-toggle i,
  #mainNav .desktop-dining-dropdown:focus-within .desktop-dining-toggle i {
    transform: rotate(180deg);
  }
}

/* SUBPAGE â€” Initial State */
body.page-sub .navbar-custom {
  background: transparent;
  color: #fff;
  box-shadow: none;
}

body.page-sub .navbar-custom nav a {
  color: #fff;
}

body.page-sub .navbar-custom #mainNav .desktop-dining-toggle {
  color: #fff;
}

body.page-sub .navbar-custom #mainNav .desktop-dining-menu {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(46, 39, 59, 0.96);
}

body.page-sub .navbar-custom #mainNav .desktop-dining-menu a {
  color: #fff !important;
}

body.page-sub .navbar-custom #mainNav .desktop-dining-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.page-sub .navbar-custom .book-now {
  color: #fff;
  border-color: #fff;
}

body.page-sub .navbar-custom .book-now:hover {
  color: #fff;
  border-color: #000;
}

body.page-sub .hamburger-btn {
  color: #fff;
}

/* Subpages: light logo over banner; home hero still uses .logo-light via phase classes */
body.page-sub .logo-light {
  opacity: 0;
}

/* SUBPAGE â€” After Scroll */
body.page-sub .navbar-custom.scrolled {
  background-color: #F4EDE9;
  color: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.page-sub .navbar-custom.scrolled nav a {
  color: #111;
}

body.page-sub .navbar-custom.scrolled #mainNav .desktop-dining-toggle {
  color: #111;
}

body.page-sub .navbar-custom.scrolled #mainNav .desktop-dining-menu {
  border-color: rgba(57, 47, 74, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

body.page-sub .navbar-custom.scrolled #mainNav .desktop-dining-menu a {
  color: #111 !important;
}

body.page-sub .navbar-custom.scrolled #mainNav .desktop-dining-menu a:hover {
  background: rgba(57, 47, 74, 0.06);
}

body.page-sub .navbar-custom.scrolled .book-now {
  color: #111;
  border-color: #111;
}

body.page-sub .navbar-custom.scrolled .book-now:hover {
  background-color: #111;
  color: #fff;
}

body.page-sub .navbar-custom.scrolled .hamburger-btn {
  color: #111;
}


/* Default (over banner) = white logo */
body.page-sub .logo-dark {
  opacity: 0;
}

body.page-sub .logo-white {
  opacity: 1;
}

/* After scroll = dark logo */
body.page-sub .navbar-custom.scrolled .logo-dark {
  opacity: 1;
}

body.page-sub .navbar-custom.scrolled .logo-white {
  opacity: 0;
}

/* NAVBAR DROPDOWN */

.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 0;
  /* removed extra padding */
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1000;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 22px;
  /* spacing only inside items */
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #111 !important;
  text-decoration: none;
  transition: all .2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--light-bg);
  padding-left: 26px;
}

/* SHOW DROPDOWN */

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SIDEBAR DROPDOWN */

.sidebar-dropdown {
  margin-top: 10px;
}

.sidebar-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: left;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 10px;
}

.sidebar-dropdown-menu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
}

.sidebar-dropdown.open .sidebar-dropdown-menu {
  max-height: 240px;
}

/* =====================================================
   MOBILE NAVBAR (â‰¤ 992px)
===================================================== */
@media (max-width: 992px) {

  .navbar-custom {
    padding: 18px 24px;
    grid-template-columns: auto 1fr auto;
  }

  /* Hide desktop nav */
  #mainNav {
    display: none;
  }

  /* Hide book now button */
  .book-now {
    display: none;
  }

  /* Reduce logo size */
  .logo-wrapper {
    width: 160px;
    height: 45px;
  }

  .logo-wrapper img {
    height: 65px;
  }

}

@media (max-width: 576px) {

  .navbar-custom {
    padding: 16px 18px;
  }

  .logo-wrapper img {
    height: 55px;
  }

  .hamburger-btn svg {
    width: 26px;
    height: 24px;
  }

  .sidebar nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s, letter-spacing 0.25s;
  }

  .sidebar nav {
    flex: 0;
  }

  .logo-video-wrapper {
    max-width: 320px;
    z-index: 5;
    top: 40%;
  }

  .leaf-left {
    left: -50px;
    top: 100px;
    max-width: 200px;
    transform: translateY(0) rotate(0deg);
  }

  .leaf-right {
    right: -50px;
    bottom: -100px;
    max-width: 240px;
    transform: translateY(0) rotate(70deg) scaleX(-1);
  }

}

/* ==============================
   BOOKING BAR â€” FIXED LAYOUT
============================== */
.palm-modal .modal-dialog {
  max-width: 720px;
}

.palm-modal .modal-content {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f0ea 0%, #ffffff 100%);
  box-shadow: 0 28px 80px rgba(26, 20, 36, 0.24);
}

.palm-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
  border-bottom: 0;
}

.palm-modal__eyebrow {
  margin: 0;
  color: #7b2c3b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.palm-modal .modal-title {
  color: #392f4a;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.palm-modal .btn-close {
  margin: 0;
  box-shadow: none;
}

.palm-modal .modal-body {
  padding: 0 2rem 2rem;
}

.palm-modal .form-label {
  color: #392f4a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.palm-modal .palm-modal__control.form-control,
.palm-modal .palm-modal__control.form-select {
  min-height: 54px;
  border: 1px solid rgba(57, 47, 74, 0.18);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fff;
  color: #211a2d;
}

.palm-modal .palm-modal__control.form-control:focus,
.palm-modal .palm-modal__control.form-select:focus {
  border-color: #7b2c3b;
  box-shadow: 0 0 0 0.2rem rgba(123, 44, 59, 0.12);
}

.palm-modal .alert {
  border: 0;
  border-radius: 0.9rem;
  background: rgba(57, 47, 74, 0.08);
  color: #392f4a;
}

.palm-modal__submit {
  min-width: 220px;
  padding: 0.95rem 1.5rem;
  background: #392f4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-transform: uppercase;
}

.palm-modal__submit:hover {
  background: #7b2c3b;
  color: #fff;
}

@media (max-width: 575px) {
  .palm-modal .modal-header {
    padding: 1.5rem 1.25rem 0.75rem;
  }

  .palm-modal .modal-body {
    padding: 0 1.25rem 1.5rem;
  }

  .palm-modal__submit {
    width: 100%;
  }
}

.palm-input-group .input-group-text {
  background: #fff;
  border: 1px solid rgba(57, 47, 74, 0.18);
  border-right: 0;
  border-radius: 0.9rem 0 0 0.9rem;
}

.palm-input-group .form-control {
  border-left: 0;
  border-radius: 0 0.9rem 0.9rem 0;
}


.booking-bar {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: stretch;

  width: min(992px, 92vw);
  background: rgba(255, 255, 255, 0.85);
  padding: 14px;
  backdrop-filter: blur(12px);
  z-index: 20;

  gap: 12px;
  /* balanced spacing */
}

/* All dark fields */
.booking-field {
  display: flex;
  align-items: center;
  background: #383838;
  color: #fff;
  height: 60px;
  padding: 0 20px;
  flex: 1;
}

.booking-field i {
  font-size: 20px;
  padding-right: 10px;
}

/* Date field slightly wider */
.field-date {
  flex: 1.4;
  gap: 12px;
}

/* Select styling */
.booking-field select {
  background: #383838;
  border: none;
  color: #fff;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
}

.booking-field select:focus {
  outline: none;
}

/* Date inputs */
.field-date input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  max-width: 120px;
}

.field-date input:focus {
  outline: none;
}

/* Divider inside date */
.field-date .divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .booking-bar {
    flex-direction: column;
    gap: 10px;
  }

  .booking-search {
    width: 100%;
  }
}

/* calender UI */
.flatpickr-calendar {
  background: #F4EDE9;
  border: none;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 20px 24px 24px;
  width: 340px;
  font-family: inherit;
}

/* Month + Year */
.flatpickr-months {
  background: transparent;
  margin-bottom: 10px;
}

.flatpickr-current-month {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

.flatpickr-monthDropdown-months,
.numInputWrapper input {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

/* Weekdays */
.flatpickr-weekdays {
  margin-top: 10px;
}

.flatpickr-weekday {
  color: #7a746d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Days */
.flatpickr-day {
  color: #111;
  border-radius: 50%;
  font-size: 14px;
  height: 38px;
  line-height: 38px;
}

.flatpickr-day:hover {
  background: #e6ded6;
  color: #111;
}

.flatpickr-day.selected {
  background: #3a2e2a;
  color: #fff;
  border: none;
}

.flatpickr-day.today {
  border: 1px solid #3a2e2a;
}

.flatpickr-day.flatpickr-disabled {
  color: #c8c2bb;
}

/* Navigation arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
  fill: #111;
}

/* Remove ugly focus */
.flatpickr-day:focus {
  outline: none;
}

/* phase 4 */

.light-section {
  position: relative;
  /* Changed from fixed */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  /* Clips the cards that are off-screen */
  min-height: 100vh;
  z-index: 10;
  background: #F4EDE9;
}

.phase-four-inner {
  position: relative;
  height: 100%;
  padding: 120px 6%;
}


/* CARD SLIDER */
/* VIEWPORT */
.card-slider-wrapper {
  width: 100%;
  padding: 0 6%;
  overflow: visible;
  /* Let the track move freely inside */
}

/* MOVING TRACK */
/* Update your card-slider CSS */
.card-slider {
  display: flex;
  gap: 40px;
  padding-left: 15%;
  /* Adjust this percentage to match your black box marking */
  padding-right: 240px;
  /* Keep runway for the last card */
  will-change: transform;
}

.homeSliderCard {
  width: 350px;
  /* Consistent width for swiper-like feel */
  background: #fff;
  overflow: hidden;
  /* critical for clean edges */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0;
}

.card-media {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-body {
  padding: 20px;
}

.homeSliderCard h4 {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #464646;
}

.homeSliderCard p {
  font-size: 16px;
  line-height: 1.6;
  color: #464646;
  transition: opacity 0.3s ease;
}

.homeSliderCard:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.homeSliderCard:hover img {
  transform: scale(1.08);
}

.card-slider:hover .card {
  opacity: 0.6;
}

.card-slider:hover .card:hover {
  opacity: 1;
}



.homeSliderCard img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 16px;
}

.homeSliderCard h4 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #3b2f3f;
}

.homeSliderCard p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* SLIDER ARROWS */
.slider-arrows {
  position: absolute;
  bottom: 100px;
  right: 80px;
  display: flex;
  gap: 20px;
  z-index: 20;
  pointer-events: auto;
}

.slider-arrows .arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #3b2f3f;
  background: transparent;
  color: #3b2f3f;
  font-size: 18px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

.slider-arrows .arrow:hover {
  background: #3b2f3f;
  color: #fff;
  transform: translateY(-2px);
}

.slider-arrows .arrow:active {
  transform: translateY(0);
}

.phase-four-inner {
  position: relative;
  height: 100%;
  padding: 120px 6% 160px;
  /* â¬…ï¸ bottom padding added */
}

.card-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.card-slider-wrapper {
  scrollbar-width: none;
}




.amenities-section {
  padding: 100px 10%;
  background-color: #F4EDE9;
  /* Matches Phase 4 background */
  display: flex;
  justify-content: center;
}

.amenities-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 30px;
  /* Space between boxes */
  max-width: 992px;
  width: 100%;
}

.amenity-card {
  background: transparent;
  border: 1px solid #3b2f3f;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* REMOVE 'transform' from the transition list */
  transition: background 0.3s ease;
  opacity: 1;
  will-change: transform, opacity;
  cursor: pointer;
  transform-style: preserve-3d;
  /* Tells the browser to handle 3D layers */
  perspective: 1000px;
}

/* 
.amenity-card:hover {
  background: #fff;
} */

.amenity-icon {
  font-size: 40px;
  margin-bottom: 30px;
  color: #3b2f3f;
}

.amenity-icon {
  display: inline-block;
  will-change: transform;
  /* Adds a tiny drop shadow to the icon to simulate height */
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  pointer-events: none;
  /* Ensures the icon doesn't block the card's mousemove */
}

.amenity-icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.amenity-card h3 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #3b2f3f;
  font-weight: 400;
  text-transform: capitalize;
}

.amenity-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 280px;
}

/* RESPONSIVE: Stack to 1 column on mobile */
@media (max-width: 992px) {
  .amenities-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-container {
    grid-template-columns: 1fr;
  }
}



/* Video Player */
.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #F4EDE9;
  color: #000;
}

.video-title-parent {
  max-width: 900px;
  margin: 30px auto;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* Darken slightly for the play button visibility */
}

.play-trigger {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-trigger svg {
  width: 30px;
  fill: white;
}

.play-trigger:hover {
  background: rgba(255, 255, 255, 0.3);
  scale: 1.1;
}

.play-trigger {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

/* Pause icon hidden by default */
.icon-pause {
  display: none;
}

/* When playing */
.play-trigger.is-playing .icon-play {
  display: none;
}

.play-trigger.is-playing .icon-pause {
  display: block;
}

/* Subtle fade while playing — hidden by default, shown on hover */
.play-trigger.is-playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-wrap:hover .play-trigger.is-playing,
.hero-video-wrap:focus-within .play-trigger.is-playing {
  opacity: 0.85;
  visibility: visible;
  pointer-events: auto;
}



/* rooms section */
/* SECTION */
.th8-rooms-section {
  background: #F4EDE9;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.th8-rooms-section .th8-section-header {
  max-width: 1200px;
  margin: 0 auto 35px;
  padding: 0 24px;
}

.th8-rooms-section .th8-section-header h2 {
  color: #2E273B;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 6px;
}

.th8-rooms-section .th8-section-header p {
  letter-spacing: 3px;
  font-size: 1.2rem;
  color: #2E273B;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* CONTAINER */

.th8-slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* SWIPER CARD */

.th8RoomsSlider {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.th8RoomsSlider .swiper-wrapper {
  align-items: stretch;
}

.th8RoomsSlider .swiper-slide {
  height: auto;
}

/* SLIDE LAYOUT */

.th8-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px;
  min-height: 390px;
  align-items: center;
  gap: 24px;
}

/* TEXT SIDE */

.th8-slide-text {
  text-align: left;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
}

.th8-slide-text h3 {
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #2E273B;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

/* ICONS */

.th8-room-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
  font-size: .9rem;
  color: #444;
}

.th8-room-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.th8-room-icons img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(19%) sepia(12%) saturate(675%) hue-rotate(230deg);
}

/* CTA button inside slide — keep inline, don't stretch */
.th8-slide-text .btn-custom {
  align-self: flex-start;
}

/* MEDIA — consistent landscape frame for all room images */

.th8-slide-media {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  background: #ebe4df;
}

.th8-slide-media video,
.th8-slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ARROWS */

.th8-slider-arrow {
  background: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.th8-slider-arrow:hover {
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.th8-prev {
  left: -70px;
}

.th8-next {
  right: -70px;
}

/* RESPONSIVE — tablet */

@media (max-width: 1300px) {
  .th8-prev {
    left: 10px;
  }

  .th8-next {
    right: 10px;
  }

  .th8-slider-arrow {
    background: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 992px) {
  .th8-slide-inner {
    padding: 32px 28px;
    min-height: 340px;
    gap: 20px;
  }

  .th8-slide-text {
    padding: 16px 10px 16px 0;
    min-height: 260px;
  }

  .th8-slide-text h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .th8-slide-media {
    height: 260px;
  }
}

/* RESPONSIVE — mobile */

@media (max-width: 768px) {

  .th8-rooms-section {
    padding: 56px 0 48px;
  }

  .th8-slide-inner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    min-height: 0;
    gap: 0;
  }

  .th8-slide-text {
    padding: 0 0 10px;
    min-height: 0;
  }

  .th8-slide-text h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .th8-slide-media {
    height: 220px;
    margin-top: 16px;
  }

  .th8-prev {
    left: 8px;
  }

  .th8-next {
    right: 8px;
  }
}


@media (max-width: 480px) {

  .btn-primary {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 768px) {

  .footer__legal {
    padding: 0;
    flex-wrap: wrap;
  }
}

/* dining homepage */
.dining-parallax {
  background-color: #F4EDE9;
  padding: 100px 0px 100px;
  overflow: hidden;
}

.parallax-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  width: 100%;
}

.parallax-header h2 {
  color: #2E273B;
}

/* Fixed heights to ensure consistent layout */
.item-left {
  height: 600px;
  /* margin-top: 100px; */
}

.item-right-top {
  height: 500px;
  width: 90%;
}

.item-right-bottom {
  height: 350px;
  width: 70%;
}

.parallax-item img {
  width: 100%;
  height: 120%;
  /* Extra height for the slide room */
  object-fit: cover;
  will-change: transform;
  transform: scale(1.2);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-item.revealed img {
  transform: scale(1);
}

/* hotels css */
.ihg-hotels {
  border: 3px solid #000;
  position: relative;
  padding: 20px;
}

.ihg-hotels ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}

.ihg-hotels ul li {
  padding: 0 15px;
  margin: 15px auto;
  text-align: center;
}

.ihg-hotels ul li img {
  max-width: 90px;
  filter: grayscale(1);
}

.ihg-hotels ul li a:hover img {
  filter: grayscale(0);
}

.ihg-hotels .first {
  position: absolute;
  left: 20px;
  top: -20px;
  background: #DCDAD7;
  padding: 0 15px;
  max-width: 200px;
}

.ihg-hotels .last {
  right: 20px;
  position: absolute;
  bottom: -20px;
  padding: 0 15px;
  background: #DCDAD7;
  max-width: 200px;
}

.hotel-logos {
  background-color: #DCDAD7;
}

/* =========================================
   FOOTER BASE
========================================= */
.footer {
  background: #2E273B;
  color: #fff;
  font-family: 'Vignette Sans', sans-serif;
  font-weight: 300;
  position: relative;
  /* IMPORTANT */
  overflow: hidden;
  /* Hide overflow of leaves */
}

.footer-leaf {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer__main,
.footer__bottom {
  position: relative;
  z-index: 2;
}

.footer-left-leaf {
  position: absolute;
  top: -60px;
  left: -120px;
  width: 420px;
  opacity: 0.08;
  transform: rotate(-8deg);
}

.footer-right-leaf {
  position: absolute;
  bottom: -100px;
  right: -120px;
  width: 420px;
  opacity: 0.08;
  transform: rotate(180deg);
}

@media (max-width: 768px) {

  .footer-left-leaf,
  .footer-right-leaf {
    width: 300px;
    opacity: 0.08;
  }
}

.footer-left-leaf,
.footer-right-leaf {
  mix-blend-mode: screen;
}

/* =========================================
   MAIN GRID (Desktop)
========================================= */
.footer__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column Titles */
.footer__col-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}

.footer__col-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

/* =========================================
   BRAND
========================================= */
.footer__hotel-logo {
  width: 120px;
  margin-bottom: 22px;
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

/* =========================================
   QUICK LINKS
========================================= */
.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding-top: 25px;
}

.footer__nav-grid a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color .2s ease;
}

.footer__nav-grid a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-booking-links {
  color: #ffffff;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-booking-links:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   EXPERIENCE
========================================= */
.footer__info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  color: #ffffff;
  padding-left: 0;
  padding-top: 25px;
}

.footer__info-list strong {
  font-weight: 400;
}

.footer__ihg-logo img {
  max-width: 140px;
}

/* =========================================
   RIGHT COLUMN
========================================= */
.footer__social {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.85);
  transition: opacity .2s ease;
}

.footer__social a:hover {
  opacity: .7;
}

/* Newsletter */
.footer__newsletter-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.footer__newsletter-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.footer__email-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 11px 14px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}

.footer__email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.footer__submit-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 11px;
  font-size: 12px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s ease;
  color: #fff;
}

.footer__submit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer__submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Keep footer CTA look if legacy JS adds Bootstrap button classes */
.footer__submit-btn.btn,
.footer__submit-btn.btn-primary {
  width: 100%;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 0;
  padding: 11px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff !important;
  box-shadow: none;
}

/* App Buttons */
.footer__app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__ihg-text {
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

/* =========================================
   BOTTOM BAR
========================================= */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  font-size: 14px;
  color: #fff;
}

.footer__legal {
  display: flex;
  gap: 18px;
  list-style: none;
}

.footer__legal a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}

.footer__legal a:hover {
  opacity: .8;
}

/* =========================================
   TABLET (â‰¤ 1024px)
========================================= */
@media (max-width: 1024px) {

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    padding: 60px 50px;
  }

  .footer__bottom {
    padding: 20px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================
   MOBILE (â‰¤ 768px)
========================================= */
@media (max-width: 768px) {

  .footer__main {
    grid-template-columns: 1fr;
    padding: 50px 28px;
    gap: 40px;
  }

  .footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__app-buttons {
    flex-direction: column;
  }

  .footer__bottom {
    padding: 20px 28px;
  }
}

/* gallery page css */
/* Remove default slash */
.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
  padding: 0 8px;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}



/* gallery page */
.luxury-opposing-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #F4EDE9;
}

.scroll-column {
  position: relative;
}

.image-block {
  height: 75vh;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 720px) {
  .luxury-opposing-section {
    height: auto;
    overflow: visible;
  }

  .image-block {
    height: 60vh;
    margin-bottom: 40px;
  }
}

.filter-button-group button,
.filter-button-group a.filter-btn {
  border-radius: 0;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 10px 25px;
  border: 1px solid #5F2836;
  color: #5F2836;
  transition: 0.3s;
  background: transparent;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.filter-button-group button.active,
.filter-button-group button:hover,
.filter-button-group a.filter-btn.active,
.filter-button-group a.filter-btn:hover {
  background-color: #5F2836 !important;
  color: #fff !important;
}

@media (max-width: 480px) {
  .filter-button-group button,
  .filter-button-group a.filter-btn {
    border-radius: 0;
    font-size: 0.8rem;
    padding: 10px;
    letter-spacing: 0;
  }
}

/* GRID WRAPPER */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
}

/* GRID ITEMS */
.grid-item {
  width: 33.333%;
  padding: 15px;
  box-sizing: border-box;
}

/* IMAGE CONTAINER */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FORCE CONSISTENT HEIGHT */
.grid-item {
  height: 400px;
  overflow: hidden;
}

/* TABLET */
@media (max-width: 991px) {
  .grid-item {
    width: 50%;
    height: 350px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .grid-item {
    width: 100%;
    height: 300px;
  }
}

.gallery-intro {
  background: #F4EDE9;
}

.description {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

.batch-hidden {
  display: none !important;
}


.palm-modal .modal-dialog {
  max-width: 720px;
}

.palm-modal .modal-content {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f0ea 0%, #ffffff 100%);
  box-shadow: 0 28px 80px rgba(26, 20, 36, 0.24);
}

.palm-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
  border-bottom: 0;
}

.palm-modal__eyebrow {
  margin: 0;
  color: #7b2c3b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.palm-modal .modal-title {
  color: #392f4a;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.palm-modal .btn-close {
  margin: 0;
  box-shadow: none;
}

.palm-modal .modal-body {
  padding: 0 2rem 2rem;
}

.palm-modal .form-label {
  color: #392f4a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.palm-modal .palm-modal__control.form-control,
.palm-modal .palm-modal__control.form-select {
  min-height: 54px;
  border: 1px solid rgba(57, 47, 74, 0.18);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fff;
  color: #211a2d;
}

.palm-modal .palm-modal__control.form-control:focus,
.palm-modal .palm-modal__control.form-select:focus {
  border-color: #7b2c3b;
  box-shadow: 0 0 0 0.2rem rgba(123, 44, 59, 0.12);
}

.palm-modal .alert {
  border: 0;
  border-radius: 0.9rem;
  background: rgba(57, 47, 74, 0.08);
  color: #392f4a;
}

.palm-modal__submit {
  min-width: 220px;
  padding: 0.95rem 1.5rem;
  background: #392f4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-transform: uppercase;
}

.palm-modal__submit:hover {
  background: #7b2c3b;
  color: #fff;
}

@media (max-width: 575px) {
  .palm-modal .modal-header {
    padding: 1.5rem 1.25rem 0.75rem;
  }

  .palm-modal .modal-body {
    padding: 0 1.25rem 1.5rem;
  }

  .palm-modal__submit {
    width: 100%;
  }
}
