/* ============================================================
   PAGE: [style.css]
   SECTION: design tokens
   ============================================================ */
:root {
  --primary-navy: #0a192f;
  --primary-blue: #1a2b4c;
  --gold-metallic: #c5a059;
  --gold-hover: #c5a059;
  --bg-cream: #fdfbf7;
  --text-dark: #121212;
  --text-soft: #4a4a4a;

  --font-display: "Cinzel", serif;
  --font-body: "Satoshi", sans-serif;

  --glass-bg: rgba(10, 25, 47, 0.85);
  --border-radius-lg: 12px;
  --transition-speed: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --utility-bar-height: 40px;
}

/* ============================================================
   END: [style.css] - DESIGN TOKENS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: location switcher
   ============================================================ */
.loc-switcher {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.loc-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0px;
  cursor: pointer;
  line-height: 1;
}

.loc-trigger:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 2px;
  border-radius: 2px;
}

.loc-sep {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.loc-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-metallic);
  line-height: 1;
}

.loc-arrow {
  font-size: 0.6rem;
  color: var(--gold-metallic);
  transition: transform 0.3s ease;
  line-height: 1;
}

.loc-switcher.loc-open .loc-arrow {
  transform: rotate(180deg);
}

.main-navbar.scrolled .loc-sep {
  color: rgba(10, 25, 47, 0.3);
}

.main-navbar.scrolled .loc-name,
.main-navbar.scrolled .loc-arrow {
  color: var(--primary-navy);
}

.loc-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: var(--primary-navy);
  border-top: 2px solid var(--gold-metallic);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  z-index: 3000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

@media (hover: hover) and (pointer: fine) {
  .loc-switcher:hover .loc-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .loc-switcher:hover .loc-arrow {
    transform: rotate(180deg);
  }
}

.loc-switcher.loc-open .loc-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.loc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease,
    background 0.2s ease;
}

.loc-option:hover,
.loc-option:focus-visible {
  color: var(--gold-metallic);
  padding-left: 28px;
  background: rgba(197, 160, 89, 0.08);
  text-decoration: none;
  outline: none;
}

.loc-option.loc-active {
  color: var(--gold-metallic);
}

