﻿/* ===== IMPORT GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #252529; /* Forest gradient background */
  color: #f5f5f5; /* Light text for better contrast */
  line-height: 1.6;
  font-size: 16px;
}
/* ===== TOPBAR ===== */
.topbar {
  background-color: #941B2E; /* Best Western Plus Burgundy */
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  width: 100%;
 position: relative;
  top: 0;
  left: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 8px;
}

/* Left side: address */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  flex-wrap: wrap;
}

.topbar-left i {
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.topbar-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right side: phone */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar-right i {
  color: #fff;
  font-size: 14px;
}

.topbar-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.topbar-right a:hover {
  color: #e6e6e6;
}

/* ===== RESPONSIVE FIXES ===== */

/* Tablets: slightly smaller padding */
@media (max-width: 1024px) {
  .topbar {
    font-size: 13px;
    padding: 7px 0;
  }

  .topbar-container {
    padding: 0 15px;
    gap: 6px;
  }

  .topbar-left span {
    font-size: 13px;
  }

  .topbar-right a {
    font-size: 13px;
  }
}

/* Mobile phones (keep visible, stacked neatly) */
@media (max-width: 768px) {
  .topbar{
    display:none;
  }
}

/* Extra Small Devices */
@media (max-width: 420px) {
 .topbar{
    display:none;
  }
}



/* ===== HEADER (Best Western Plus color scheme, no yellow) ===== */
.main-header {
  position: relative; /* not fixed anymore */
  width: 100%;
  background: transparent;
  padding: 20px 0;
  z-index: 10; /* lower z-index since it’s not floating */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
 
}


/* Solid color appears after scrolling */
.main-header.scrolled {
  background-color: rgba(148, 27, 46, 0.95); /* Deep Burgundy overlay */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Logo Image */
.logo-img {
  height: 100px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.90)) brightness(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7)) brightness(1.15);
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-list a {
  color: #ffffff;
 
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  font-size:18px;
}

.nav-list a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #B52239; /* subtle burgundy underline */
  width: 0;
  transition: width 0.3s ease;
  margin-top: 5px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: #B52239;
}

/* Social Media Icons */
.social-icons a {
  color: #ffffff;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
  
}

.social-icons a:hover {
  color: #B52239;
  transform: translateY(-2px);
}
.social-icons i {
  color: #fff !important;
  font-size: 1.4rem;
  font-weight:300;
}
/* Keyframes - Snake Border Animation */
@keyframes snakeTop {
  0% {width: 0; left: 10px;}
  50% {width: calc(100% - 20px); left: 10px;}
  100% {width: 0; left: calc(100% - 10px);}
}
@keyframes snakeBottom {
  0% {width: 0; right: 10px;}
  50% {width: calc(100% - 20px); right: 10px;}
  100% {width: 0; right: calc(100% - 10px);}
}
@keyframes snakeLeft {
  0% {height: 0; bottom: 0;}
  50% {height: 100%; bottom: 0;}
  100% {height: 0; bottom: 100%;}
}
@keyframes snakeRight {
  0% {height: 0; top: 0;}
  50% {height: 100%; top: 0;}
  100% {height: 0; top: 100%;}
}

/* Updated Dropdown with Snake Border Effect */
.nav-list .dropdown {
  position: relative;
}

.dropdown-link i {
  margin-left: 6px;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 15px 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  border-top: 3px solid #e4002b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
}

/* Snake Border Elements */
.dropdown-menu::before,
.dropdown-menu::after,
.dropdown-menu span::before,
.dropdown-menu span::after {
  content: '';
  position: absolute;
  background: #e4002b;
  z-index: 1;
}

.dropdown-menu::before {            /* Top */
  height: 2px;
  top: 0;
  animation: snakeTop 2.5s infinite linear;
}

.dropdown-menu::after {             /* Bottom */
  height: 2px;
  bottom: 0;
  animation: snakeBottom 2.5s infinite linear;
}

.dropdown-menu span::before {       /* Left */
  width: 2px;
  left: 0;
  animation: snakeLeft 2.5s infinite linear;
}

.dropdown-menu span::after {        /* Right */
  width: 2px;
  right: 0;
  animation: snakeRight 2.5s infinite linear;
}

/* Required wrapper for left/right borders */
.dropdown-menu span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

.dropdown-menu li a:hover {

  color: #333333 !important;
  padding-left: 25px;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive (mobile) */
@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
}
/* ===== HEADER CONTAINER ADJUSTMENT ===== */
.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger Styling */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 6px;
}

.hamburger:hover {
  color: #B52239;
  transform: scale(1.1);
}

/* Align Hamburger with Logo on Mobile/Tablets */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  /* hide main menu + social icons on mobile */
  .nav-list,
  .social-icons {
    display: none;
  }

  /* Ensure perfect spacing for logo + hamburger */
  .left-header {
    justify-content: space-between;
    width: 100%;
  }

  .header-container {
    justify-content: space-between;
  }
}

/* Optional tweak for small phones */
@media (max-width: 600px) {
  .logo-img {
    height: 100px;
  }
  .hamburger {
    font-size: 24px;
  }
}
/* On mobile: since topbar is hidden, move header to very top */
@media (max-width: 768px) {
  .main-header {
  margin-top: 10px; /* height of topbar */
}
}

/* ===== BACKGROUND OVERLAY ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1500;
}
.menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(145deg, #941B2E, #2b2b2b 80%);
  background-size: 200% 200%;
  animation: bgFlow 12s ease infinite;
  color: #fff;
  z-index: 2000;
  opacity: 0;
  transition: all 0.7s cubic-bezier(.25,.8,.25,1);
  box-shadow: -12px 0 25px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px) saturate(120%);
  overflow-y: auto;
}
@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mobile-menu-overlay.open {
  right: 0;
  opacity: 1;
}

/* Inner wrapper */
.mobile-menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 35px 30px;
  animation: menuSlideIn 0.7s ease forwards;
}
@keyframes menuSlideIn {
  from {opacity: 0; transform: translateX(60px);}
  to   {opacity: 1; transform: translateX(0);}
}

/* ===== HEADER ===== */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}
.mobile-menu-header img {
  height: 70px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  animation: logoReveal 0.8s 0.3s forwards ease;
  opacity: 0;
  transform: scale(0.9);
}
@keyframes logoReveal {
  to {opacity:1; transform:scale(1);}
}

.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
}
.close-menu:hover {transform: rotate(180deg); color:#fff;}

/* ===== NAVIGATION ===== */
.mobile-nav-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.mobile-nav-list li {
  position: relative;
}

.mobile-nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 12px 18px 12px 32px; /* 🔹 Added left padding for space before icon */
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  line-height: 1.3;
}

/* icon alignment fix */
.mobile-nav-list a i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  color: #b52239;
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  left: -5px; /* 🔹 Slight shift left to center visually after padding */
}

/* text span for perfect vertical centering */
.mobile-nav-list a span {
  display: inline-block;
  vertical-align: middle;
}

/* BORDER ANIMATION - "snake" style */
.mobile-nav-list a::before,
.mobile-nav-list a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #b52239;
  transition: all 0.3s ease;
}
.mobile-nav-list a::before {
  top: 0;
  left: 10px; /* 🔹 start border after icon spacing */
}
.mobile-nav-list a::after {
  bottom: 0;
  right: 10px; /* 🔹 add right spacing symmetry */
}

.mobile-nav-list a .border-left,
.mobile-nav-list a .border-right {
  position: absolute;
  width: 2px;
  height: 0%;
  background: #b52239;
}
.mobile-nav-list a .border-left {
  left: 10px; /* 🔹 matches horizontal offset */
  bottom: 0;
}
.mobile-nav-list a .border-right {
  right: 10px;
  top: 0;
}

/* Hover animation + motion */
.mobile-nav-list a:hover {
  color: #fff;
  transform: translateX(6px);
}
.mobile-nav-list a:hover i {
  color: #fff;
  transform: scale(1.2);
}

/* Snake motion timing */
.mobile-nav-list a:hover::before {
  animation: snakeTop 1.2s linear forwards;
}
.mobile-nav-list a:hover::after {
  animation: snakeBottom 1.2s linear 0.3s forwards;
}
.mobile-nav-list a:hover .border-left {
  animation: snakeLeft 1.2s linear 0.6s forwards;
}
.mobile-nav-list a:hover .border-right {
  animation: snakeRight 1.2s linear 0.9s forwards;
}

/* Keyframes */
@keyframes snakeTop {
  0% {width: 0; left: 10px;}
  50% {width: calc(100% - 20px); left: 10px;}
  100% {width: 0; left: calc(100% - 10px);}
}
@keyframes snakeBottom {
  0% {width: 0; right: 10px;}
  50% {width: calc(100% - 20px); right: 10px;}
  100% {width: 0; right: calc(100% - 10px);}
}
@keyframes snakeLeft {
  0% {height: 0; bottom: 0;}
  50% {height: 100%; bottom: 0;}
  100% {height: 0; bottom: 100%;}
}
@keyframes snakeRight {
  0% {height: 0; top: 0;}
  50% {height: 100%; top: 0;}
  100% {height: 0; top: 100%;}
}
/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Toggle Button (arrow) */
.mobile-dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.mobile-dropdown.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