.loc-bullet {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   END: [style.css] - LOCATION SWITCHER
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: base
   ============================================================ */
body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

/* ============================================================
   END: [style.css] - BASE
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: utilities
   ============================================================ */
.section-padding {
  padding: clamp(2.5rem, 2vw, 4.5rem) 0;
}

.bg-cream {
  background-color: var(--bg-cream);
}
.bg-navy,
.bg-royal-blue {
  background-color: var(--primary-navy);
}
.bg-gold {
  background-color: var(--gold-metallic) !important;
}

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

.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.lh-lg {
  line-height: 1.8;
}

.border-gold {
  border-color: var(--gold-metallic) !important;
  border-width: 2px !important;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.object-fit-cover {
  object-fit: cover;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.transition-scale {
  transition: transform 0.8s ease;
}

.transition-transform {
  transition: transform 0.6s ease;
}

/* ============================================================
   END: [style.css] - UTILITIES
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: utility bar styles
   ============================================================ */
.utility-bar {
  background-color: var(--primary-navy);
  position: relative;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Effect for Desktop Links */
.hover-gold {
  transition: color 0.3s ease;
}
.hover-gold:hover {
  color: var(--gold-metallic, var(--gold-metallic)) !important;
}

/* Close Button Styling */
.utility-bar-close {
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.utility-bar-close:hover {
  opacity: 1 !important;
  transform: scale(1.1);
}

.utility-bar-close:focus {
  outline: none;
  box-shadow: none;
}

/* Mobile Specific Adjustments */
@media (max-width: 991px) {
  .utility-bar {
    background-color: var(--primary-navy); /* Maintain Dark Navy */
  }

  /* Specific styling for the offer icon box */
  .offer-icon-box {
    background-color: var(--gold-metallic, var(--gold-metallic));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  /* Close button hover state */
  .utility-bar .btn-link {
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .utility-bar .btn-link:hover {
    opacity: 1;
    color: #fff !important;
  }
}

/* ============================================================
   END: [style.css] - UTILITY BAR STYLES
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: main navigation
   ============================================================ */
.main-navbar {
  position: fixed;
  top: 53px;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 20%);
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1040 !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(100%) blur(10px);
}

/* Alternative with more opacity if blur doesn't work */
@supports not (
  (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))
) {
  .main-navbar {
    background-color: rgba(0, 0, 0, 0.85);
  }
}

.main-navbar.shifted-up {
  top: 0 !important;
}

@media (max-width: 991px) {
  .main-navbar {
    top: 86px;
  }

  .main-navbar.shifted-up {
    top: 0 !important;
  }
}

/* Navbar Scrolled State */
.main-navbar.scrolled {
  top: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

/* ============================================================
   END: [style.css] - MAIN NAVIGATION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: navbar brand & text logo
   ============================================================ */
.navbar-brand {
  padding: 0.5rem 0;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Text Logo Container */
.text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--bg-cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-bottom: -2px;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.4rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Scrolled state - Logo changes to dark */
.main-navbar.scrolled .logo-main {
  color: var(--gold-metallic);
}

.main-navbar.scrolled .logo-sub {
  color: var(--primary-navy);
}

/* Hover effect on logo */
.navbar-brand:hover .logo-main {
  color: var(--gold-hover);
  transform: translateX(2px);
}

.navbar-brand:hover .logo-sub {
  color: var(--gold-metallic);
}

/* ============================================================
   END: [style.css] - NAVBAR BRAND & TEXT LOGO
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: nav links
   ============================================================ */
.nav-link {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-metallic);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-metallic) !important;
}

.nav-link:hover::after {
  width: 100%;
}

.main-navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

.main-navbar.scrolled .nav-link:hover {
  color: var(--gold-metallic) !important;
}

.main-navbar.scrolled .nav-link::after {
  background-color: var(--gold-metallic);
}

.nav-link.active {
  color: var(--gold-metallic) !important;
}

/* ============================================================
   END: [style.css] - NAV LINKS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: dropdown menu
   ============================================================ */
.dropdown-toggle::after {
  margin-left: 0.5rem;
  font-size: 0.7rem;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  min-width: 200px;
  border-radius: 0;
  animation: fadeInDown 0.3s ease;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.dropdown-item:hover {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--gold-metallic);
  padding-left: 2rem;
}

.dropdown-item:active {
  background-color: rgba(197, 160, 89, 0.2);
}

/* ============================================================
   END: [style.css] - DROPDOWN MENU
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: mobile & desktop icons
   ============================================================ */
.bi-briefcase,
.bi-person,
.bi-person-circle,
.bi-list {
  color: #fff !important;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.main-navbar.scrolled .bi-briefcase,
.main-navbar.scrolled .bi-person,
.main-navbar.scrolled .bi-person-circle,
.main-navbar.scrolled .bi-list {
  color: var(--text-dark) !important;
}

.nav-link:hover i {
  color: var(--gold-metallic);
  transform: translateY(-2px);
}

.d-lg-none i {
  padding: 5px;
}

/* Desktop Login Section */
.nav-item .border-start {
  border-color: rgba(255, 255, 255, 0.3) !important;
  padding-left: 1rem;
  margin-left: 0.5rem;
}

.main-navbar.scrolled .nav-item .border-start {
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.nav-item a.nav-link.d-flex {
  padding: 0.25rem 0.5rem;
}

.nav-item a.nav-link.d-flex:hover {
  transform: translateY(-2px);
}

/* ============================================================
   END: [style.css] - MOBILE & DESKTOP ICONS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: cta button (book now)
   ============================================================ */
.btn-accent-solid {
  background: linear-gradient(135deg, var(--gold-metallic) 0%, #d4a853 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 160px;
  width: fit-content;
  z-index: 1;
}

.btn-accent-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-accent-solid:hover::before {
  left: 100%;
}

.btn-accent-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
  color: var(--bg-cream);
}

.btn-main-text {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-sub-text {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-outline-light {
  border-radius: 0;
  border-color: var(--bg-cream);
  height: 100%;
}
/* ============================================================
   END: [style.css] - CTA BUTTON (BOOK NOW)
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: mobile menu overlay
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2332 100%);
  overflow-x: hidden;
  overflow-y: auto;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-overlay.active {
  width: 100%;
  pointer-events: auto;
  visibility: visible;
}

@media (min-width: 576px) {
  .mobile-menu-overlay.active {
    width: 400px;
  }
}

/* Mobile Menu Close Button */
.mobile-menu-overlay .btn-close {
  opacity: 1;
  filter: brightness(0) invert(1);
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.mobile-menu-overlay .btn-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu-overlay .border-bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.mobile-nav-links {
  padding: 1rem 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.mobile-nav-links > li > a {
  padding: 1rem 0;
}

.mobile-nav-links a:hover {
  padding-left: 10px;
  color: var(--gold-metallic) !important;
}

.mobile-nav-links .collapse {
  margin-top: 1rem;
}

.mobile-nav-links .collapse a {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
}

.mobile-nav-links .collapse a:hover {
  color: var(--gold-metallic) !important;
}

.mobile-nav-links .bi-chevron-down {
  transition: transform 0.3s ease;
}

.mobile-nav-links [aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-menu-overlay .btn-gold {
  background-color: var(--gold-metallic);
  color: #000;
  border: none;
  transition: all 0.3s ease;
}

.mobile-menu-overlay .btn-gold:hover {
  background-color: #d4a853;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Stop child elements from interfering with dropdown clicks */
.mobile-menu-overlay .dropdown-toggle * {
  pointer-events: none;
}

/* Booking Contact Section */
.booking-contact-wrapper {
  padding: 1rem;
}

.booking-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.booking-phone-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.booking-phone-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.booking-phone-link:hover {
  color: var(--gold-metallic);
  transform: translateY(-2px);
}

.booking-phone-link:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* ============================================================
   END: [style.css] - MOBILE MENU OVERLAY
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: navbar toggler
   ============================================================ */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler:active {
  outline: none;
}

.navbar-collapse {
  flex-grow: 0;
}

/* ============================================================
   END: [style.css] - NAVBAR TOGGLER
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: responsive - navbar
   ============================================================ */
@media (min-width: 992px) {
  .navbar-nav {
    gap: 2rem;
  }

  .navbar-nav .gap-4 {
    gap: 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .text-logo {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .btn-outline-light,
  .btn-accent-solid {
    padding: 0.6rem 1rem !important;
  }

  .btn-main-text {
    font-size: 0.75rem;
  }

  .btn-sub-text {
    font-size: 0.6rem;
  }

  .navbar-brand {
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .main-navbar {
    padding: 0.75rem 0;
  }

  .text-logo {
    font-size: 1rem;
  }

  .bi-briefcase,
  .bi-person {
    font-size: 1.2rem !important;
  }

  .bi-list {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 575px) {
  .text-logo {
    font-size: 0.9rem;
  }

  .mobile-menu-overlay .container {
    padding: 0 1.5rem;
  }
}

/* ============================================================
   END: [style.css] - RESPONSIVE - NAVBAR
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: smooth scroll
   ============================================================ */
html {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 140px;
  }
}

/* ============================================================
   END: [style.css] - SMOOTH SCROLL
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: hero section (global)
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.hero-section .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section .carousel-item.active .hero-image-wrapper img {
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(10 25 47) 0%,
    rgb(10 25 47) 25%,
    rgb(10 25 47 / 80%) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-text-container {
  position: relative;
  z-index: 2;
  height: 100%;
  pointer-events: none;
}

.hero-text-container * {
  pointer-events: auto;
}

.hero-section .carousel-indicators {
  bottom: 160px;
  z-index: 3;
  margin-bottom: 0;
}

.hero-section .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.hero-section .carousel-indicators .active {
  background-color: var(--gold-metallic);
  border-color: var(--gold-metallic);
  transform: scale(1.2);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 5%;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
  opacity: 0.8;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
}

.booking-widget-wrapper {
  bottom: 0 !important;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-top: 4px solid var(--gold-metallic);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.btn-gold {
  background-color: var(--gold-metallic) !important;
  border: 1px solid var(--gold-metallic) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--gold-metallic);
  border: 1px solid var(--gold-metallic);
}

@media (max-width: 991px) {
  .hero-section {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-section .carousel-indicators {
    bottom: 200px;
  }

  .booking-widget-wrapper {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-section .carousel-indicators {
    bottom: 240px;
  }

  .hero-section .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
}

/* ============================================================
   END: [style.css] - HERO SECTION (GLOBAL)
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: mobile bottom bar
   ============================================================ */
.mobile-bottom-bar {
  z-index: 1040;
  height: 60px;
}

.mobile-bottom-bar .btn-gold {
  background-color: var(--gold-metallic);
  color: #fff;
}

/* ============================================================
   END: [style.css] - MOBILE BOTTOM BAR
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: modal overlays
   ============================================================ */

.booking-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1055;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
}

.booking-menu-content {
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.booking-menu-overlay.active .booking-menu-content {
  transform: translateY(0);
}

/* Location Dropdown Styling */
.location-dropdown {
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 16px 12px;
  padding-right: 1.5rem;
}

.location-dropdown:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.location-dropdown option {
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 0.95rem;
}

/* ============================================================
   END: [style.css] - MODAL OVERLAYS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: animations
   ============================================================ */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
  transform: translateY(20px);
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   END: [style.css] - ANIMATIONS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: introduction section
   ============================================================ */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

@media (min-width: 992px) {
  .about-image-wrapper {
    height: 100vh;
    max-height: 800px;
  }
}

/* removed duplicate .transition-scale */
.about-image-wrapper:hover .transition-scale {
  transform: scale(1.05);
}

/* ============================================================
   END: [style.css] - INTRODUCTION SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: intro carousel nav (overlay)
   ============================================================ */
.nav-btn-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25); /* Glassy Effect */
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 5;
  padding: 0;
}

.nav-btn-overlay:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Specific Positioning */
.nav-btn-overlay.prev-btn {
  left: 20px;
}

.nav-btn-overlay.next-btn {
  right: 20px;
}

/* ============================================================
   END: [style.css] - INTRO CAROUSEL NAV (OVERLAY)
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: offers section
   ============================================================ */
.offers-scroll-wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  padding-right: 20px;
  cursor: grab;
}

.offer-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  background-color: #000;
  user-select: none;
  -webkit-user-select: none;
  border-radius: var(--border-radius-lg);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .offer-card {
    width: 380px;
    height: 320px;
  }
}

.offer-card:hover .transition-scale {
  transform: scale(1.05);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.border-top-gold {
  border-top: 4px solid var(--gold-metallic);
}

.card-content-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 70%;
  pointer-events: none;
}

.card-img-wrapper {
  height: 100%;
}

.group-hover-arrow:hover .transition-transform {
  transform: translateX(5px);
}
.transition-transform {
  transition: transform 0.6s ease;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   END: [style.css] - OFFERS SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: hotel cards
   ============================================================ */
.line-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.line-heading::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--text-dark);
}

.hotel-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 450px;
  border-radius: 4px;
}

.hotel-img-box,
.hotel-img-box img {
  width: 100%;
  height: 100%;
}

.hotel-img-box img {
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hotel-card:hover .hotel-img-box img {
  transform: scale(1.1);
}

.hotel-content-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background-color: #fff;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  margin-bottom: 30px;
}

.hotel-title {
  color: var(--text-dark);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hotel-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-metallic);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hotel-card:hover .hotel-link i {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .hotel-card {
    height: 350px;
  }
  .hotel-content-box {
    width: 90%;
    padding: 20px;
    margin-bottom: 20px;
  }
}

.event-card-height {
  height: 400px;
}

/* ============================================================
   END: [style.css] - HOTEL CARDS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: events section - enhanced cards
   ============================================================ */
.events-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-metallic) #f0f0f0;
}

.events-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.events-scroll-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.events-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--gold-metallic);
  border-radius: 4px;
}

.event-card-enhanced {
  width: 380px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.event-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.event-card-enhanced:hover .event-card-img-wrapper img {
  transform: scale(1.1);
}

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.event-badge-gold {
  background: var(--gold-metallic);
  color: #fff;
}

.event-card-content {
  padding: 25px;
}

.event-card-title-new {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.event-card-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.event-features-list li {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

/* Navigation Buttons */
.nav-btn-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-navy);
  background: #fff;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn-circle:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  color: #fff;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .event-card-enhanced {
    width: 320px;
  }

  .event-card-img-wrapper {
    height: 200px;
  }

  .event-card-content {
    padding: 20px;
  }

  .event-card-title-new {
    font-size: 1.2rem;
  }
}

/* Active state for custom tab underline effect */
.event-tab-link.active {
  color: var(--gold-metallic) !important;
  border-bottom: 2px solid var(--gold-metallic);
}

.event-tab-link:hover {
  color: var(--gold-metallic) !important;
}

/* Ensure pointer events pass through overlay container but hit buttons */
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}

/* ============================================================
   END: [style.css] - EVENTS SECTION - ENHANCED CARDS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: benefits grid
   ============================================================ */
.benefits-grid {
  border-left: 1px solid rgba(197, 160, 89, 0.3);
}

.benefit-item {
  padding: 40px 30px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  text-align: center;
  transition: background-color 0.3s ease;
}

.benefit-item:nth-child(odd) {
  border-right: 1px solid rgba(197, 160, 89, 0.3);
}

.benefit-item:nth-last-child(1),
.benefit-item:nth-last-child(2) {
  border-bottom: none;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--gold-metallic);
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-5px);
}

.benefit-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin: 0;
}

.btn-group-gap {
  gap: 15px;
}

.btn-gold-block {
  display: block;
  width: 100%;
  background-color: var(--gold-metallic);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 0;
  border: 1px solid var(--gold-metallic);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-gold-block:hover {
  background-color: transparent;
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.btn-gold-block:active {
  transform: translateY(1px);
  box-shadow: none;
}

@media (max-width: 991px) {
  .benefits-grid {
    border-left: none;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    margin-top: 40px;
  }

  .benefit-item {
    border-right: 1px solid rgba(197, 160, 89, 0.3);
  }

  .benefit-item:nth-child(even) {
    border-right: none;
  }
}

/* ============================================================
   END: [style.css] - BENEFITS GRID
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: dining section
   ============================================================ */
.dining-scroll-wrapper {
  display: flex;
  gap: 2rem;
  padding-bottom: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dining-scroll-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 85%;
}

@media (min-width: 768px) {
  .dining-scroll-card {
    width: 45%;
    scroll-snap-align: start;
  }
}
@media (min-width: 1200px) {
  .dining-scroll-card {
    width: 32%;
  }
}

.dining-card {
  display: block;
  height: 100%;
  transition: transform 0.3s ease;
}
.dining-card:hover {
  transform: translateY(-5px);
}

.dining-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 4px;
}

.dining-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.dining-card:hover .dining-img-box img {
  transform: scale(1.05);
}

.dining-title {
  font-family: var(--font-body, sans-serif);
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.dining-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-gold-arrow {
  color: var(--gold-metallic);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.dining-card:hover .link-gold-arrow {
  gap: 15px;
}

/* ============================================================
   END: [style.css] - DINING SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: room showcase
   ============================================================ */
.custom-tabs .nav-link {
  color: var(--text-soft) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  padding: 9px 22px;
  border-radius: 2px;
  transition: all var(--transition-speed);
  position: relative;
}

.custom-tabs .nav-link:hover {
  color: var(--gold-metallic);
  background: transparent;
}

.custom-tabs .nav-link.active {
  color: var(--bg-cream) !important;
  background-color: var(--gold-metallic);
  border-color: var(--gold-metallic);
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.18);
}

.room-showcase {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.cover-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  background-color: #f0f0f0;
}

.room-details-card {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-features li {
  list-style: none;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.room-features li i {
  color: var(--gold-metallic);
  margin-right: 10px;
}

.room-price-action {
  white-space: nowrap;
}

.room-price {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .room-details-card {
    padding: 30px 20px;
  }

  .cover-img {
    min-height: 250px;
  }

  .custom-tabs {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-lg);
    margin-top: 20px;
    margin-left: 0 !important;
    gap: 10px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
  }

  .custom-tabs .nav-item {
    flex-shrink: 0;
  }

  .custom-tabs .nav-link {
    margin-left: 0;
    margin-right: 10px;
    padding: 10px 15px;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
  }

  .custom-tabs .nav-link.active {
    background-color: var(--gold-metallic);
    color: white !important;
    border-color: var(--gold-metallic);
  }

  .room-details-card .d-flex.gap-3 {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .room-price-action {
    flex: 1;
    min-width: 0;
  }
}

/* ============================================================
   END: [style.css] - ROOM SHOWCASE
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: f&b split section
   ============================================================ */
.fb-split-section {
  overflow: hidden;
}

.cafe-side,
.dining-side {
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px;
  position: relative;
}

.fb-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cafe-side:hover .fb-bg-img,
.dining-side:hover .fb-bg-img {
  transform: scale(1.1);
}

.fb-content-overlay {
  position: relative;
  z-index: 2;
  background: rgba(10, 25, 47, 0.9);
  padding: 50px;
  color: #fff;
  max-width: 500px;
  border-left: 5px solid var(--gold-metallic);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fb-content-overlay.align-right {
  margin-left: auto;
  border-left: none;
  border-right: 5px solid var(--gold-metallic);
  text-align: right;
}

.fb-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-metallic);
  display: block;
  margin-bottom: 15px;
}

.signature-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.btn-gold-outline {
  border: 1px solid var(--gold-metallic);
  color: var(--gold-metallic);
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: transparent;
  display: inline-block;
  text-decoration: none;
}

.btn-gold-outline:hover {
  background: var(--gold-metallic);
  color: #000;
}

@media (max-width: 991px) {
  .cafe-side,
  .dining-side {
    height: auto;
    padding: 60px 20px;
  }

  .fb-content-overlay {
    max-width: 100%;
    padding: 30px;
  }
}

/* ============================================================
   END: [style.css] - F&B SPLIT SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: weddings & banquets
   ============================================================ */
.script-font {
  font-family: var(--font-display);
}

.custom-table {
  width: 100%;
  margin-bottom: 0;
}

.custom-table th {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding-bottom: 15px;
}

.custom-table td {
  color: var(--primary-navy);
  font-weight: 500;
  padding: 15px 10px 15px 0;
  vertical-align: middle;
}

.image-stack {
  position: relative;
  padding: 20px;
}

.main-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  color: var(--primary-navy);
  padding: 20px 30px;
  text-align: center;
  z-index: 3;
  border-top: 4px solid var(--gold-metallic);
  transform: translate(10%, 10%);
}

.experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-metallic);
}

.experience-badge .text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 5px;
}

.modal-header.bg-navy {
  background-color: var(--primary-navy);
}

@media (max-width: 991px) {
  .image-stack {
    padding: 0;
    margin-top: 40px;
  }

  .experience-badge {
    position: relative;
    transform: none;
    margin-top: -30px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    bottom: auto;
    right: auto;
  }
}

/* ============================================================
   END: [style.css] - WEDDINGS & BANQUETS
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: location section
   ============================================================ */
.distance-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.distance-item {
  display: flex;
  align-items: center;
}

.distance-item .icon-box {
  width: 40px;
  display: flex;
  justify-content: center;
  margin-right: 15px;
}

.distance-item i {
  font-size: 1.4rem;
}

.distance-item h5 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.bg-white-10 {
  background: rgba(255, 255, 255, 0.08);
}

.border-gold-left {
  border-left: 3px solid var(--gold-metallic);
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ============================================================
   END: [style.css] - LOCATION SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: footer section
   ============================================================ */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
}

/* ============================================================
   END: [style.css] - FOOTER SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: footer logo
   ============================================================ */
.footer-logo-wrapper {
  max-width: 200px;
}

.footer-logo-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes logo white if it's dark */
}