/* Submenu hidden */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 40px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  transition: max-height 0.35s ease;
}

/* Submenu items */
.mobile-submenu li a {
  padding: 10px 0;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-submenu li:last-child a {
  border-bottom: none;
}

/* When submenu open */
.mobile-dropdown.open .mobile-submenu {
  max-height: 400px; /* enough height for all items */
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .mobile-nav-list { gap: 22px; }
  .mobile-nav-list a { font-size: 17px; padding: 10px 15px 10px 28px; }
  .mobile-nav-list a i { width: 20px; left: -4px; }
}


/* ===== FOOTER ===== */
.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  text-align: center;
  font-family:'Rubik',sans-serif;
}
.mobile-phone {
  display:block;
  color:#fff;
  margin-bottom:10px;
  text-decoration:none;
}
.mobile-book-btn {
  display:inline-block;
  background:linear-gradient(90deg,#941B2E,#b52239);
  color:#fff;
  padding:12px 30px;
  border-radius:30px;
  text-transform:uppercase;
  letter-spacing:.8px;
  text-decoration:none;
  transition:transform .3s ease,box-shadow .3s ease;
  box-shadow:0 3px 10px rgba(148,27,46,.4);
  animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(181,34,57,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(181,34,57,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,34,57,0); }
}
.mobile-book-btn:hover {
  transform:translateY(-3px);
  box-shadow:0 6px 15px rgba(148,27,46,.6);
}
.mobile-address {
  margin-top:15px;
  font-size:14px;
  color:#ddd;
}
.mobile-address i {
  color:#b52239;
  margin-right:6px;
}

@media(max-width:600px){
  .mobile-menu-content{padding:30px 25px;}
  .mobile-nav-list a{font-size:18px;}
}
/* =========================================================
   STICKY SIDE HEADER — CINEMATIC DARK RED + GOLD DESIGN
   ========================================================= */
.sticky-side-header {
  position: fixed;
  top: 0;
  left: -360px; /* hidden initially */
  width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #160606 0%, #2b0e11 40%, #000 100%);
  color: #fff;
  z-index: 3000;
  border-right: 1px solid rgba(229, 198, 160, 0.2);
  box-shadow: 8px 0 20px rgba(0, 0, 0, 0.8);
  transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

/* === Active State (slide in) === */
.sticky-side-header.show {
  left: 0;
  box-shadow: 12px 0 40px rgba(181, 34, 57, 0.4);
}

/* === Subtle inner golden edge === */
.sticky-side-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #e5c6a0 0%, #b52239 50%, #e5c6a0 100%);
  opacity: 0.6;
}

/* === Inner Content === */
.sticky-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px 60px;
  width: 100%;
  text-align: center;
}

/* === Logo === */
.sticky-logo img {
  height: 85px;
  width: auto;
  margin-bottom: 35px;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(229, 198, 160, 0.2));
}

.sticky-logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(229, 198, 160, 0.5));
}

/* === Navigation === */
.sticky-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.sticky-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5f5f5;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}

/* === Icon Styling === */
.sticky-nav a i {
  color: #b52239;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* === Hover / Active State === */
.sticky-nav a:hover,
.sticky-nav a.active {
  background: rgba(181, 34, 57, 0.25);
  color: #e5c6a0;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(181, 34, 57, 0.3);
}

.sticky-nav a:hover i,
.sticky-nav a.active i {
  color: #e5c6a0;
  transform: scale(1.25);
}

/* === Cinematic underline animation === */
.sticky-nav a::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #b52239, #e5c6a0);
  transition: width 0.4s ease;
  border-radius: 2px;
}
.sticky-nav a:hover::before,
.sticky-nav a.active::before {
  width: 80%;
}

/* === Scrollbar === */
.sticky-side-header::-webkit-scrollbar {
  width: 6px;
}
.sticky-side-header::-webkit-scrollbar-thumb {
  background: rgba(229, 198, 160, 0.25);
  border-radius: 6px;
}

/* === Mobile Responsive (hide) === */
@media (max-width: 768px) {
  .sticky-side-header {
    display: none;
  }
}
/* FINAL PERFECTED LUXURY DROPDOWN */
.luxury-dropdown {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  margin: 6px 0;
  transition: all 0.4s ease;
}

.luxury-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #f5f5f5;
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.luxury-trigger i:first-child { color: #b52239; }
.menu-text { flex: 1; text-align: left; }
.luxury-arrow {
  font-size: 13px;
  color: #e5c6a0;
  transition: transform 0.4s ease;
}

/* Hover trigger – identical to other links */
.luxury-dropdown:hover .luxury-trigger {
  background: rgba(181, 34, 57, 0.25);
  color: #e5c6a0;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(181, 34, 57, 0.3);
}
.luxury-dropdown:hover .luxury-trigger i,
.luxury-dropdown:hover .luxury-arrow { color: #e5c6a0; }
.luxury-dropdown:hover .luxury-arrow { transform: rotate(180deg); }

/* Panel – now perfectly aligned & no text cutoff */
.luxury-panel {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(22,6,6,0.6), rgba(43,14,17,0.4));
  transition: max-height 0.6s cubic-bezier(0.77, 0, 0.175, 1), padding 0.5s ease;
}

.luxury-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 52px;
  color: #e5c6a0;
  font-size: 15.5px;
  font-family: 'Rubik', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.35s ease;
  border-bottom: 1px solid rgba(229,198,160,0.1);
}

.luxury-panel a i {
  font-size: 14px;
  width: 18px;
  color: #b52239;
}

.luxury-panel a:hover {
  background: #e4002b;
  color: #fff;
  padding-left: 60px;
  box-shadow: inset 5px 0 0 #e5c6a0;
}
.luxury-panel a:hover i { color: #fff; }

/* Expand */
.luxury-dropdown:hover .luxury-panel {
  max-height: 400px;
  padding: 10px 0;
}

/* Golden underline – exactly like your other links */
.luxury-trigger::before {
  content: "";
  position: absolute;
  left: 10%; bottom: 8px;
  width: 0; height: 2px;
  background: linear-gradient(to right, #b52239, #e5c6a0);
  transition: width 0.4s ease;
}
.luxury-dropdown:hover .luxury-trigger::before { width: 80%; }
/* =========================================
   LUXURY CINEMATIC HERO SECTION
   ========================================= */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  margin-top: -140px;
  font-family: 'Playfair Display', serif;
  z-index: 0;
  background: #1b1b1b;
  
}

/* ===== SLIDES ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transform: scale(1.05);
  transition: none;
  filter: brightness(0.95) contrast(1.05);
}

/* Active slide (zoom in + fade) */
.hero-slide.active {
  z-index: 2;
  animation: zoomInFade 1.8s ease-in-out forwards;
}

/* Fading-out slide */
.hero-slide.fade-out {
  z-index: 1;
  animation: zoomOutFade 1.8s ease-in-out forwards;
}

/* === KEYFRAMES === */
@keyframes zoomInFade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  40% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1.10); /* continuous zoom for cinematic effect */
  }
}

@keyframes zoomOutFade {
  0% {
    opacity: 1;
    transform: scale(1.10);
  }
  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

/* ===== OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 7, 0.75) 45%,
    rgba(0, 0, 0, 0.65) 85%
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 2;
  
}

/* ===== LEFT SIDE (Title + Nav) ===== */
.hero-left {
  flex: 1;
  color: #fff;
  max-width: 650px;
  z-index:1;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-top: 190px;
  text-transform: capitalize;
  color: #fff; /* fallback visible color */
  background: linear-gradient(90deg, #fff 0%, #e5c6a0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); /* adds readability */
  font-weight:300;
}


.hero-title span {
  display: inline-block;
  opacity: 0;
  transform-origin: left bottom;
  animation: leafSwing 2s ease forwards;
}
.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

/* Leaf swing animation for title text */
@keyframes leafSwing {
  0% { opacity: 0; transform: rotateX(-40deg) rotateY(15deg) translateY(40px); }
  60% { opacity: 1; transform: rotateX(10deg) rotateY(-5deg); }
  100% { opacity: 1; transform: rotateX(0) rotateY(0) translateY(0); }
}

/* ===== NAV BUTTONS ===== */
.hero-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  
}

.hero-nav button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(229,198,160,0.5);
  color: #e5c6a0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(229,198,160,0.2);
 
}

.hero-nav button:hover {
  background: #e5c6a0;
  color: #2C2C2C;
  border-color: #e5c6a0;
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 25px rgba(229,198,160,0.4);
}

/* ===== RIGHT SIDE (Description) ===== */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-desc {
  
  border-radius: 10px;
  padding: 25px 30px;
  color: #fff;
  font-size:20px;
  line-height: 1.7;
  max-width: 620px;
  animation: fadeInRight 1.6s ease 1s forwards;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 390px;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== REFLECTION EFFECT ===== */
.cinematic-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229,198,160,0.2), transparent);
  animation: shimmerSweep 12s ease-in-out infinite;
  z-index: 3;
}

@keyframes shimmerSweep {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .cinematic-hero {
    height: 50vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0;
  }

  .hero-nav {
    margin-top: 10px;
    gap: 10px;
  }

  .hero-nav button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229,198,160,0.3);
    border-radius: 8px;
    margin: 0;
  }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
  .cinematic-hero {
    height: 50vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
    margin: 10px;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 10px;
    font-weight: 300;
    background: linear-gradient(90deg, #fff 0%, #e5c6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
  }

  .hero-nav {
    margin-top: 8px;
    gap: 8px;
  }

  .hero-nav button {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 0.85rem;
    max-width: 90%;
    line-height: 1.4;
    padding: 10px 14px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(229,198,160,0.25);
    border-radius: 8px;
    opacity: 0.95;
    text-align: right;
  }
}

/* =========================================================
   WELCOME SECTION — FIXED BACKGROUND + SMOOTH SCROLL DESIGN
   ========================================================= */

.welcome-glass {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  
  overflow: hidden;
}

/* ===== BACKGROUND IMAGE ===== */
.welcome-bg {
  position: absolute;
  inset: 0;
  background: url('../images/lobby.webp') center center / cover no-repeat fixed;
  filter: brightness(0.65);
  z-index: 0;
}

/* ===== GRADIENT OVERLAY ===== */
.welcome-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.4) 70%);
  z-index: 1;
}

/* ===== INNER CONTENT WRAPPER ===== */
.welcome-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1300px;
  gap: 60px;
  padding: 100px 0;
}

/* =========================================================
   LEFT SIDE — MAIN IMAGE + FLOATING IMAGE
   ========================================================= */
.welcome-image {
  flex: 1.2;
  position: relative;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.welcome-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.floating-thumb {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 40%;
}

.floating-thumb img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.8s ease;
}

.welcome-image:hover .floating-thumb img {
  transform: scale(1.05);
}

/* When hidden on Read More click */
.welcome-image.hide {
  opacity: 0;
  transform: translateX(-100px);
  pointer-events: none;
}

/* =========================================================
   RIGHT SIDE — INFO CARD WITH TEXT
   ========================================================= */
.welcome-info {
  flex: 1;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  padding: 50px 60px;
  border-radius: 12px;
  border-left: 8px solid #b52239;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.6s ease;
}

.welcome-info.fade {
  opacity: 0.3;
  transform: scale(0.97);
}

/* Headings and Text */
.welcome-info h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.welcome-info h2 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.welcome-info h2 span {
  color: #e5c6a0;
  font-family: 'Playfair Display', serif;
  
}

.address {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 20px;
}

.welcome-info p {
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 15px;
}

.features {
  margin: 15px 0 25px;
  padding: 0;
  list-style: none;
}

.features li {
  color: #e5c6a0;
  margin-bottom: 8px;
  font-size:17px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.readmore-btn,
.readless-btn {
  display: inline-block;
  background: #b52239;
  color: #fff;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.readmore-btn:hover,
.readless-btn:hover {
  background: #e5c6a0;
  color: #2a2a2a;
}

/* =========================================================
   FULLSCREEN EXPANDED MODE — CINEMATIC DESIGN
   ========================================================= */
.fullscreen-content {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  overflow-y: auto;
  color: #fff;
  background: radial-gradient(circle at 30% 20%, rgba(30,0,0,0.9), rgba(0,0,0,0.98));
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1s ease, visibility 0s linear 0.8s;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.fullscreen-content.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

/* === Faint vignette edges for movie feel === */
.fullscreen-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 0;
}

/* === Inner wrapper === */
.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
  padding: 40px 60px;
  border-radius: 12px;
  background: rgba(20,20,20,0.6);
  border-left: 6px solid #b52239;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 60px rgba(181,34,57,0.25);
}

/* === Heading & text === */
.content-wrapper h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
  border-bottom: 2px solid #b52239;
  display: inline-block;
  padding-bottom: 6px;
}

.content-wrapper h2 span {
  color: #e5c6a0;
  font-family: 'Playfair Display', serif;
}

.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}

/* === Cinematic glow when open === */
.fullscreen-content.open .content-wrapper {
  animation: fadeInUp 1.2s ease forwards, glowSoft 3s ease-in-out infinite alternate;
}
/* ================================
   MOBILE OPTIMIZED FULLSCREEN CONTENT
   ================================ */
@media (max-width: 768px) {

  /* Main wrapper — reduce padding, remove heavy effects */
  .content-wrapper {
    padding: 20px 18px !important;
    border-radius: 10px;
    max-width: 100% !important;
    background: rgba(20,20,20,0.85) !important;
    border-left: 4px solid #b52239 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.7rem !important;
    text-align: left;
    margin-bottom: 15px !important;
    padding-bottom: 4px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.7rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
  }

  /* Remove cinematic glow + heavy animation */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  }

  /* Reduce fullscreen padding */
  .fullscreen-content {
    padding: 40px 5% !important;
  }
}
/* =========================================================
   ULTRA-MOBILE SCREENS (393px – 430px WIDTH)
   Pixel 7 Pro / iPhone 14 Pro Max / Similar Devices
   ========================================================= */
@media (max-width: 932px) {

  /* Fullscreen container */
  .fullscreen-content {
    padding: 40px 3% !important;
    align-items: flex-start !important;
  }

  /* Content wrapper */
  .content-wrapper {
    padding: 18px 15px !important;
    border-radius: 8px !important;
    border-left: 3px solid #b52239 !important;
    background: rgba(20,20,20,0.9) !important;
    box-shadow: 0 3px 15px rgba(0,0,0,0.45) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.45rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
}

@keyframes glowSoft {
  from {
    box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 30px rgba(181,34,57,0.2);
  }
  to {
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 40px rgba(229,198,160,0.25);
  }
}

/* === Smooth entry animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Entrance animation for section === */
.welcome-glass {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.55, 0, 0.1, 1);
}
.welcome-glass.active {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive tweaks === */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 25px;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
	 /* Fullscreen container */
  .fullscreen-content {
    padding: 20px 3% !important;
    
  }
  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
  .welcome-inner {
    gap: 40px;
  }

  .welcome-info {
    padding: 40px 50px;
  }

  .welcome-info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
	
  .welcome-inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .welcome-info {
    padding: 40px;
    border-left: none;
    border-top: 3px solid #b52239;
  }

  .floating-thumb {
    position: static;
    width: 60%;
    margin: 30px auto 0;
  }

  .welcome-image img {
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .welcome-glass {
    padding: 60px 0;
  }

  .welcome-inner {
    width: 90%;
  }

  .welcome-info {
    padding: 25px;
  }

  .welcome-info h2 {
    font-size: 1.8rem;
  }

  .welcome-info p {
    font-size: 0.95rem;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
}

/* =====================================================
   EXPERIENCE SECTION (CINEMATIC UPGRADE)
   ===================================================== */
.experience-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;

  /* ✅ FIXED BACKGROUND IMAGE HERE */
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url('../images/attraction/local.jpg') center center / cover no-repeat fixed;
}

/* You don’t need a separate .experience-bg anymore */
.experience-bg { display: none; }


/* === Floating Light Particles === */
.light-particles::before, .light-particles::after {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  background: radial-gradient(rgba(255,255,255,0.1) 1%, transparent 30%) repeat;
  animation: drift 40s linear infinite;
  mix-blend-mode: overlay;
}
.light-particles::after {
  animation-delay: -20s;
}
@keyframes drift {
  from { transform: translate(0,0); }
  to { transform: translate(-30%, -20%); }
}

/* === Content === */
.experience-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  padding: 120px 0;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}
.experience-section.active .experience-content {
  opacity: 1;
  transform: translateY(0);
}