/* If you already have a white logo, remove the filter */
.footer-logo-img.white-logo {
  filter: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-logo-wrapper {
    max-width: 160px;
  }

  .footer-logo-img {
    max-height: 60px;
  }
}

.footer-section-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-newsletter {
  margin-bottom: 40px;
}

.newsletter-form-inline {
  display: flex;
  gap: 0;
  margin-top: 15px;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.btn-newsletter-submit {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 3rem;
  margin-right: 3rem;
}

.btn-newsletter-submit:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-contact-info {
  font-size: 0.9rem;
}

.footer-contact-link {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--gold-metallic);
}

.footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-links li {
  margin-bottom: 12px;
}

.footer-quick-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-quick-links a:hover {
  color: var(--gold-metallic);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: var(--gold-metallic);
}

/* ============================================================
   END: [style.css] - FOOTER LOGO
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: footer destinations section
   ============================================================ */
.footer-destinations-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 50px 0;
}

.footer-destinations-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.footer-destinations-toggle:hover {
  color: #fff;
}

.footer-destinations-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-destinations-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

/* Destinations Content */
.destinations-content {
  padding: 30px 0 40px;
}

.destinations-content .row {
  width: 100%;
}

/* Individual Destination Cards */
.destination-card {
  padding: 20px;
  border-left: 2px solid rgba(197, 160, 89, 0.3);
  transition: all 0.3s ease;
}