/* === Text === */
.tagline {
  color: #e5c6a0;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #e5c6a0, #fff, #e5c6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
 
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.headline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.subtext {
  color: #ddd;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* === Amenity Cards (5 in a row with cinematic hover) === */
.amenities-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: 70px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  width: 100%;
  max-width: 230px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* Fade-in animation when section activates */
.experience-section.active .amenity-card {
  opacity: 1;
  transform: translateY(0);
}
.amenity-card:nth-child(1) { transition-delay: 0.2s; }
.amenity-card:nth-child(2) { transition-delay: 0.4s; }
.amenity-card:nth-child(3) { transition-delay: 0.6s; }
.amenity-card:nth-child(4) { transition-delay: 0.8s; }
.amenity-card:nth-child(5) { transition-delay: 1s; }

/* === Gold streak hover animation (from previous cinematic style) === */
.amenity-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(120deg, rgba(229,198,160,0.25), transparent 60%);
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.amenity-card:hover::before {
  left: 100%;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(181, 34, 57, 0.85);
  box-shadow: 0 20px 40px rgba(181, 34, 57, 0.7);
}

/* === Icon Styling === */
.icon {
  background: rgba(229, 198, 160, 0.15);
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5c6a0;
  font-size: 30px;
  box-shadow: inset 0 0 20px rgba(229, 198, 160, 0.3);
  transition: transform 0.4s ease;
}

.amenity-card:hover .icon {
  transform: scale(1.15);
}

/* === Text === */
.amenity-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.amenity-card p {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === Responsive Breakpoints === */
@media (max-width: 1200px) {
  .amenities-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .amenities-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .amenities-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .amenities-row {
    grid-template-columns: 1fr;
  }
}


/* === PLAY BUTTON WITH SNAKE BORDER === */
.play-btn {
  position: relative;
  background: linear-gradient(145deg, #941B2E, #b52239);
  border: none;
  color: #fff;
  width: 160px;
  height: 100px;
  border-radius: 10px;
  font-size: 36px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(148, 27, 46, 0.7);
  transition: transform 0.4s ease, background 0.3s ease;
  z-index: 3;
}

/* Pulsing outer glow ring (kept from previous) */
.play-btn .pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(229,198,160,0.5);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* === Snake Border Elements === */
.play-btn .border-top,
.play-btn .border-bottom {
  position: absolute;
  height: 2px;
  width: 0%;
  background: #e5c6a0;
  transition: all 0.3s ease;
}

.play-btn .border-left,
.play-btn .border-right {
  position: absolute;
  width: 2px;
  height: 0%;
  background: #e5c6a0;
  transition: all 0.3s ease;
}

/* Positioning borders around the circle container */
.play-btn .border-top { top: 10px; left: 5px; right: 5px; margin: 0 auto; }
.play-btn .border-bottom { bottom: 0; left: 5px; right: 5px; margin: 0 auto; }
.play-btn .border-left { top: 5px; left: 0; bottom: 5px; margin: auto; }
.play-btn .border-right { top: 5px; right: 0; bottom: 5px; margin: auto; }

/* === Hover: Animate Sequentially like a Snake === */
.play-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(145deg, #b52239, #000);
  color: #fff;
  box-shadow: 0 0 50px rgba(229,198,160,0.8);
}

/* Top border expands first */
.play-btn:hover .border-top {
  animation: snakeTop 1s linear forwards;
}
/* Right border after a short delay */
.play-btn:hover .border-right {
  animation: snakeRight 1s linear 0.25s forwards;
}
/* Bottom border next */
.play-btn:hover .border-bottom {
  animation: snakeBottom 1s linear 0.5s forwards;
}
/* Left border last */
.play-btn:hover .border-left {
  animation: snakeLeft 1s linear 0.75s forwards;
}

/* === Keyframes (circular motion mimic) === */
@keyframes snakeTop {
  0% { width: 0; left: 50%; }
  50% { width: 100%; left: 0; }
  100% { width: 0; left: 0; }
}
@keyframes snakeBottom {
  0% { width: 0; right: 50%; }
  50% { width: 100%; right: 0; }
  100% { width: 0; right: 0; }
}
@keyframes snakeRight {
  0% { height: 0; top: 50%; }
  50% { height: 100%; top: 0; }
  100% { height: 0; top: 0; }
}
@keyframes snakeLeft {
  0% { height: 0; bottom: 50%; }
  50% { height: 100%; bottom: 0; }
  100% { height: 0; bottom: 0; }
}



/* === Video Modal === */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
  animation: zoomIn 0.5s ease forwards;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.close-video {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.close-video:hover { transform: scale(1.2); color: #e5c6a0; }

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.video-coming-soon {
  display: block !important;
  padding: 50px 25px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 12px;

  background: rgba(20,20,20,0.85);
  box-shadow: 0 0 20px rgba(255, 215, 140, 0.2),
              inset 0 0 20px rgba(255, 215, 140, 0.1);

  border: 1px solid rgba(255, 215, 140, 0.25);

  animation: fadeInScale 0.6s ease forwards;
}

/* gold icon above text */
.video-coming-soon::before {
  content: "\f03d"; /* film icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 40px;
  color: #e5c6a0;
  display: block;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(229,198,160,0.6);
}

/* smooth animation */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



/* === Responsive === */
@media (max-width: 768px) {
  .headline { font-size: 2rem; }
  .subtext { font-size: 0.95rem; margin-bottom: 40px; }
  .amenities-row { flex-direction: column; align-items: center; gap: 20px; }
  .amenity-card { width: 85%; }
  .play-btn { width: 100px; height: 70px; font-size: 22px; }
}
/* =====================================================
   ROOMS SECTION — CINEMATIC WITH FIXED BACKGROUND
   ===================================================== */
.rooms-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 5%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
    url('../images/frontdesk.webp') center center / cover no-repeat fixed;
}

/* === Overlay Effects === */
.rooms-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}

.light-overlay::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(255,255,255,0.06) 2%, transparent 30%) repeat;
  animation: moveLights 40s linear infinite;
  z-index: 1;
  mix-blend-mode: overlay;
}
@keyframes moveLights {
  0% { transform: translate(0,0); }
  100% { transform: translate(-20%, -15%); }
}

.rooms-section .container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
}

/* === Section Title === */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.section-subtext {
  color: #ddd;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* === Rooms Grid === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* === Room Card === */
.room-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(181,34,57,0.7);
}

/* === Image === */
.room-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.room-card:hover .room-image img {
  transform: scale(1.05);
}

/* === Room Info (Bottom Label) === */
.room-info {
  background: rgba(0,0,0,0.4);
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-info h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}
.toggle-icon {
  color: #e5c6a0;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.room-card:hover .toggle-icon {
  transform: rotate(180deg);
}

/* === Hidden Info (Hover Reveal) — REFINED === */
.room-hidden {
  position: absolute;
  inset: 0;
  background: rgba(181,34,57,0.99);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.6s ease;
}

.room-card:hover .room-hidden {
  transform: translateY(0);
  opacity: 1;
}

/* === Room Title inside overlay === */
.room-hidden h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #e5c6a0;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* === Subtle Divider === */
.room-hidden .divider {
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 10px auto 20px;
  opacity: 0.8;
}

/* === Description (smaller, centered) === */
.room-hidden p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 25px;
  max-width: 320px;
}

/* === Features – soft, minimal === */
.features1 {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.features1 li {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features i {
  color: #e5c6a0;
  font-size: 0.9rem;
}

/* === Button – Sleek, center aligned === */
.btn-book {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #e5c6a0;
  color: #111;
  transform: translateY(-2px);
}


/* === View All === */
.view-all {
  margin-top: 50px;
}
.view-all a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.view-all a:hover {
  color: #e5c6a0;
}
.view-all i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.view-all a:hover i {
  transform: translateX(4px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .room-image img { height: 300px; }
  .section-title { font-size: 2rem; }
}
/* =====================================================
   NEARBY PLACES SECTION — CINEMATIC PREMIUM
   ===================================================== */
.places-section {
  position: relative;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(15,15,15,0.97) 100%),
    url('../images/HERO-MASK.png') center/cover no-repeat fixed;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(229, 198, 160, 0.15);
  border-bottom: 1px solid rgba(229, 198, 160, 0.15);
}

/* === Glow Accent Line (Top + Bottom) === */
.places-section::before,
.places-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b52239, #e5c6a0, transparent);
  opacity: 0.4;
}
.places-section::before { top: 0; }
.places-section::after { bottom: 0; }

/* === LAYOUT === */
.places-container {
  width: 100%;
  margin: 0 auto;
}

.places-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

/* === LEFT INFO SIDE === */
.places-info {
  flex: 1 1 50%;
  padding: 120px 8%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.places-subtitle {
  color: #e5c6a0;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.places-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.places-text {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0.95;
}

/* === LIST === */
.places-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 25px;
}

.places-list li {
  font-size: 0.95rem;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.places-list li:hover {
  color: #e5c6a0;
}

.places-list i {
  color: #b52239;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.places-list li:hover i {
  transform: scale(1.2);
  color: #e5c6a0;
}

/* === BUTTON === */
.places-btn {
  display: inline-block;
  background: #b52239;
  color: #fff;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(181, 34, 57, 0.3);
}
.places-btn:hover {
  background: #e5c6a0;
  color: #111;
  transform: translateY(-3px);
}

/* === Glow on Button === */
.glow-btn {
  box-shadow: 0 0 20px rgba(181, 34, 57, 0.5);
  transition: all 0.3s ease-in-out;
}
.glow-btn:hover {
  box-shadow: 0 0 25px rgba(229, 198, 160, 0.7);
}

/* === RIGHT GALLERY SIDE === */
.places-gallery {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}

.places-img {
  position: relative;
  overflow: hidden;
}

/* === Image Fade + Glow Overlay === */
.places-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.55),
    rgba(181, 34, 57, 0.35),
    rgba(0, 0, 0, 0.75)
  );
  mix-blend-mode: overlay;
  transition: opacity 0.5s ease, background 0.6s ease;
}

.places-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.places-img:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.2);
}

.places-img:hover::after {
  background: linear-gradient(
    to bottom right,
    rgba(181, 34, 57, 0.15),
    rgba(229, 198, 160, 0.25),
    rgba(0, 0, 0, 0.4)
  );
}

/* === Scroll Animations === */
.fade-in {
  animation: fadeIn 1.5s ease forwards;
}
.fade-up {
  animation: fadeUp 1.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .places-content { flex-direction: column; }
  .places-info {
    flex: 1 1 100%;
    padding: 80px 6%;
    text-align: center;
  }
  .places-list { grid-template-columns: 1fr; justify-items: center; }
  .places-title { font-size: 2.2rem; }
  .places-gallery { flex: 1 1 100%; }
  .places-img img { height: 260px; }
}
/* =====================================================
   AMAZING MEMORIES — CINEMATIC GALLERY (ENHANCED)
   ===================================================== */
.gallery-section {
  position: relative;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat fixed;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 120px 5%;
  overflow: hidden;
  z-index: 1;
}

/* === Background Overlays === */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7) 0%, rgba(10, 5, 5, 0.9) 80%);
  z-index: 0;
}

.light-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(229,198,160,0.06) 2%, transparent 40%) repeat;
  mix-blend-mode: overlay;
  animation: shimmer 40s linear infinite;
  z-index: 1;
  opacity: 0.7;
}

@keyframes shimmer {
  0% { transform: translate(0,0); }
  100% { transform: translate(-15%, -10%); }
}

/* === Container === */
.gallery-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

/* === Header === */
.gallery-header {
  max-width: 750px;
  margin: 0 auto 70px;
  animation: fadeInUp 1s ease forwards;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #e5c6a0;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

.gallery-subtext {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.8;
  opacity: 0.9;
}

/* === Grid Layout === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1.2s ease forwards;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
  transition: all 0.6s ease;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
}

/* === Layout Variants === */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* === Hover Magic === */
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(181, 34, 57, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.15);
}

/* Subtle gold glow on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(181,34,57,0.2) 0%,
    rgba(229,198,160,0.2) 50%,
    rgba(0,0,0,0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* === Vignette for cinematic depth === */
.gallery-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}
.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* keep hover effects through link */
.gallery-item:hover a img {
  transform: scale(1.1);
  filter: brightness(1.15);
  cursor: pointer;
}
/* =====================================================
   FOOTER — BEST WESTERN PLUS DENTON INN & SUITES
   Premium Cinematic Style with Depth
   ===================================================== */
.bw-footer {
  position: relative;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(15,15,15,0.97) 100%),
    url('../images/HERO-MASK.png') center/cover no-repeat fixed;
  color: #eaeaea;
  padding: 80px 20px 50px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid rgba(181,34,57,0.4);
 
}

/* === Glow Overlay for Luxury Shine === */
.bw-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(229,198,160,0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ===== TOP SECTION ===== */
.bw-footer-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.bw-footer-logo {
  width: 180px;
  margin-bottom: 18px;
  display: block;
  margin-inline: auto;
  animation: footerFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(181,34,57,0.7)) brightness(1.1);
  transition: all 0.4s ease;
}

@keyframes footerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bw-footer-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 28px rgba(229,198,160,0.8)) brightness(1.2);
}

.bw-footer-tagline {
  color: #e5c6a0;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
 
}

/* ===== MIDDLE SECTION ===== */
.bw-footer-middle {
  display: flex;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto 60px;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Footer Columns */
.bw-footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

/* ===== HEADINGS ===== */
.bw-footer-heading {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  font-family: 'Playfair Display', serif;
  text-transform: capitalize;
   text-decoration:none;
}

.bw-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #b52239, #e5c6a0);
  border-radius: 2px;
}

/* ===== LINKS ===== */
.bw-footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
}

.bw-footer-link:hover {
  color: #e5c6a0;
  text-shadow: 0 0 8px rgba(229,198,160,0.4);
}

.bw-footer-links-columns {
  display: flex;
  gap: 50px;
}

.bw-footer-links-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bw-footer-links-columns li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.bw-footer-links-columns li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #b52239;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.bw-footer-links-columns li:hover::before {
  transform: translateX(3px);
}

/* ===== SOCIAL ICONS ===== */
.bw-social-icons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.bw-footer-social {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #e5c6a0;
  border-radius: 50%;
  color: #e5c6a0;
  font-size: 22px;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.bw-footer-social:hover {
  background: #b52239;
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  border-color: #b52239;
  box-shadow: 0 6px 18px rgba(181,34,57,0.7);
}

/* ===== BOTTOM SECTION ===== */
.bw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  color: #bbb;
  position: relative;
  z-index: 2;
}

.bw-footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.bw-footer-sep {
  margin: 0 6px;
  color: #777;
}

/* Footer credit wrapper */
.bw-footer-credit {
  font-size: 15px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

/* Footer credit links */
.footer-dev-link {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-dev-link:hover {
  color: #fff;
}

/* Separator text like “and”, “by” */
.gen {
  color: #888;
  font-size: 15px;
}


/* ===== RESPONSIVE FIXES FOR TABLET & MOBILE ===== */

/* --- Tablet Screens (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .bw-footer {
    padding: 60px 15px 40px;
  }

  .bw-footer-middle {
    flex-wrap: wrap;
    justify-content: left;
    gap: 40px;
  }

  .bw-footer-col {
    flex: 1 1 45%;
    min-width: 280px;
    text-align: left;
  }

  .bw-footer-link {
    font-size: 16px;
  }

  .bw-footer-social {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .bw-footer-heading::after {
    Display:none;
  }
  .sticky-side-header {
    display: none;
  }
}

/* --- iPad / Large Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .bw-footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 45px;
  }

  .bw-footer-col {
    flex: 1 1 100%;
    max-width: 480px;
  }

  .bw-footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .bw-footer-links-columns ul {
    flex: 1 1 45%;
    min-width: 160px;
    text-align: left;
  }

  .bw-footer-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .bw-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .bw-footer-social {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .bw-social-icons {
    justify-content: center;
  }

  .bw-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-top: 30px;
  }

  .bw-footer-bottom-links {
    justify-content: center;
  }
  .bw-rewards {
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.bw-rewards img {
  height: 34px;
}

}

/* --- Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .bw-footer {
    padding: 50px 10px 30px;
  }

  .bw-footer-logo {
    width: 130px;
    margin-bottom: 12px;
  }

  .bw-footer-tagline {
    font-size: 13px;
    line-height: 1.5;
  }

  .bw-footer-heading {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .bw-footer-link {
    font-size: 15px;
  }

  .bw-footer-links-columns {
    gap: 15px;
    justify-content: center;
  }

 .bw-footer-links-columns ul {
    flex: 1 1 45%;
    min-width: 160px;
    text-align: left;
  }

  .bw-footer-social {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .bw-footer-bottom {
    padding-top: 20px;
    gap: 10px;
  }
  .bw-rewards img {
  height: 30px;
}

}
/* BW Rewards Logo */
.bw-rewards img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.bw-rewards img:hover {
  transform: scale(1.06);
}

/* Positioning */
.bw-rewards {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

/* =====================================================
   BACK TO TOP BUTTON — CINEMATIC RED + GOLD STYLE
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b52239 0%, #6b0e1f 90%);
  color: #fff;
  border: 2px solid rgba(229, 198, 160, 0.6);
  box-shadow: 0 0 20px rgba(181, 34, 57, 0.5), inset 0 0 12px rgba(229, 198, 160, 0.2);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s ease;
}

/* Show when active */
.back-to-top.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Hover Glow Effect */
.back-to-top:hover {
  background: radial-gradient(circle at 30% 30%, #e5c6a0 0%, #b52239 85%);
  color: #111;
  box-shadow: 0 0 30px rgba(229, 198, 160, 0.6), 0 0 15px rgba(181, 34, 57, 0.6);
  border-color: #e5c6a0;
  transform: scale(1.1);
}

/* Pulse Animation for Cinematic Glow */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 8px rgba(229,198,160,0.3), 0 0 0 0 rgba(181,34,57,0.3);
  }
  70% {
    box-shadow: 0 0 20px rgba(229,198,160,0.4), 0 0 0 15px rgba(181,34,57,0);
  }
  100% {
    box-shadow: 0 0 10px rgba(229,198,160,0.3), 0 0 0 0 rgba(181,34,57,0);
  }
}

.back-to-top.active {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Icon Style */
.back-to-top i {
  transition: transform 0.4s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* Small Screen Adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 25px;
    right: 25px;
  }
}
/* =====================================================
   ACCESSIBILITY / CONTACT BAR — CINEMATIC STYLE
   ===================================================== */
.accessibility-bar {
  background: linear-gradient(90deg, #4b0d17 0%, #b52239 60%, #6b0e1f 100%);
  color: #f5dba6;
  text-align: center;
  padding: 12px 20px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  font-weight: 500;
  position: relative;
  z-index: 99;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  background-attachment: fixed;
  overflow: hidden;
}

/* Soft shimmer effect overlay */
.accessibility-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 198, 160, 0.1), rgba(255, 255, 255, 0.05), rgba(229, 198, 160, 0.1));
  mix-blend-mode: overlay;
  opacity: 0.15;
  animation: shimmerFlow 8s infinite linear;
}