.destination-card:hover {
  border-left-color: var(--gold-metallic);
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(5px);
}

.destination-hotel-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-body);
}

.destinations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destinations-list li {
  margin-bottom: 12px;
}

.destinations-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.destinations-list a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-metallic);
  transition: width 0.3s ease;
}

.destinations-list a:hover {
  color: var(--gold-metallic);
  padding-left: 5px;
}

.destinations-list a:hover::before {
  width: 100%;
}

/* Desktop: 3 equal columns */
@media (min-width: 992px) {
  .destinations-content .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Tablet: 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
  .destinations-content .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .destination-card {
    padding: 15px;
  }

  .destination-hotel-name {
    font-size: 0.8rem;
  }
}

/* Mobile: Stack vertically */
@media (max-width: 767px) {
  .footer-destinations-section {
    margin: 30px 0;
  }

  .footer-destinations-toggle {
    padding: 20px 0;
    font-size: 0.7rem;
  }

  .destinations-content {
    padding: 20px 0 30px;
  }

  .destinations-content .row {
    gap: 0;
  }

  .destination-card {
    padding: 20px 0;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .destination-card:last-child {
    border-bottom: none;
  }

  .destination-card:hover {
    transform: translateX(0);
    padding-left: 10px;
  }

  .destination-hotel-name {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }

  .destinations-list a {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .destination-hotel-name {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .destinations-list a {
    font-size: 0.8rem;
  }

  .destinations-list li {
    margin-bottom: 10px;
  }
}

/* ============================================================
   END: [style.css] - FOOTER DESTINATIONS SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: footer brands section
   ============================================================ */
.footer-brands-section {
  margin: 0;
}

/* title can stay as you have it */

.brand-logos-grid {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on small screens */
  gap: 24px; /* space between logos */
  align-items: center;
  justify-content: space-evenly;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* remove box look */
.brand-placeholder {
  all: unset; /* or simply delete this class from HTML */
}

/* logo style */
.brand-logo-img {
  max-height: 40px; /* adjust to taste */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white logos on dark bg */
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* simple hover like Taj-style strip */
.brand-logo-link:hover .brand-logo-img {
  opacity: 1;
  transform: translateY(-2px);
}

/* responsive tweaks */
@media (max-width: 991px) {
  .brand-logos-grid {
    gap: 18px;
  }

  .brand-logo-img {
    max-height: 32px;
  }
}

@media (max-width: 575px) {
  .brand-logos-grid {
    justify-content: flex-start;
  }

  .brand-logo-img {
    max-height: 28px;
  }
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links li {
  margin: 0;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Scroll to Top Button - 3D Hollow Design */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #717171;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* 3D Shadow Effect */
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2),
    inset 0 2px 6px rgba(255, 255, 255, 0.1);
}

.scroll-to-top-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

/* Visible State */
.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.5s ease;
}

/* Hover Effect */
.scroll-to-top-btn:hover {
  background: linear-gradient(
    145deg,
    rgba(197, 160, 89, 0.2),
    rgba(197, 160, 89, 0.1)
  );
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(197, 160, 89, 0.4),
    0 12px 35px rgba(0, 0, 0, 0.3),
    inset 0 -3px 8px rgba(197, 160, 89, 0.2),
    inset 0 3px 8px rgba(255, 255, 255, 0.2);
}

.scroll-to-top-btn:hover i {
  transform: translateY(-3px);
}

/* Active/Click State */
.scroll-to-top-btn:active {
  transform: translateY(-2px) scale(1);
  box-shadow:
    0 4px 15px rgba(197, 160, 89, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Adjustments - Above Bottom Bar */
@media (max-width: 767px) {
  .scroll-to-top-btn {
    bottom: 100px; /* Adjust based on your bottom bar height */
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .scroll-to-top-btn i {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .scroll-to-top-btn {
    bottom: 90px;
    right: 15px;
    width: 48px;
    height: 48px;
  }

  .scroll-to-top-btn i {
    font-size: 1.1rem;
  }
}

/* ============================================================
   END: [style.css] - FOOTER BRANDS SECTION
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: footer mobile responsive
   ============================================================ */
@media (max-width: 991px) {
  .footer-taj-style {
    padding-top: 40px;
  }

  .footer-brand-logo {
    font-size: 2.5rem;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    gap: 15px;
  }

  .brand-logos-grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .newsletter-form-inline {
    flex-direction: column;
    gap: 15px;
  }

  .btn-newsletter-submit {
    margin-left: 0;
    width: 100%;
  }

  .footer-social-icons {
    gap: 20px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
   END: [style.css] - FOOTER MOBILE RESPONSIVE
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: accessibility
   ============================================================ */
.nav-link:focus,
.dropdown-item:focus,
.navbar-toggler:focus {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 2px;
}

.nav-link:focus:not(:focus-visible),
.dropdown-item:focus:not(:focus-visible),
.navbar-toggler:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   END: [style.css] - ACCESSIBILITY
   ============================================================ */

/* ============================================================
   PAGE: [style.css]
   SECTION: print styles
   ============================================================ */
@media print {
  .utility-bar,
  .main-navbar,
  .mobile-menu-overlay,
  .mobile-bottom-bar,
  .scroll-to-top-btn {
    display: none;
  }
}

/* Event Page Specific Styles */

/* Hero Text Animation */
.animate-up {
  animation: fadeInUp 1s ease-out;
}

/* Promise Cards */
.promise-card {
  transition: all 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-5px);
  background-color: #fff !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-color: var(--gold-metallic) !important;
}

.promise-card .icon-box {
  transition: transform 0.3s ease;
}

.promise-card:hover .icon-box {
  transform: scale(1.1);
}

/* Venue Cards */
.venue-card {
  transition: transform 0.3s ease;
  border: none;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.venue-img-box {
  height: 250px;
  overflow: hidden;
}

.venue-img-box img {
  transition: transform 0.6s ease;
}

.venue-card:hover .venue-img-box img {
  transform: scale(1.08);
}

.venue-overlay {
  background: rgba(30, 58, 138, 0.4); /* Royal Blue with opacity */
  backdrop-filter: blur(2px);
}

.venue-card:hover .venue-overlay {
  opacity: 1 !important;
}

/* Dining Section */
.card-gradient-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
}

.dining-card-container {
  cursor: grab;
}

.dining-event-card {
  transition: transform 0.3s ease;
}

.dining-event-card:hover {
  transform: translateY(-5px);
}

/* Form Styles */

/* Responsive Adjustments */
@media (min-width: 992px) {
  .venue-img-box {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

/* About Page Specific Styles */

/* Hero Animation */
.animate-up {
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Desktop-only positioning for the overlap effect */
@media (min-width: 992px) {
  .position-lg-absolute {
    position: absolute !important;
  }
  .translate-middle-y-lg {
    transform: translateY(-50%) !important;
  }
}

/* Ensure image doesn't collapse on mobile */
@media (max-width: 991px) {
  .position-lg-absolute {
    position: relative !important;
    transform: none !important;
    margin-top: -2rem; /* Slight overlap upwards on tablet/mobile if desired, or remove for clean stack */
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

/* Philosophy Section */
/* removed duplicate .border-gold */

/* Value Cards (Pillars) */
.value-card {
  transition: all 0.4s ease;
  border-radius: 4px;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1.5rem 2rem rgba(30, 58, 138, 0.1) !important;
  border-bottom-color: var(--royal-blue) !important;
}

.value-card .bi {
  transition: transform 0.3s ease;
}

.value-card:hover .bi {
  transform: scale(1.1);
  color: var(--gold-metallic);
}

/* Timeline Slider */
.timeline-scroll-wrapper {
  cursor: grab;
}

.timeline-card {
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-metallic) !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .timeline-card {
    width: 260px !important;
  }
}

/* Offers Page Specific Styles */

/* Hero Animation */
.animate-up {
  animation: fadeInUp 1s ease-out;
}

/* Featured Offers Hover Effect */
.group-hover-zoom:hover .transition-transform {
  transform: scale(1.08);
}

.transition-transform {
  transition: transform 0.6s ease;
}
.offer-overlay {
  background: linear-gradient(
    to top,
    rgb(10 25 47) 0%,
    rgb(10 25 47 / 67%) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.offer-card-large {
  min-height: 450px;
}

.offer-card-small {
  min-height: 210px;
}

/* Scrollable Container (Horizontal) */
.offer-scroll-container {
  cursor: grab;
  padding-right: 1rem; /* Padding for last card visibility */
}

/* Enhanced Member Offers Styles */

/* Card Hover Animation */
.member-offer-card {
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.member-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1) !important; /* Royal Blue shadow hint */
  border-color: var(--gold-metallic) !important;
}

/* Button Hover State */
.hover-gold-bg:hover {
  background-color: var(--primary-navy);
  color: #fff !important;
  border-color: var(--primary-navy);
}

/* Link Arrow Animation */
.group-hover-link:hover .bi-arrow-right {
  transform: translateX(5px);
}

.group-hover-link .bi-arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Scrollbar Hiding for Horizontal Scroll on Mobile */
.row.overflow-auto::-webkit-scrollbar {
  display: none;
}
.row.overflow-auto {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Enhanced Category Tabs Styles */

/* Custom Tabs Navigation Container */
.custom-tabs-nav {
  border-bottom: 2px solid #e9ecef;
}

/* Base Nav Link Styling (Inactive State) */
.custom-tabs-nav .nav-link {
  color: #495057 !important;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hover State */
.custom-tabs-nav .nav-link:hover {
  color: var(--primary-navy);
  background-color: rgba(30, 58, 138, 0.05);
}

/* Active State */
.custom-tabs-nav .nav-link.active {
  color: var(--primary-navy) !important;
  background: transparent;
  border-bottom-color: var(--gold-metallic);
}

/* Icon Styling */
.custom-tabs-nav .nav-link i {
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--gold-metallic); /* Gold icons for visual flair */
}

/* Active Icon Styling */
.custom-tabs-nav .nav-link.active i {
  color: var(--royal-blue);
}

/* Responsive Tabs Adjustments */
@media (max-width: 768px) {
  .custom-tabs-nav {
    flex-direction: column;
    border-bottom: none;
    gap: 10px !important;
  }

  .custom-tabs-nav .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 4px !important;
    margin-bottom: 0;
    text-align: center;
    background-color: #f8f9fa; /* Light grey background for mobile buttons */
  }

  .custom-tabs-nav .nav-link.active {
    border-color: var(--royal-blue);
    background-color: var(--royal-blue);
    color: #ffffff !important; /* White text on active mobile tab */
  }

  .custom-tabs-nav .nav-link.active i {
    color: #ffffff; /* White icon on active mobile tab */
  }
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .display-3 {
    font-size: 2.5rem;
  }
  .offer-card-large {
    min-height: 350px;
  }
  .offer-card-small {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .offer-scroll-container {
    gap: 1rem !important;
  }
  .member-offer-card {
    width: 280px !important;
  }
  .nav-pills .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem;
  }
}

/* Divine Bite Cafe Specific Styles */

/* Menu Card Styles */
.menu-card {
  width: 100%; /* Default to full width for grid */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-img-box {
  height: 250px;
  width: 100%;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Link Hover Animation */
.group-hover-link:hover .bi-arrow-right {
  transform: translateX(5px);
}

.group-hover-link .bi-arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Coffee Item Styles */
.coffee-item h5 {
  letter-spacing: 1px;
}

/* Location Card Hover */
.transition-hover {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Utility: Coffee Brown Color (Optional usage) */
.text-coffee {
  color: #4b3621;
}

/* Responsive Styles */
@media (min-width: 992px) {
  .menu-scroll-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  /* Horizontal Scroll for Mobile Cards */
  .menu-scroll-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.2rem; /* Reduce hero text size */
  }

  .menu-img-box {
    height: 200px;
  }
}

/* Banquet Page Specific Styles */

/* Venue Cards */
.venue-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Image Zoom Effect */
.venue-card:hover .transition-transform {
  transform: scale(1.05);
}

/* Service Icons */
.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border: 1px solid var(--primary-navy) !important;
  background-color: #fff !important;
}

/* Background Decoration Opacity */
.opacity-10 {
  opacity: 0.1;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .venue-specs {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around !important;
  }
}

/* Gallery Page code */

.gallery-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(10, 25, 47, 0.2);
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
  line-height: 1;
}

.gallery-filter-btn:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
}

.gallery-filter-btn.active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #fff;
}

.gallery-filter-btn:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 2px;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  line-height: 0;
}

.gallery-item-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: #fff;
  font-size: 1.75rem;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-lb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-lb-img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.gallery-lb-img.is-loading {
  opacity: 0;
}

.gallery-lb-caption {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.gallery-lb-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  font-size: 1rem;
  z-index: 10001;
}

.gallery-lb-close:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  transform: rotate(90deg);
}

.gallery-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  font-size: 1rem;
  z-index: 10001;
}

.gallery-lb-nav:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
}

.gallery-lb-prev {
  left: 24px;
}

.gallery-lb-next {
  right: 24px;
}

.gallery-lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 10001;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .gallery-grid {
    columns: 2;
  }

  .gallery-lb-prev {
    left: 12px;
  }

  .gallery-lb-next {
    right: 12px;
  }

  .gallery-lb-nav,
  .gallery-lb-close {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    columns: 1;
  }

  .gallery-lb-img {
    max-height: 70vh;
  }
}

/* Contact Us CSS */

.contact-tab-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}

.contact-info-panel {
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-detail-item:last-of-type {
  border-bottom: none;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-metallic);
  font-size: 0.95rem;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
}

.contact-hours-grid span:nth-child(odd) {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.contact-hours-grid span:nth-child(even) {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-map-frame {
  height: 100%;
  min-height: 440px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--gold-metallic);
  color: var(--text-dark);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.contact-quick-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-metallic);
  font-size: 1.1rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.contact-quick-card:hover .contact-quick-icon {
  background: var(--gold-metallic);
  color: #fff;
}

.contact-quick-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 3px;
}

.contact-quick-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.contact-form-wrap {
  border-top: 3px solid var(--gold-metallic);
  background: var(--bg-cream);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold-metallic) !important;
  box-shadow: none;
}

.contact-form-success {
  padding: 24px;
  border-left: 3px solid var(--gold-metallic);
  background: #fff;
}

@media (max-width: 991px) {
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .contact-map-frame {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    height: 50vh;
  }

  .contact-quick-card {
    padding: 16px;
  }
}

/* ===== CAREERS PAGE ===== */

.careers-hero {
  min-height: 75vh;
  padding-top: 140px;
  padding-bottom: 80px;
}

.career-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 25, 47, 0.12);
}

.career-card-img {
  height: 220px;
}

.career-card-img img {
  height: 100%;
  transition: transform 0.6s ease;
}

.career-card:hover .career-card-img img {
  transform: scale(1.06);
}

@media (max-width: 575px) {
  .careers-hero {
    min-height: 85vh;
    padding-top: 120px;
  }
  .career-card-img {
    height: 180px;
  }
}

/* ============================================================
   END: [style.css] - PRINT STYLES
   ============================================================ */