@keyframes shimmerFlow {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

/* Text */
.accessibility-bar p {
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Phone Link */
.accessibility-bar a {
  color: #fff3b0;
  font-weight: 700;
  margin-left: 5px;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.accessibility-bar a:hover {
  color: #e5c6a0;
  text-shadow: 0 0 8px rgba(229, 198, 160, 0.7);
}

/* Phone Icon */
.accessibility-bar i {
  color: #e5c6a0;
  margin-right: 6px;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .accessibility-bar {
    font-size: 15px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .accessibility-bar {
    font-size: 14px;
  }
  .accessibility-bar i {
    font-size: 15px;
  }
}
.cgs2{
	color:#fff;
	text-decoration:none;
}
.cgsl {
	color:#fff;
	text-decoration:none;
}

/* =========================================
   INNER PAGE HERO SECTION
   ========================================= */
.inner-page-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
 z-index: 0;
  background: #1b1b1b;
  margin-top:-150px;
}

/* ===== STATIC HERO ===== */
.static-hero {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.95) contrast(1.05);
  transform: scale(1.05);
  animation: staticZoomIn 1.8s ease-in-out forwards;
}

/* === KEYFRAMES === */
@keyframes staticZoomIn {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.10); }
}

/* ===== OVERLAY ===== */
.static-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 7, 0.75) 45%,
    rgba(0, 0, 0, 0.65) 85%
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.static-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 2;
  
}

/* ===== LEFT SIDE (Title) ===== */
.static-left {
  flex: 1;
  color: #fff;
  max-width: 650px;
}

.static-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-top: 190px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #fff 0%, #e5c6a0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}

.static-title span {
  display: inline-block;
  opacity: 0;
  transform-origin: left bottom;
  animation: staticLeafSwing 2s ease forwards;
}

.static-title span:nth-child(1) { animation-delay: 0.2s; }
.static-title span:nth-child(2) { animation-delay: 0.4s; }
.static-title span:nth-child(3) { animation-delay: 0.6s; }

/* Leaf swing animation for title text */
@keyframes staticLeafSwing {
  0% { opacity: 0; transform: rotateX(-40deg) rotateY(15deg) translateY(40px); }
  60% { opacity: 1; transform: rotateX(10deg) rotateY(-5deg); }
  100% { opacity: 1; transform: rotateX(0) rotateY(0) translateY(0); }
}

/* ===== RIGHT SIDE (Description) ===== */
.static-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.static-desc {
  border-radius: 10px;
  padding: 25px 30px;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  animation: staticFadeInRight 1.6s ease 1s forwards;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 250px;
}

@keyframes staticFadeInRight {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== REFLECTION EFFECT ===== */
.inner-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229,198,160,0.2), transparent);
  animation: staticShimmerSweep 12s ease-in-out infinite;
  z-index: 3;
}

@keyframes staticShimmerSweep {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .inner-page-hero {
    height: 50vh;
  }
  .static-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
  }
  .static-left {
    flex: 1;
    max-width: 55%;
  }
  .static-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0;
  }
  .static-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .static-desc {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229,198,160,0.3);
    border-radius: 8px;
    margin: 0;
  }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
  .inner-page-hero {
    height: 50vh;
  }
  .static-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
    margin: 10px;
  }
  .static-left {
    flex: 1;
    max-width: 55%;
  }
  .static-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 10px;
    font-weight: 300;
    background: linear-gradient(90deg, #fff 0%, #e5c6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
  }
  .static-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .static-desc {
    font-size: 0.85rem;
    max-width: 90%;
    line-height: 1.4;
    padding: 10px 14px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(229,198,160,0.25);
    border-radius: 8px;
    opacity: 0.95;
    text-align: right;
  }
}


/* =========================================
   CINEMATIC AMENITIES SECTION
   ========================================= */
.cin-amenities {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  
}

/* ===== BACKGROUND ===== */
.cin-bg {
  position: absolute;
  inset: 0;
  background: url('../images/singlebed5.webp') center center / cover no-repeat,
              linear-gradient(135deg, #1a0b0b 0%, #2a1b1b 100%);
  background-color: #1a0b0b; /* Fallback */
  filter: brightness(0.7);
  z-index: 0;
}
/* ===== SUBTLE GLOW OVERLAY ===== */
.cin-amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(229,198,160,0.1) 0%, transparent 70%);
  z-index: 1;
}

/* ===== INNER CONTENT ===== */
.cin-inner {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* ===== INFO CARD ===== */
.cin-info {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  padding: 60px;
  border-radius: 16px;
  border: 2px solid rgba(229,198,160,0.3);
  text-align: center;
  width: 100%; /* Full 1500px */
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  animation: cinFadeIn 1.5s ease forwards;
}

@keyframes cinFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TAG ===== */
.cin-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
 
}

.cin-tag span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #b52239;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===== TITLE ===== */
.cin-info h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.cin-info h2 span {
  color: #e5c6a0;
}

/* ===== ADDRESS ===== */
.cin-address {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* ===== DESCRIPTION ===== */
.cin-info p {
  color: #eee;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== AMENITIES GRID ===== */
.cin-amenities-grid {
  display: flex;
  flex-wrap: nowrap; /* Single row */
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.cin-amenity {
  flex: 1; /* Equal width */
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px; /* Prevent shrinking */
}

.cin-amenity:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(229,198,160,0.2);
}

.cin-icon {
  font-size: 2.5rem;
  color: #e5c6a0;
  margin-bottom: 10px;
}

.cin-amenity h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.cin-amenity p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1500px) {
  .cin-inner {
    width: 95%;
  }
  .cin-info {
    padding: 50px;
  }
  .cin-info h2 {
    font-size: 2.5rem;
  }
  .cin-amenities-grid {
    flex-wrap: wrap; /* Wrap on smaller screens */
  }
  .cin-amenity {
    flex: 1 1 45%; /* Two per row */
    min-width: 180px;
  }
}

@media (max-width: 1024px) {
  .cin-info {
    padding: 40px;
  }
  .cin-amenity {
    flex: 1 1 100%; /* One per row */
  }
}

@media (max-width: 767px) {
  .cin-amenities {
    padding: 50px 0;
  }
  .cin-inner {
    width: 90%;
  }
  .cin-info {
    padding: 30px;
  }
  .cin-info h2 {
    font-size: 2rem;
  }
  .cin-info p {
    font-size: 1rem;
  }
  .cin-address {
    font-size: 1rem;
  }
  .cin-amenities-grid {
    flex-direction: column;
  }
}


/* =========================================
   LUXURY FEATURES SECTION
   ========================================= */
.lux-features {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Playfair Display', serif;
}

/* ===== BACKGROUND ===== */
.lux-bg {
  position: absolute;
  inset: 0;
  background: url('../images/s.jpg') center center / cover no-repeat,
              linear-gradient(135deg, #0f0606 0%, #2a1b1b 100%);
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

/* ===== SUBTLE GLOW OVERLAY ===== */
.lux-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ===== INNER CONTENT ===== */
.lux-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* ===== PANEL ===== */
.lux-panel {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 20px;
  border: 3px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(181, 34, 57, 0.3);
  width: 100%;
  animation: luxFadeIn 1.8s ease-out forwards;
}

@keyframes luxFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== TRIPLE GRID (Hotel, Room, Accessible Features) ===== */
.lux-triple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* ===== CATEGORY ===== */
.lux-category {
  padding: 20px;
  background: rgba(30, 30, 30, 0.9);
  border-left: 5px solid #b52239;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 198, 160, 0.2);
}

.lux-heading {
  font-size: 1.8rem;
  color: #e5c6a0;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 10px;
}

.lux-subheading {
  font-size: 1.4rem;
  color: #fff;
  margin: 15px 0 10px;
  text-align: left;
  padding-left: 10px;
}

/* ===== TWO-COLUMN GRID FOR LISTS ===== */
.lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.lux-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-column li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
  padding: 8px 15px;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s ease;
}

.lux-column li:hover {
  color: #e5c6a0;
}

.lux-column li i {
  color: #b52239;
  margin-right: 12px;
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 2px;
}

/* ===== POLICY GRID ===== */
.lux-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.lux-policy-item {
  background: rgba(40, 40, 40, 0.9);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #b52239;
  transition: transform 0.3s ease;
}

.lux-policy-item:hover {
  transform: translateY(-3px);
}

.lux-policy-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-policy-item li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
}

.lux-policy-item li i {
  color: #b52239;
  margin-right: 10px;
  font-size: 1.1rem;
  min-width: 20px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1500px) {
  .lux-wrapper {
    width: 95%;
  }
  .lux-panel {
    padding: 40px;
  }
  .lux-triple-grid {
    grid-template-columns: 1fr;
  }
  .lux-policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .lux-panel {
    padding: 30px;
  }
  .lux-heading {
    font-size: 1.6rem;
  }
  .lux-subheading {
    font-size: 1.2rem;
  }
  .lux-column li {
    font-size: 0.95rem;
  }
  .lux-policy-item li {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .lux-features {
    padding: 50px 0;
  }
  .lux-wrapper {
    width: 90%;
  }
  .lux-panel {
    padding: 20px;
  }
  .lux-heading {
    font-size: 1.4rem;
  }
  .lux-subheading {
    font-size: 1.1rem;
  }
  .lux-column li {
    font-size: 0.9rem;
  }
  .lux-policy-item li {
    font-size: 0.9rem;
  }
  .lux-policy-item li i {
    font-size: 1rem;
  }
}/* =========================================
   LUXURY FEATURES SECTION
   ========================================= */
.lux-features {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
 font-family: 'Montserrat', Arial, sans-serif;
}

/* ===== BACKGROUND ===== */
.lux-bg {
  position: absolute;
  inset: 0;
 background: url('../images/HERO-MASK.png') center center / cover no-repeat fixed;
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

/* ===== SUBTLE GLOW OVERLAY ===== */
.lux-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ===== INNER CONTENT ===== */
.lux-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* ===== PANEL ===== */
.lux-panel {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 20px;
  border: 3px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(181, 34, 57, 0.3);
  width: 100%;
  animation: luxFadeIn 1.8s ease-out forwards;
}

@keyframes luxFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== TRIPLE GRID (Hotel, Room, Accessible Features) ===== */
.lux-triple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* ===== CATEGORY ===== */
.lux-category {
  padding: 20px;
  background: rgba(30, 30, 30, 0.9);
  border-left: 5px solid #b52239;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 198, 160, 0.2);
}

.lux-heading {
  font-size: 1.8rem;
  color: #e5c6a0;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 10px;
   font-family: 'Playfair Display', serif;
}

.lux-subheading {
  font-size: 1.4rem;
  color: #fff;
  margin: 15px 0 10px;
  text-align: left;
  padding-left: 10px;
   font-family: 'Playfair Display', serif;
}

/* ===== TWO-COLUMN GRID FOR LISTS ===== */
.lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.lux-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-column li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
  padding: 8px 15px;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s ease;
}

.lux-column li:hover {
  color: #e5c6a0;
}

.lux-column li i {
  color: #b52239;
  margin-right: 12px;
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 2px;
}

/* ===== POLICY GRID ===== */
.lux-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.lux-policy-item {
  background: rgba(40, 40, 40, 0.9);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #b52239;
  transition: transform 0.3s ease;
}

.lux-policy-item:hover {
  transform: translateY(-3px);
}

.lux-policy-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-policy-item li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
}

.lux-policy-item li i {
  color: #b52239;
  margin-right: 10px;
  font-size: 1.1rem;
  min-width: 20px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1500px) {
  .lux-wrapper {
    width: 95%;
  }
  .lux-panel {
    padding: 40px;
  }
  .lux-triple-grid {
    grid-template-columns: 1fr;
  }
  .lux-policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .lux-panel {
    padding: 30px;
  }
  .lux-heading {
    font-size: 1.6rem;
  }
  .lux-subheading {
    font-size: 1.2rem;
  }
  .lux-column li {
    font-size: 0.95rem;
  }
  .lux-policy-item li {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .lux-features {
    padding: 50px 0;
  }
  .lux-wrapper {
    width: 90%;
  }
  .lux-panel {
    padding: 20px;
  }
  .lux-heading {
    font-size: 1.4rem;
  }
  .lux-subheading {
    font-size: 1.1rem;
  }
  .lux-column li {
    font-size: 0.9rem;
  }
  .lux-policy-item li {
    font-size: 0.9rem;
  }
  .lux-policy-item li i {
    font-size: 1rem;
  }
}


/* =========================================
   THINGS TO DO SECTION
   ========================================= */
.tour-things-to-do {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Montserrat', sans-serif; /* Default for descriptions */
}

/* ===== BACKGROUND ===== */
.tour-bg {
  position: absolute;
  inset: 0;
  background: url('../images/attraction/theatre.jpg') center center / cover no-repeat,
              linear-gradient(135deg, #0f0606 0%, #2a1b1b 100%);
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

/* ===== SUBTLE GLOW OVERLAY ===== */
.tour-things-to-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ===== INNER CONTENT ===== */
.tour-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

/* Ensure parent container allows centering */
.tour-panel {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  animation: tourFadeIn 1.5s ease-out forwards;
  text-align: center; /* Align all children to center */
  display: flex; /* Use flexbox for better control */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center items horizontally */
}

@keyframes tourFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
/* ===== TAG ===== */
.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center; /* Center the text */
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
}

.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b52239;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== HEADING ===== */
.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center;
}

/* ===== ADDRESS ===== */
.tour-address {
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 1300px;
  text-align: center; /* Ensure text is centered */
  margin-left: auto; /* Center the block element */
  margin-right: auto; /* Center the block element */
  font-family: 'Montserrat', sans-serif; /* Description font */
}



/* ===== ATTRACTIONS ===== */
.tour-attractions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.tour-card {
  flex: 1 1 calc(20% - 20px); /* Five cards with gap */
  background: rgba(30, 30, 30, 0.9);
  border: 2px solid rgba(229, 198, 160, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(229, 198, 160, 0.3);
}

.tour-icon {
  font-size: 2.5rem;
  color: #b52239;
  margin-bottom: 15px;
}

.tour-title {
  font-size: 1.3rem;
  color: #e5c6a0;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif; /* Heading font */
}

.tour-desc {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif; /* Description font */
  
}

@media (max-width: 1024px) {

  .tour-attractions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
  }

  .tour-card {
    flex: 1 1 calc(50% - 25px); /* 2 per row */
    max-width: 350px;
  }

  .tour-panel {
    padding: 25px;
  }

  .tour-heading {
    font-size: 2rem;
  }

  .tour-address {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {

  .tour-attractions {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px;
    width: 100%;
  }

  .tour-card {
    width: 90% !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    flex: none !important;   /* IMPORTANT — prevents flex misalignment */
  }
}



/* ===== LOCATION SECTION ===== */
.location-section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Playfair Display', serif;
}

.location-wrapper-hero {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.location-info-box {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 60%; /* Adjusted to fit alongside map */
  animation: tourFadeIn 1.5s ease-out forwards;
}

.location-info-box h5.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-info-box h5.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b52239;
  margin-right: 8px;
  vertical-align: middle;
}

.location-info-box h2.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.location-info-box p.tour-address,
.location-info-box p {
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.coordinates-area, .directions-area {
  margin-bottom: 20px;
}

.coordinates-area h4, .directions-area h4 {
  font-size: 1.4rem;
  color: #e5c6a0;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.coordinates-area ul {
  list-style: none;
  padding: 0;
}

.coordinates-area ul li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 5px 0;
  font-family: 'Montserrat', sans-serif;
}

.directions-area form {
  display: flex;
  gap: 10px;
}

.directions-area input[type="text"] {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ddd;
  flex: 1;
}

.directions-area input[type="text"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.directions-area button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: #b52239;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.directions-area button:hover {
  background: #e5c6a0;
  color: #2a2a2a;
}

.location-map-box {
  width: 40%; /* Adjusted to fit alongside info box */
  height: 450px; /* Fixed height for map */
  background: rgba(15, 15, 15, 0.85);
  border-radius: 15px;
  overflow: hidden;
}

.location-map-box iframe {
  border: 0;
}

/* Animation */
@keyframes tourFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1500px) {
  .location-wrapper-hero {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }
  .location-info-box,
  .location-map-box {
    width: 100%;
  }
  .location-map-box {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .location-info-box {
    padding: 20px;
  }
  .location-info-box h2.tour-heading {
    font-size: 2rem;
  }
  .location-info-box p.tour-address,
  .location-info-box p {
    font-size: 1rem;
  }
  .coordinates-area h4, .directions-area h4 {
    font-size: 1.2rem;
  }
  .location-map-box {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .location-section-hero {
    padding: 30px 0;
  }
  .location-info-box {
    padding: 15px;
  }
  .location-info-box h2.tour-heading {
    font-size: 1.5rem;
  }
  .location-info-box p.tour-address,
  .location-info-box p {
    font-size: 0.9rem;
  }
  .coordinates-area h4, .directions-area h4 {
    font-size: 1.1rem;
  }
  .directions-area input[type="text"] {
    font-size: 0.9rem;
    padding: 8px;
  }
  .directions-area button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  .location-map-box {
    height: 300px;
  }
}


/* =========================================
   CONTACT US SECTION
   ========================================= */
.con-contact-us {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Playfair Display', serif;
}

.con-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #0f0606 0%, #2a1b1b 100%);
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

.con-contact-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

.con-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px; /* Fixed width */
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.con-panel {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  display: flex;
  gap: 30px;
  animation: conFadeIn 1.5s ease-out forwards;
}

@keyframes conFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center; /* Center the text */
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
}

.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b52239;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== HEADING ===== */
.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center;
}

.con-info-box {
  width: 60%; /* Adjusted for two-column layout */
}

.con-info-box p {
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.con-details-area {
  margin-bottom: 20px;
}

.con-details-area h4 {
  font-size: 1.5rem;
  color: #e5c6a0;
  
  font-family: 'Playfair Display', serif;
}

.con-details-area ul {
  list-style: none;
  padding: 0;
}

.con-details-area ul li {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 2px 0;
  font-family: 'Montserrat', sans-serif;
}

.con-details-area ul li a {
  color: #ddd;
  text-decoration: none;
}

.con-details-area ul li a:hover {
  color: #e5c6a0;
}

.con-image-box {
  width: 40%; /* Adjusted for two-column layout */
  height: 500px; /* Fixed height for image */
  background: rgba(15, 15, 15, 0.85);
  border-radius: 15px;
  overflow: hidden;
}

.con-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 1500px) {
  .con-wrapper {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }
  .con-info-box,
  .con-image-box {
    width: 100%;
  }
  .con-image-box {
    height: 400px;
  }
}

@media (max-width: 1024px) {

  .con-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .con-info-box,
  .con-image-box {
    width: 100% !important;
  }

  .con-image-box {
    height: 380px;
  }

  .tour-heading {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {

  .con-contact-us {
    padding: 30px 0;
  }

  .con-panel {
    flex-direction: column !important;
    padding: 20px;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .con-info-box,
  .con-image-box {
    width: 100% !important;
  }

  .con-image-box {
    height: 260px;
  }

  .tour-heading {
    font-size: 1.6rem;
  }

  .con-info-box p {
    font-size: 0.9rem;
  }

  .con-details-area h4 {
    font-size: 1.2rem;
  }

  .con-details-area ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 1500px) {
  .con-wrapper {
    width: 90%;
  }
}

/* =========================================
   SITEMAP SECTION
   ========================================= */
.sit-sitemap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Playfair Display', serif;
}

.sit-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #0f0606 0%, #2a1b1b 100%);
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

.sit-sitemap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

.sit-wrapper {
  position: relative;
  z-index: 2;
  width: 1400px; /* Updated to 1400px as requested */
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.sit-panel {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  animation: sitFadeIn 1.5s ease-out forwards;
}

@keyframes sitFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.sit-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center; /* Center the text */
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
}

.sit-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b52239;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== MAIN HEADING ===== */
.sit-main-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Playfair Display', serif; /* Heading font */
  text-align: center;
}

/* ===== DESCRIPTION ===== */
.sit-description {
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 1400px;
  text-align: center; /* Centered as requested */
  font-family: 'Montserrat', sans-serif;
}

/* ===== NAV CONTAINER ===== */
.sit-nav-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ===== NAV SECTION ===== */
.sit-nav-section {
  flex: 1;
  background: rgba(30, 30, 30, 0.9);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #b52239;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sit-nav-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 198, 160, 0.2);
}

.sit-section-title {
  font-size: 1.5rem;
  color: #e5c6a0;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.sit-nav-list {
  list-style-type: disc; /* Adds bullets */
  padding-left: 20px; /* Adjusts indentation for bullets */
  margin: 0;
}

.sit-nav-list li {
  font-size: 17px;
  color: #ddd;
  line-height: 2;
  padding: 5px 0; /* Reduced padding for better bullet alignment */
  transition: color 0.3s ease;
   font-family: 'Montserrat', sans-serif;
}

.sit-nav-list li:hover {
  color: #e5c6a0;
}

.sit-nav-list li a {
  color: inherit;
  text-decoration: none;
}

.sit-nav-list li a:hover {
  color: #b52239;
}

/* Responsive Design */
@media (max-width: 1500px) {
  .sit-wrapper {
    width: 95%;
  }
  .sit-panel {
    padding: 30px;
  }
  .sit-nav-container {
    flex-direction: column;
    gap: 15px;
  }
  .sit-nav-section {
    padding: 15px;
  }
  .sit-nav-list li {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .sit-panel {
    padding: 20px;
  }
  .sit-tag {
    font-size: 0.9rem;
  }
  .sit-main-heading {
    font-size: 2rem;
  }
  .sit-description {
    font-size: 1rem;
  }
  .sit-section-title {
    font-size: 1.3rem;
  }
  .sit-nav-section {
    padding: 10px;
  }
  .sit-nav-list li {
    font-size: 1rem;
    padding: 4px 0;
  }
}

@media (max-width: 767px) {
  .sit-sitemap {
    padding: 30px 0;
  }
  .sit-panel {
    padding: 15px;
  }
  .sit-tag {
    font-size: 0.8rem;
  }
  .sit-main-heading {
    font-size: 1.5rem;
  }
  .sit-description {
    font-size: 0.9rem;
  }
  .sit-section-title {
    font-size: 1.1rem;
  }
  .sit-nav-section {
    padding: 8px;
  }
  .sit-nav-list li {
    font-size: 0.9rem;
    padding: 3px 0;
  }
}


/* =========================================
   FAQ SECTION
   ========================================= */
.faq-faq {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Playfair Display', serif;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #0f0606 0%, #2a1b1b 100%);
  background-color: #0f0606; /* Darker fallback */
  filter: brightness(0.65);
  z-index: 0;
}

.faq-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(229,198,160,0.15) 0%, transparent 60%);
  z-index: 1;
}

.faq-wrapper {
  position: relative;
  z-index: 2;
  width: 1400px; /* Consistent with Sitemap width */
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.faq-panel {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(229, 198, 160, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  animation: faqFadeIn 1.5s ease-out forwards;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.faq-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e5c6a0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b52239;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== MAIN HEADING ===== */
.faq-main-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

/* ===== DESCRIPTION ===== */
.faq-description {
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.faq-description a {
  color: #ddd;
  text-decoration: none;
}

.faq-description a:hover {
  color: #e5c6a0;
}

/* ===== QUESTIONS CONTAINER ===== */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: rgba(30, 30, 30, 0.9);
  padding: 15px;
  border-radius: 10px;
  border-left: 5px solid #b52239;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

/* ===== QUESTION ===== */
.faq-question {
  font-size: 1.3rem;
  color: #e5c6a0;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

/* ===== ANSWER ===== */
.faq-answer {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer a {
  color: #ddd;
  text-decoration: none;
}

.faq-answer a:hover {
  color: #e5c6a0;
}

/* Responsive Design */
@media (max-width: 1500px) {
  .faq-wrapper {
    width: 95%;
  }
  .faq-panel {
    padding: 30px;
  }
  .faq-questions {
    gap: 15px;
  }
  .faq-item {
    padding: 12px;
  }
  .faq-question {
    font-size: 1.2rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .faq-panel {
    padding: 20px;
  }
  .faq-tag {
    font-size: 0.9rem;
  }
  .faq-main-heading {
    font-size: 2rem;
  }
  .faq-description {
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
  .faq-item {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .faq-faq {
    padding: 30px 0;
  }
  .faq-panel {
    padding: 15px;
  }
  .faq-tag {
    font-size: 0.8rem;
  }
  .faq-main-heading {
    font-size: 1.5rem;
  }
  .faq-description {
    font-size: 0.9rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
  .faq-item {
    padding: 8px;
  }
}


/* === COOKIE CONSENT BANNER (MATCHED THEME) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(40, 10, 10, 0.95), rgba(15, 15, 15, 0.95));
  color: #f8f8f8;
  padding: 20px 30px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.45);
  font-family: "Poppins", sans-serif;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e8e8e8;
}

.cookie-content a {
  color: #d6b46a;         /* Softer gold like layout */
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #f3d68b;
}

/* === BUTTONS === */
.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Accept Button – gold tone used across site */
.cookie-btn.accept {
  background-color: #d6b46a;
  color: #2d1a1a;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.cookie-btn.accept:hover {
  background-color: #f3d68b;
}

/* Decline Button – outlined gold */
.cookie-btn.decline {
  background-color: transparent;
  color: #d6b46a;
  border: 1px solid #d6b46a;
}

.cookie-btn.decline:hover {
  background-color: #d6b46a;
  color: #2d1a1a;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    flex: 1;
  }
}
/* ===== INNER ATTRACTION PAGE – MATCHES YOUR CINEMATIC RED + GOLD THEME ===== */
.attraction-inner-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0405 0%, #1a080b 50%, #000 100%);
  color: #f5f5f5;
  min-height: 100vh;
}

.attraction-container {
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
}

.attraction-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #e5c6a0;
  text-shadow: 0 0 20px rgba(229,198,160,0.4);
  letter-spacing: 1px;
}

.attraction-hero-img {
  text-align: center;
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(181,34,57,0.6);
}

.attraction-hero-img img {
  width: 90%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.attraction-block {
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(22,6,6,0.65);
  border-left: 4px solid #e4002b;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.block-title {
  font-size: 28px;
  color: #e5c6a0;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.block-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #e4002b, #e5c6a0);
}

.attraction-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #e8e8e8;
  margin-bottom: 18px;
}

.attraction-block strong {
  color: #e5c6a0;
}

.attraction-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-reserve {
  display: inline-block;
  padding: 16px 42px;
  background: #e4002b;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(228,0,43,0.4);
  transition: all 0.4s ease;
}

.btn-reserve:hover {
  background: #b52239;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(228,0,43,0.6);
}