﻿/* ===== 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,
body{
    overflow-x:hidden;
    width:100%;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

@media(max-width:768px){

.container{
    padding:0 15px;
}

}

@media(max-width:991px){

.sticky-side-header{
    display:none !important;
}

}

@media(max-width:768px){

.hero-slide{
    height:85vh;
    min-height:600px;
}

.hero-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-title{
    font-size:34px !important;
    line-height:1.2;
}

.hero-desc{
    font-size:15px;
    max-width:100%;
}

}

@media(max-width:768px){

.topbar{
    display:none;
}

.logo-img{
    max-width:180px;
}

.header-container{
    padding:10px 15px;
}

}

@media(max-width:991px){

.welcome-inner{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.welcome-image,
.welcome-info{
    width:100%;
}

.floating-thumb{
    display:none;
}

.welcome-info{
    padding:0 15px;
    text-align:center;
}

}@media(max-width:768px){

.amenities-row{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.amenity-card{
    width:100%;
}

}

@media(max-width:991px){

.rooms-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.room-card{
    width:100%;
}

.room-image img{
    width:100%;
    height:250px;
    object-fit:cover;
}

}

@media(max-width:991px){

.places-content{
    display:flex;
    flex-direction:column;
}

.places-info,
.places-gallery{
    width:100%;
}

.places-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

}

@media(max-width:768px){

.gallery-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.gallery-item,
.gallery-item.wide{
    grid-column:auto;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
}

}

@media(max-width:991px){

.bw-footer-middle{
    display:flex;
    flex-direction:column;
}

.bw-footer-col{
    width:100%;
    margin-bottom:30px;
}

.bw-footer-links-columns{
    display:flex;
    flex-direction:column;
}

}






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;
}


.header{
  position: fixed;
  top: 0;
  left: 0;	
  width: 100%;
}

/* ===== 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: 6px 0;
  z-index: 10; /* lower z-index since it’s not floating */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: #00000069;
}
 
}


/* 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;
  }
}


@media (max-width:991px){

.main-nav{
    display:none;
}

.social-icons{
    display:none;
}

.header-container{
    justify-content:space-between;
}

.logo-img{
    max-width:180px;
    height:auto;
}
}

@media (max-width:991px){

.welcome-inner{
    display:flex;
    flex-direction:column;
}

.welcome-image,
.welcome-info{
    width:100%;
}

.floating-thumb{
    display:none;
}
}

@media (max-width:991px){

.rooms-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.room-card{
    width:100%;
}
}

@media (max-width:991px){

.places-content{
    flex-direction:column;
}

.places-info,
.places-gallery{
    width:100%;
}

.places-grid{
    grid-template-columns:1fr;
}
}

@media (max-width:768px){

.gallery-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.gallery-item,
.gallery-item.wide{
    grid-column:auto;
}

.gallery-item img{
    height:260px;
    object-fit:cover;
}
}

@media (max-width:991px){

.bw-footer-middle{
    flex-direction:column;
}

.bw-footer-col{
    width:100%;
    margin-bottom:30px;
}

.bw-footer-links-columns{
    flex-direction:column;
}
}

@media (max-width:768px){

.amenities-row{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.amenity-card{
    width:100%;
}
}



/* On mobile: since topbar is hidden, move header to very top */
@media (max-width: 768px) {
  .main-header {
  margin-top: 10px; /* height of topbar */
}
}

@media (max-width:768px){

.hero-slider,
.hero-slide{
    height:70vh;
    min-height:550px;
}

.hero-content{
    flex-direction:column;
    text-align:center;
    padding:20px;
}

.hero-left,
.hero-right{
    width:100%;
}
}

@media (max-width:991px){
    .sticky-side-header{
        display:none !important;
    }
}

@media (max-width:768px){

.topbar-container{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.topbar-left,
.topbar-right{
    width:100%;
}
}





/* ===== 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: 600px;
  z-index:1;
}

.hero-title {
  font-size: 2rem;
  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;
  background: #00000052;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
}


.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 rgb(255 255 255);
    color: #901712;
  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;
      display: none;
}

@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;
	    margin-top: 0px;
  }
  
  .hero-title span {
	  
	      font-size: 18px;
		  
  }

  .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) {
	
	
	/* =========================
   MOBILE HERO SLIDER FIX
========================= */

@media (max-width: 767px) {

  .cinematic-hero {
    margin-top: 0;
    height: 100vh;
    overflow: hidden;
  }

  .hero-slide {
    background-position: center center;
    background-size: cover;
    padding-top: 120px; /* Prevent overlap with header */
  }

  .hero-content {
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 20px;
    height: 100%;
  }

  .hero-left {
    width: 100%;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.1;
    max-width: 240px;
  }

  .hero-right {
    width: 100%;
    margin-top: 20px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  .hero-nav {
    margin-top: 25px;
  }

  .hero-nav button {
    width: 42px;
    height: 42px;
  }

  /* HEADER FIX */
  .header,
  header {
    z-index: 9999;
  }

}

.hamburger{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    font-size:28px;
    color:#fff;
    z-index:9999;
    position:relative;
}

@media(max-width:991px){

    .hamburger{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    .main-nav{
        display:none;
    }

    .social-icons{
        display:none;
    }

}


  .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/img/hotel-view.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%);*/
    background: linear-gradient(to right, rgb(239 235 235 / 85%) 25%, rgb(64 52 52 / 53%) 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;
  }
  
  .rooms-section {
	      padding: 0px 0%!IMPORTANT;
	  
  }
  
}

/* =====================================================
   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(rgb(0 0 0 / 36%), rgb(0 0 0 / 42%)), url(../images/inner-slider/family.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(3, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: 70px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(100px);
  border-radius: 18px;
  width: 100%;
  max-width: 406px;
  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(rgb(0 0 0 / 0%), rgb(129 41 41 / 49%)), url(../images/inner-slider/double-bed-2.webp) center center / cover no-repeat fixed;
  


}

/* === Overlay Effects === */
.rooms-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 55%) 0%, rgba(0, 0, 0, 0.5) 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:rgb(27 24 24 / 77%);
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.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;
      display: none;
}
.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;
      display: none;
}

.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(rgb(0 0 0 / 0%), rgb(129 41 41 / 49%)), url(../images/attraction/colonial-williamsburg.jpg) center center / cover no-repeat fixed;

   /*background: linear-gradient(180deg, rgb(0 0 0 / 55%) 0%, rgba(0, 0, 0, 0.5) 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 4% 120px 8%;
  background: rgb(0 0 0 / 59%);
  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: 1344px;
  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:-111px;
}

/* ===== 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: 60%;
  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) {
	
	.welcome-info {
    flex: 1;
    background: rgb(13 12 12 / 68%);
    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;
}

  .inner-page-hero {
    height: 50vh;
  }
  
    .hero-title {
    font-size: 0.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;
	        margin-top: -100px;
			        background: #00000057;
	
  }
  
  .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);
}


.rooms-grid{
    display:grid;
    
    gap:30px;
}

@media(max-width:991px){
    .rooms-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .rooms-grid{
        grid-template-columns:1fr;
    }
}

/* =====================================
   INNER PAGE HERO
===================================== */

.hero-spark-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    overflow:hidden;
}

.hero-spark-overlay::before,
.hero-spark-overlay::after{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    top:-50%;
    left:-50%;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,.6) 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 2px);
    background-size:120px 120px, 180px 180px, 250px 250px;
    animation:sparkMove 25s linear infinite;
    opacity:.35;
}

.hero-spark-overlay::before{
    background-image:
    radial-gradient(circle, rgba(255,215,120,.9) 1px, transparent 2px);
}

.hero-spark-overlay::after{
    animation-duration:35s;
    opacity:.2;
}

.hero-overlay {
    /* background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .45)); */
    backdrop-filter: blur(1px);
}

@keyframes sparkMove{
    from{
        transform:translate(0,0) rotate(0deg);
    }
    to{
        transform:translate(-100px,-100px) rotate(360deg);
    }
}

.hero-title1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 190px;
    text-transform: capitalize;
    color: #fff;
    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;
    background: #00000052;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
}

.inner-page-hero {
    position: relative;
    height: 523px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /*background: url('../images/home-slider/map.webp') center center/cover no-repeat;*/
}

.inner-page-hero::before {
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgb(241 236 236 / 65%), rgba(0, 0, 0, 0.55)); */
    /* z-index: 1; */
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

/* inner page hero map */

.inner-page-hero-map {
    position: relative;
    height: 523px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/home-slider/map.webp') center center/cover no-repeat;
    margin-top: -111px;
}

.inner-page-hero-map::before {
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgb(241 236 236 / 65%), rgba(0, 0, 0, 0.55)); */
    /* z-index: 1; */
}

.inner-page-hero-map .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-map h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

/* inner page hero contact */

.inner-page-hero-contact {
    position: relative;
    height: 523px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/home-slider/contact.webp') center center/cover no-repeat;
    margin-top: -111px;
}

.inner-page-hero-contact::before {
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgb(241 236 236 / 65%), rgba(0, 0, 0, 0.55)); */
    /* z-index: 1; */
}

.inner-page-hero-contact .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-contact h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}


/* inner page hero sitemap */

.inner-page-hero-sitemap {
    position: relative;
    height: 523px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/home-slider/sitemap.webp') center center/cover no-repeat;
    margin-top: -111px;
}

.inner-page-hero-sitemap::before {
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgb(241 236 236 / 65%), rgba(0, 0, 0, 0.55)); */
    /* z-index: 1; */
}

.inner-page-hero-sitemap .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-sitemap h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

/* inner page hero faq */

.inner-page-hero-faq {
    position: relative;
    height: 523px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/home-slider/faq.webp') center center/cover no-repeat;
    margin-top: -111px;
}

.inner-page-hero-faq::before {
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgb(241 236 236 / 65%), rgba(0, 0, 0, 0.55)); */
    /* z-index: 1; */
}

.inner-page-hero-faq .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-faq h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #941B2E;
}

.breadcrumb span {
    color: #ddd;
    font-size: 15px;
}

/* Mobile */

@media(max-width:991px){

    .inner-page-hero{
        height:350px;
    }

    .inner-page-hero h1{
        font-size:42px;
    }

}

@media(max-width:767px){

    .inner-page-hero{
        height:280px;
    }

    .inner-page-hero h1{
        font-size:32px;
        line-height:1.3;
    }

    .breadcrumb{
        font-size:14px;
    }

}



/* ==========================
   CONTACT INTRO
========================== */

.contact-intro {
    padding: 36px 0 40px;
    background: #fff;
    text-align: center;
}

.contact-intro .section-heading {
    max-width: 1298px;
    margin: 0 auto;
}

.contact-intro h2 {
    font-size: 42px;
    font-family: 'Lora', serif;
    color: #941B2E;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    margin-bottom:20px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:30px;
    letter-spacing:2px;
    text-transform:uppercase;
    border-radius:30px;
    text-shadow: 1px 1px 1px #000;
}

@media(max-width:767px){

    .contact-intro {
        padding: 60px 0 30px;
    }

    .contact-intro h2 {
        font-size: 30px;
    }

}

/* ==========================
   CONTACT PAGE
========================== */

.con-contact-us {
    position: relative;
    padding: 89px;
    background: #f8f8f8;
}

.con-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.con-contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.con-contact-info h2 {
    font-size: 2.2rem;
    color: #941B2E;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}

.con-contact-info p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.con-info-box {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.con-info-box i {
    width: 55px;
    height: 55px;
    background: #941B2E;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    flex-shrink: 0;
}

.con-info-box h3 {
    margin: 0 0 5px;
    color: #222;
    font-size: 18px;
}

.con-info-box p {
    margin: 0;
    color: #666;
}

.con-info-box a {
    color: #941B2E;
    text-decoration: none;
    font-weight: 600;
}

.con-map-area iframe {
    width: 100%;
    height: 646px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.con-contact-us .glow-btn {
    margin-top: 15px;
    display: inline-block;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {

    .con-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .con-map-area iframe {
        height: 400px;
    }

    .con-contact-info {
        padding: 30px;
    }

}

@media (max-width: 576px) {

    .con-contact-info h2 {
        font-size: 1.8rem;
    }

    .con-info-box {
        gap: 12px;
    }

    .con-info-box i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }

}

/* =========================
   SITEMAP PAGE
========================= */

.sitemap-intro{
    padding:80px 0 40px;
    text-align:center;
    background:#fff;
}

.sitemap-intro h2{
    font-size:42px;
    color:#941B2E;
    margin-bottom:20px;
    font-family:'Lora', serif;
}

.sitemap-intro p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#555;
}

.sit-sitemap{
    padding:40px 0 100px;
    background:#f8f8f8;
}

.sit-sitemap-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.sit-sitemap-grid a{
    background:#fff;
    padding:40px 30px;
    min-height:180px;
    border-radius:20px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    width:100%;
    height:100%;
    cursor:pointer;
    position:relative;
    z-index:2;
}

.sit-sitemap-grid a:hover{
    transform:translateY(-8px);
    color:#941B2E;
}

.sit-sitemap-grid i{
    display:block;
    font-size:40px;
    margin-bottom:20px;
    color:#941B2E;


}

@media(max-width:991px){

    .sit-sitemap-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .sit-sitemap-grid{
        grid-template-columns:1fr;
    }

    .sitemap-intro h2{
        font-size:32px;
    }

}

/* ==========================
   FAQ PAGE
========================== */

/* ==========================
   FAQ PAGE
========================== */

.faq-intro{
    padding:80px 0 40px;
    background:#fff;
    text-align:center;
}

.faq-intro h2{
    font-size:42px;
    color:#941B2E;
    margin-bottom:20px;
    font-family:'Lora', serif;
}

.faq-intro p{
    max-width:950px;
    margin:auto;
    line-height:1.9;
    color:#555;
}

.faq-section-page{
    padding:40px 0 100px;
    background:#f8f8f8;
}

.faq-wrapper{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:25px 30px;
    border:none;
    background:#fff;
    text-align:left;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#222;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    color:#941B2E;
    font-size:24px;
    font-weight:700;
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
}

.faq-answer p{
    color:#666;
    line-height:1.9;
    margin:0;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question span{
    content:"−";
}

@media(max-width:767px){

    .faq-intro h2{
        font-size:32px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }

}


.faq-luxury-section{
    padding:69px 112px;
    background:#f7f7f7;
}

.faq-luxury-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.faq-luxury-item:hover{
    transform:translateY(-3px);
}

.faq-luxury-btn{
    width:100%;
    border:none;
    background:#fff;
    padding:28px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
}

.faq-luxury-btn span{
    font-size:20px;
    font-weight:600;
    color:#941B2E;
}

.faq-luxury-btn i{
    font-size:18px;
    color:#941B2E;
    transition:.4s;
}

.faq-luxury-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s ease;
    background:#fcfcfc;
}

.faq-luxury-content p{
    padding:0 35px 30px;
    line-height:1.9;
    color:#555;
}

.faq-luxury-content p a{
    line-height:1.9;
    color:#555;
    text-decoration: none;
}

.faq-luxury-content p a:hover{
    line-height:1.9;
    color:#000;
    text-decoration: underline;
}

.faq-luxury-item.active .faq-luxury-content{
    max-height:300px;
}

.faq-luxury-item.active .faq-luxury-btn i{
    transform:rotate(45deg);
}

.faq-luxury-item{
    border-left:5px solid #941B2E;
}

@media(max-width:767px){

    .faq-intro h2{
        font-size:32px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }

}

.location-intro{
    padding:80px 0 50px;
    text-align:center;
    background:#fff;
}

.location-intro h2{
    color:#941B2E;
    font-size:42px;
    margin-bottom:20px;
    font-family:'Lora', serif;
}

.location-intro p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#555;
}

.location-details{
    padding:20px 0 80px;
    background:#fff;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.location-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.location-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#941B2E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.location-card h3{
    margin-bottom:15px;
    color:#941B2E;
}

.location-map-section{
    padding:0px 0;
    background:#f8f8f8;
}

.map-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.map-wrapper iframe{
    width:100%;
    height:550px;
    border:none;
}

.transport-section{
    padding:89px;
    background:#fff;
}

.transport-section h2{
    text-align:center;
    margin-bottom:50px;
    color:#941B2E;
}

.transport-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.transport-card{
    background:#f8f8f8;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.transport-card i{
    font-size:40px;
    color:#941B2E;
    margin-bottom:20px;
}

.inner-page-hero iframe {
    width: 100%;
    height: 646px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.transport-card{
    background:#f8f8f8;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.transport-card h3{
    color:#941B2E;
    font-size:22px;
    margin:15px 0 10px;
    display:block;
}

.transport-card p{
    color:#333;
    font-size:16px;
    line-height:1.8;
    margin:0;
    display:block;
}

.transport-card i{
    font-size:40px;
    color:#941B2E;
    margin-bottom:20px;
    display:block;
}

.location-details{
    padding: 89px;
    background:#ffffff;
}

.location-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.location-card h3{
    color:#941B2E !important;
    font-size:24px;
    font-weight:600;
    margin:20px 0 15px;
    opacity:1 !important;
    visibility:visible !important;
}

.location-card p{
    color:#444 !important;
    font-size:16px;
    line-height:1.8;
    opacity:1 !important;
    visibility:visible !important;
}

.location-card a{
    color:#941B2E !important;
    text-decoration:none;
    font-weight:600;
}

.location-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#941B2E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.location-icon i{
    color:#fff !important;
}


.location-search-section{
    padding:60px 0;
    text-align:center;
    background:#f8f8f8;
}

.location-search-section h2{
    color:#941B2E;
    margin-bottom:25px;
}

.direction-search{
    max-width:700px;
    margin:auto;
    display:flex;
    gap:15px;
}

.direction-search input{
    flex:1;
    height:60px;
    border:none;
    border-radius:12px;
    padding:0 20px;
    font-size:16px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.direction-search button{
    background:#941B2E;
    color:#fff;
    border:none;
    padding:0 30px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
}


.hero-map iframe{
    position:relative;
    z-index:1;
}

.hero-address{
    position:relative;
    z-index:3;
}

.hero-overlay{
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:10;
}

.hero-content h1,
.hero-content p{
    color:#fff;
}

.attraction-showcase{
    padding:80px;
    background:#fff;
}

.attraction-item{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:120px;
}

.attraction-item.reverse{
    flex-direction:row-reverse;
}

.attraction-img{
    flex:1;
}

.attraction-img img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.attraction-info{
    flex:1;
}

.attr-number{
    font-size:90px;
    font-weight:700;
    color:#941B2E;
    opacity:.12;
    display:block;
    line-height:1;
}

.attraction-info h2{
    font-size:42px;
    color:#941B2E;
    margin-bottom:20px;
}

.attraction-info p{
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.attr-btn{
    display:inline-block;
    padding:14px 35px;
    background:#941B2E;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.4s;
}

.attr-btn:hover{
    transform:translateY(-4px);
}

.explore-cta{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg,#941B2E,#6d1422);
    color:#fff;
}

.explore-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.explore-cta p{
    max-width:850px;
    margin:0 auto 30px;
    line-height:1.9;
    font-size:17px;
}

.cta-book-btn{
    display:inline-block;
    padding:15px 40px;
    background:#fff;
    color:#941B2E;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.cta-book-btn:hover{
    transform:translateY(-4px);
}

@media (max-width:991px){

    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .location-details {
    padding: 0px;
    background: #ffffff;
}

}

@media (max-width:767px){

    .location-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .location-details {
    padding: 0px;
    background: #ffffff;
}

}

.location-card{
    height:auto;
    min-height:auto;
}




.location-search-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.location-search-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #941B2E;
}

.direction-search {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.direction-search input {
    flex: 1;
    min-width: 0;
    height: 55px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.direction-search button {
    height: 55px;
    padding: 0 28px;
    border: none;
    border-radius: 8px;
    background: #941B2E;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.direction-search button:hover {
    background: #761524;
}

/* TABLET */
@media (max-width: 991px) {

    .location-search-section {
        padding: 50px 20px;
    }

    .direction-search {
        flex-direction: column;
    }

    .direction-search input,
    .direction-search button {
        width: 100%;
    }

    .direction-search button {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .location-search-section {
        padding: 40px 15px;
    }

    .location-search-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .direction-search {
        gap: 12px;
    }

    .direction-search input {
        height: 52px;
        font-size: 15px;
    }

    .direction-search button {
        height: 52px;
        font-size: 14px;
        padding: 0 15px;
    }
}

.transport-section{
    padding:70px 20px;
    background:#f8f8f8;
    text-align:center;
}

.transport-section h2{
    font-size:2.2rem;
    margin-bottom:40px;
    color:#941B2E;
}

.transport-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}

.transport-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
    height:100%;
}

.transport-card:hover{
    transform:translateY(-5px);
}

.transport-card i{
    font-size:40px;
    color:#941B2E;
    margin-bottom:20px;
}

.transport-card h3{
    font-size:1.3rem;
    margin-bottom:10px;
}

.transport-card p{
    line-height:1.7;
    color:#666;
    margin:0;
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px){

    .transport-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .transport-section{
        padding:60px 20px;
    }

    .transport-section h2{
        font-size:1.9rem;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:767px){

    .transport-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .transport-section{
        padding:50px 15px;
    }

    .transport-section h2{
        font-size:1.6rem;
        margin-bottom:25px;
    }

    .transport-card{
        padding:25px 20px;
    }

    .transport-card i{
        font-size:34px;
    }

    .transport-card h3{
        font-size:1.1rem;
    }

    .transport-card p{
        font-size:14px;
        line-height:1.6;
    }
}

/* =====================================
   CONTACT US SECTION
===================================== */

.con-contact-us{
    padding:70px 20px;
    overflow:hidden;
}

.con-contact-us .container{
    max-width:1200px;
    margin:auto;
}

.con-contact-wrapper{
    display:flex;
    align-items:stretch;
    gap:30px;
}

.con-contact-info,
.con-contact-form{
    flex:1;
    min-width:0;
}

.con-contact-info{
    padding:35px;
}

.con-contact-form{
    padding:35px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* FORM FIELDS */

.con-contact-form input,
.con-contact-form textarea,
.con-contact-form select{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.con-contact-form textarea{
    resize:vertical;
    min-height:140px;
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .con-contact-us{
        padding:60px 20px;
    }

    .con-contact-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .con-contact-info,
    .con-contact-form{
        width:100%;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:767px){

    .con-contact-us{
        padding:45px 15px;
    }

    .con-contact-info,
    .con-contact-form{
        padding:25px 20px;
    }

    .con-contact-form h2,
    .con-contact-info h2{
        font-size:1.6rem;
        line-height:1.3;
    }

    .con-contact-form input,
    .con-contact-form textarea,
    .con-contact-form select{
        font-size:15px;
    }

    .con-contact-form button{
        width:100%;
    }
}

/* EXTRA SMALL DEVICES */

@media (max-width:480px){

    .con-contact-us{
        padding:40px 12px;
    }

    .con-contact-info,
    .con-contact-form{
        padding:20px 15px;
    }
}


/* =========================
   AMENITIES INTRO
========================= */

.amenities-intro{
    padding:80px 0 40px;
    text-align:center;
}

.amenities-intro p{
    max-width:950px;
    margin:auto;
    line-height:1.9;
    font-size:17px;
}

/* =========================
   AMENITIES SHOWCASE
========================= */

.amenities-showcase{
    padding:40px 0 90px;
    background:#f8f8f8;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.amenity-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid #941B2E;
}

.amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.amenity-card i{
    font-size:42px;
    color:#941B2E;
    margin-bottom:20px;
}

.amenity-card h3{
    margin-bottom:15px;
    font-size:22px;
    font-family:'Lora',serif;
}

.amenity-card p{
    line-height:1.7;
}

/* =========================
   CTA SECTION
========================= */

.amenities-cta {
    /* padding: 90px 0; */
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #941B2E, #6d1020);
    color: #fff;
    padding: 70px 40px;
    /* border-radius: 25px; */
}

.cta-box h2{
    font-size:40px;
    margin-bottom:20px;
    color:#fff;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-box .places-btn{
    background:#fff;
    color:#941B2E;
}

.cta-box .places-btn:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

    .amenities-intro{
        padding:60px 0 30px;
    }

    .amenity-card{
        padding:30px 25px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }
}


/* ===== AMENITIES FIX ===== */

.amenities-showcase{
    background:#f5f5f5;
    padding:10px 154px 92px 154px;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.amenity-card{
    background:#ffffff !important;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s ease;
}

.amenity-card:hover{
    transform:translateY(-8px);
}

.amenity-card i{
    font-size:42px;
    color:#941B2E !important;
    margin-bottom:20px;
    display:block;
}

.amenity-card h3{
    color:#222 !important;
    font-size:22px;
    margin-bottom:12px;
    font-family:'Lora',serif;
}

.amenity-card p{
    color:#555 !important;
    line-height:1.8;
    margin:0;
}

/* force visibility */

.amenities-showcase *,
.amenity-card *,
.amenity-card h3,
.amenity-card p{
    opacity:1 !important;
    visibility:visible !important;
}

.section-heading h2, .amenity-card h3, .amenity-card p {
    /* color: white; */
}

.amenity-card h3{
   color:#222 !important;
}

.amenity-card p{
   color:#555 !important;
}

/* =========================
   PREMIUM AMENITIES
========================= */

.container {
    /* width: 1200px; */
    margin: 0 auto;
}

.amenities-section1 {
    /* padding: 50px 122px 90px 122px; */
    background: #fff;
}


.amenities-section{
    padding:50px 122px 50px 122px;
    background:#fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 30px;
    margin-top: 0px;
    /* padding: 89px; */
}

.amenity-category{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.amenity-category:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.amenity-category::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#941B2E;
}

.cat-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#941B2E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.cat-icon i{
    font-size:30px;
}

.amenity-category h3{
    font-size:26px;
    margin-bottom:20px;
    color:#222;
}

.amenity-category ul{
    list-style:none;
    padding:0;
    margin:0;
}

.amenity-category ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.amenity-category ul li::before{
    content:"✓";
    color:#941B2E;
    font-weight:700;
}

.amenity-category ul li:last-child{
    border-bottom:none;
}

.amenities-section .section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1b1b1b !important;
    margin-bottom: 15px;
    display: block;
}

.amenities-section .section-heading .sub-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #941B2E !important;
    margin-bottom: 12px;
}

.amenities-section .section-heading p {
    /* max-width: 900px; */
    margin: 0 auto;
    color: #555 !important;
    line-height: 1.8;
    font-size: 16px;
}


.amenity-category{
    background: #ffffff !important;
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
}

.amenity-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(100px);
    border-radius: 18px;
    width: 100%;
    max-width: 406px;
    padding: 40px 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    text-align: left;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.amenity-category:hover {
    transform: translateY(-8px);
}

.amenity-category:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.amenity-category:nth-child(1) {
    transition-delay: 0.2s;
}

.amenities-showcase *, .amenity-category *, .amenity-category h3, .amenity-category p {
    opacity: 1 !important;
    visibility: visible !important;
}


.amenity-category::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-category:hover::before {
  left: 100%;
}

.amenity-category:hover {
  transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* ==========================
   GALLERY PAGE
========================== */

.gallery-intro{
    padding:80px 0 40px;
    background:#fff;
}

.gallery-section {
    padding: 100px 0 100px;
    /* background: #f7f7f7; */
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    display:block;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.7s;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  /*background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.2), transparent );*/
}

.gallery-overlay span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:.5px;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover{
    transform:translateY(-8px);
}

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:250px;
}

}

.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.15),
    transparent 50%);
    opacity:0;
    transition:.5s;
    z-index:1;
}

.gallery-item:hover::before{
    opacity:1;
}

/* ==========================
   GALLERY INTRO
========================== */

.gallery-intro{
    padding:90px 0 50px;
    background:#ffffff;
    position:relative;
}

.gallery-intro .section-heading{
    text-align:center;
}

.gallery-intro .sub-title{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#941B2E !important;
    margin-bottom:12px;
}

.gallery-intro .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1c1c1c !important;
    margin-bottom:20px;
    line-height:1.2;
}

.gallery-intro .section-heading p{
    max-width:900px;
    margin:0 auto;
    font-size:17px;
    line-height:1.9;
    color:#555 !important;
}

.gallery-intro *{
    opacity:1 !important;
    visibility:visible !important;
}

.gallery-intro .section-heading,
.gallery-intro .section-heading h2,
.gallery-intro .section-heading p,
.gallery-intro .sub-title{
    color:inherit;
}

/* =========================================
   LUXURY GALLERY
========================================= */

.lux-gallery-section{
    padding:1px 0 100px 0;
    background:#fafafa;
    position:relative;
}

.lux-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.lux-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:280px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.lux-gallery-item.large{
    grid-column:span 2;
    height:450px;
}

.lux-gallery-item.wide{
    grid-column:span 2;
}

.lux-gallery-item.tall{
    grid-row:span 2;
    height:580px;
}

.lux-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .8s ease;
}

.gallery-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        transparent
    );
    transform:translateY(100%);
    transition:.5s ease;
}

.gallery-content span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:.5px;
}

.lux-gallery-item:hover img{
    transform:scale(1.12);
}

.lux-gallery-item:hover .gallery-content{
    transform:translateY(0);
}

.lux-gallery-item::after{
    content:'\f00e';
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0);
    width:70px;
    height:70px;
    background:rgba(255,255,255,.95);
    color:#941B2E;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.4s ease;
}

.lux-gallery-item:hover::after{
    transform:translate(-50%,-50%) scale(1);
}

@media(max-width:991px){

.lux-gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.lux-gallery-item.large,
.lux-gallery-item.wide{
    grid-column:span 2;
}

.lux-gallery-item.tall{
    grid-row:auto;
    height:350px;
}

}

@media(max-width:767px){

.lux-gallery-grid{
    grid-template-columns:1fr;
}

.lux-gallery-item,
.lux-gallery-item.large,
.lux-gallery-item.wide,
.lux-gallery-item.tall{
    grid-column:auto;
    height:280px;
}

}


/* =========================================
   GALLERY INTRO FIX
========================================= */

.gallery-intro{
    padding:80px 0 40px;
    background:#fafafa;
    position:relative;
    z-index:2;
}

.gallery-intro .section-heading{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.gallery-intro .sub-title{
    display:inline-block;
    color:#941B2E !important;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.gallery-intro h2{
    color:#1a1a1a !important;
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    font-family:'Lora', serif;
}

.gallery-intro p{
    color:#555 !important;
    font-size:17px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

/* Luxury Gallery Section Heading */

.lux-gallery-section .section-heading{
    text-align:center;
    margin-bottom:60px;
}

.lux-gallery-section .sub-title{
    color:#941B2E !important;
}

.lux-gallery-section h2{
    color:#111 !important;
    margin-top:10px;
}

.lux-gallery-section p{
    color:#666 !important;
    max-width:850px;
    margin:20px auto 0;
}

If the text is still invisible, inspect whether you already have a global CSS rule like:

.section-heading h2,
.section-heading p,
.sub-title{
    color:#fff;
}

.gallery-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.gallery-popup.active{
    display:flex;
}

.gallery-popup img{
    max-width:90%;
    max-height:90vh;
    border-radius:12px;
}

.popup-close{
    position:absolute;
    top:25px;
    right:40px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.gallery-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
}

.gallery-popup.active{
    opacity:1;
    visibility:visible;
}

.gallery-popup img{
    max-width:90%;
    max-height:90vh;
    border-radius:15px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.popup-close{
    position:absolute;
    top:25px;
    right:40px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
    z-index:10;
}

/* ==========================
   ROOMS RESPONSIVE FIX
========================== */

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(267px,1fr));
    gap:30px;
}

.room-card{
    width:100%;
    min-width:0;
}

.room-image{
    width:100%;
    overflow:hidden;
}

.room-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.room-info h3,
.room-hidden h3{
    font-size:22px;
    line-height:1.4;
}

/* Tablet */
@media(max-width:991px){

.rooms-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.room-image img{
    height:240px;
}

}

/* Mobile */
@media(max-width:768px){

.rooms-section{
    padding:60px 15px;
}

.rooms-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.room-card{
    width:100%;
}

.room-image img{
    height:220px;
}

.room-info{
    padding:15px;
}

.room-info h3{
    font-size:18px;
}

.room-hidden{
    padding:20px;
}

.room-hidden p{
    font-size:14px;
    line-height:1.7;
}

.btn-book{
    width:100%;
    text-align:center;
    display:block;
}

}

/*============================================================*/

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .sticky-side-header{
        display:none !important;
    }

    .social-icons{
        display:none;
    }

    .main-nav{
        display:none;
    }

    .hamburger{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    .container{
        width:90%;
        max-width:100%;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:767px){

    .topbar{
        padding:10px;
    }

    .topbar-container{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .topbar-left,
    .topbar-right{
        width:100%;
        justify-content:center;
    }

    .header-container{
        padding:10px 15px;
    }

    .logo-img{
        max-width:180px;
        height:auto;
    }

    .inner-page-hero{
        min-height:280px;
    }

    .inner-page-hero h1{
        font-size:34px;
        line-height:42px;
    }

    .hero-tag{
        font-size:15px;
    }

    .section-heading h2{
        font-size:32px;
        line-height:40px;
    }

    .section-heading p{
        font-size:16px;
        line-height:28px;
    }

    .amenities-grid{
        grid-template-columns:1fr !important;
        gap:20px;
    }

    .amenity-category{
        padding:25px;
    }

    .amenity-category h3{
        font-size:22px;
    }

    .cta-box{
        padding:30px 20px;
    }

    .cta-box h2{
        font-size:32px;
        line-height:40px;
    }

    .accessibility-bar{
        padding:15px;
    }

    .accessibility-bar p{
        font-size:15px;
        line-height:26px;
    }

}

@media(max-width:767px){

    .bw-footer-middle{
        display:flex;
        flex-direction:column;
        gap:35px;
    }

    .bw-footer-col{
        width:100% !important;
        text-align:center;
    }

    .bw-footer-links-columns{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .bw-footer-bottom{
        text-align:center;
    }

    .bw-footer-bottom-links{
        display:flex;
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

}

@media(max-width:767px){

.cookie-content{
    padding:15px;
}

.cookie-content p{
    font-size:14px;
    line-height:24px;
}

.cookie-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.cookie-btn{
    width:100%;
}

}

@media (max-width: 767px){

.amenities-showcase{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px;
}

.amenity-category{
    width:100%;
    padding:25px 20px;
    box-sizing:border-box;
}

}

@media (max-width:767px){

.inner-page-hero{
    min-height:280px;
}

.inner-page-hero h1{
    font-size:34px;
    line-height:42px;
}

.hero-tag{
    font-size:14px;
}

}

@media(max-width:767px){

.bw-footer-middle{
    display:flex;
    flex-direction:column;
}

.bw-footer-col{
    width:100%;
    text-align:center;
    margin-bottom:30px;
}

.bw-footer-links-columns{
    display:block;
}

.bw-footer-links-columns ul{
    width:100%;
    margin-bottom:15px;
}

}

@media(max-width:767px){

.accessibility-bar{
    padding:15px;
}

.accessibility-bar p{
    font-size:14px;
    line-height:24px;
}

}

@media(max-width:767px){

.mobile-address,
.topbar-left span{
    word-break:break-word;
}

}




/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */
@media (max-width: 991px){

  /* Header */
  .main-nav{
    display:none !important;
  }

  .hamburger{
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    z-index:9999;
  }

  .social-icons{
    display:none;
  }

  .logo-img{
    max-width:180px;
    height:auto;
  }

  /* Top Bar */
  .topbar-container{
    flex-direction:column;
    gap:8px;
    text-align:center;
    padding:10px;
  }

  .topbar-left,
  .topbar-right{
    justify-content:center;
  }

  /* Hero Banner */
  .inner-banner,
  .hero-banner,
  .page-banner{
    min-height:280px !important;
    padding:80px 20px;
  }

  .inner-banner h1,
  .hero-banner h1,
  .page-banner h1{
    font-size:32px !important;
    line-height:1.2;
  }

  /* Amenity Content */
  .amenities-container,
  .amenities-wrapper,
  .amenity-content{
    width:100%;
    padding:20px;
  }

  .amenities-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }

  .amenity-card{
    width:100%;
    margin:0;
  }

  /* Images */
  img{
    max-width:100%;
    height:auto;
  }

  /* Footer */
  .bw-footer-middle{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  .bw-footer-col{
    width:100%;
    text-align:center;
  }

  .bw-footer-links-columns{
    flex-direction:column;
    gap:15px;
  }

  /* Tables */
  table{
    display:block;
    overflow-x:auto;
    width:100%;
  }

  /* General Containers */
  .container{
    width:100%;
    padding-left:15px;
    padding-right:15px;
  }

}

/* Extra Small Phones */
@media (max-width:576px){

  h1{
    font-size:28px !important;
  }

  h2{
    font-size:24px !important;
  }

  h3{
    font-size:20px !important;
  }

  p{
    font-size:15px;
    line-height:1.7;
  }

  .logo-img{
    max-width:150px;
  }

}

@media (max-width: 767px){

.main-header{
    padding:10px 15px;
}

.logo-img{
    max-width:180px;
    height:auto;
}

.hamburger{
    display:flex !important;
    font-size:28px;
    z-index:9999;
}

.main-nav{
    display:none;
}

.social-icons{
    display:none;
}

}

@media (max-width:767px){

.amenities-grid,
.amenities-row{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.amenity-card{
    width:100%;
}

}

@media (max-width:767px){

.hero-title{
    font-size:32px;
    line-height:1.2;
}

.hero-desc{
    font-size:15px;
}

}

@media (max-width:767px){

.bw-footer-middle{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.bw-footer-col{
    width:100%;
}

}

img{
    max-width:100%;
    height:auto;
}

*{
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}


@media (max-width:768px){

.topbar-container{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.topbar-left,
.topbar-right{
    width:100%;
    justify-content:center;
}

.topbar-left span{
    font-size:13px;
    line-height:1.5;
}

}

@media (max-width:768px){

.logo-img{
    max-width:180px;
    height:auto;
}

}

@media (max-width:480px){

.logo-img{
    max-width:140px;
}

}

@media (max-width:768px){

.inner-banner h1,
.page-banner h1,
.banner-content h1{
    font-size:32px !important;
    line-height:1.2;
}

}

@media (max-width:480px){

.inner-banner h1,
.page-banner h1,
.banner-content h1{
    font-size:26px !important;
}

}

@media (max-width:768px){

.amenities-grid{
    grid-template-columns:1fr !important;
    gap:20px;
}

.amenity-card{
    width:100%;
}

}

img{
    max-width:100%;
    height:auto;
    display:block;
}

@media (max-width:768px){

.container{
    width:92%;
    padding-left:0;
    padding-right:0;
}

}

@media (max-width:768px){

.bw-footer-middle{
    grid-template-columns:1fr !important;
    gap:30px;
    text-align:center;
}

.bw-footer-links-columns{
    flex-direction:column;
    gap:15px;
}

}

*{
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
    width:100%;
}

img,
iframe,
video{
    max-width:100%;
    height:auto;
}

@media (max-width:768px){

.amenities-grid,
.amenities-container,
.amenities-wrapper{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px !important;
}

.amenity-card{
    width:100% !important;
    margin:0 !important;
}

}

@media (max-width:480px){

.banner-content h1,
.page-title,
.inner-banner h1{
    font-size:28px !important;
    line-height:1.2 !important;
}

.banner-content p{
    font-size:14px !important;
}

}

@media (max-width:768px){

.about-content,
.amenities-content,
.section-row{
    flex-direction:column !important;
}

.about-image,
.about-text,
.content-left,
.content-right{
    width:100% !important;
}

}

img{
    max-width:100%;
    height:auto;
    display:block;
}

html,
body{
    overflow-x:hidden !important;
    width:100%;
}

*{
    box-sizing:border-box;
}


.amenities-section1 .container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
    box-sizing:border-box;
}

.amenities-card{
    width:100%;
}

@media (max-width:768px){

.amenities-section1{
    flex-direction:column;
}

.amenities-left,
.amenities-right{
    width:100%;
    max-width:100%;
}

}

.amenities-section1 img{
    width:100%;
    height:auto;
    display:block;
}

@media (max-width:480px){

.amenities-section1 h2{
    font-size:28px;
    line-height:1.2;
}

.amenities-section1 p{
    font-size:15px;
    line-height:1.7;
}

}

html,
body{
    overflow-x:hidden;
    width:100%;
}
*{
    box-sizing:border-box;
}
@media (max-width:575px){

.amenities-section1{
    padding:50px 15px;
}

.amenities-section1 .row{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.amenities-section1 .col,
.amenities-section1 .column{
    width:100% !important;
    flex:0 0 100% !important;
    max-width:100% !important;
}

}

@media (max-width: 991px){

.amenities-showcase{
    padding:60px 20px;
}

.amenities-showcase .container,
.amenities-showcase-inner{
    width:100%;
    max-width:100%;
}

}

@media (max-width: 767px){

.amenities-showcase{
    padding:50px 15px;
}

.amenities-showcase-content,
.amenities-showcase-row,
.amenities-showcase-inner{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.amenities-showcase-image,
.amenities-showcase-text,
.amenities-showcase-left,
.amenities-showcase-right{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
}

.amenities-showcase img{
    width:100%;
    height:auto;
    display:block;
}

.amenities-showcase h2{
    font-size:32px;
    line-height:1.2;
}

}

@media (max-width: 575px){

.amenities-showcase{
    padding:40px 12px;
}

.amenities-showcase h2{
    font-size:26px;
    line-height:1.2;
}

.amenities-showcase h3{
    font-size:20px;
}

.amenities-showcase p{
    font-size:15px;
    line-height:1.7;
}

.amenities-showcase .btn,
.amenities-showcase .button{
    width:100%;
    text-align:center;
}

}

/* ===== Amenities Section Mobile Fix ===== */

@media (max-width: 767px){

.amenities-section{
    padding:50px 15px;
}

.amenities-section .container{
    width:100%;
    max-width:100%;
    padding:0;
}

.amenities-section .row,
.amenities-section .amenities-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.amenities-section .left-column,
.amenities-section .right-column,
.amenities-section .content,
.amenities-section .image-box{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
}

.amenities-section img{
    width:100%;
    height:auto;
    display:block;
}

.amenities-section h2{
    font-size:28px;
    line-height:1.2;
}

.amenities-section p{
    font-size:15px;
    line-height:1.7;
}

}

/* =========================
   Attraction Page Mobile Fix
   ========================= */

@media (max-width: 991px){

  .attraction-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
  }

  .attraction-card{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .attraction-image img{
    width:100%;
    height:auto;
    display:block;
  }

  .attraction-content{
    padding:20px;
  }

  .attraction-content h2,
  .attraction-content h3{
    font-size:24px;
    line-height:1.3;
  }
  .attraction-showcase {
    padding: 0px;
    background: #fff;
}
.attraction-item {
    display: block;
    align-items: center;
    gap: 60px;
    margin-bottom: 0px;
    padding-bottom: 32px;
}
}

@media (max-width:767px){

  .attractions-section{
    padding:50px 15px;
  }

  .attraction-content{
    padding:15px;
  }

  .attraction-content h2,
  .attraction-content h3{
    font-size:22px;
  }

  .attraction-content p{
    font-size:15px;
    line-height:1.7;
  }
  .attraction-showcase {
    padding: 0px;
    background: #fff;
}
.attraction-item {
    display: block;
    align-items: center;
    gap: 60px;
    margin-bottom: 0px;
    padding-bottom: 32px;
}
}

@media (max-width:480px){

  .attraction-content h2,
  .attraction-content h3{
    font-size:20px;
  }

  .attraction-content p{
    font-size:14px;
  }

  .attraction-image{
    height:auto;
  }

  .attraction-image img{
    width:100%;
    height:auto;
    object-fit:cover;
  }
  .attraction-showcase {
    padding: 0px;
    background: #fff;
}
.attraction-item {
    display: block;
    align-items: center;
    gap: 60px;
    margin-bottom: 0px;
    padding-bottom: 32px;
}
}

/* ====================================
   INNER PAGE HERO RESPONSIVE FIX
==================================== */

.inner-page-hero{
    min-height:500px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
    background-position:center center;
    background-size:cover;
}

.inner-page-hero .hero-content{
    width:100%;
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.inner-page-hero h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:15px;
}

.inner-page-hero p{
    font-size:18px;
    line-height:1.8;
}

/* Tablet */
@media (max-width:991px){

    .inner-page-hero{
        min-height:400px;
        padding:110px 20px 60px;
    }

    .inner-page-hero h1{
        font-size:42px;
    }

    .inner-page-hero p{
        font-size:16px;
    }
}

/* Mobile */
@media (max-width:767px){

    .inner-page-hero{
        min-height:320px;
        padding:100px 15px 50px;
    }

    .inner-page-hero h1{
        font-size:30px;
        line-height:1.3;
    }

    .inner-page-hero p{
        font-size:15px;
        line-height:1.7;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .inner-page-hero{
        min-height:280px;
        padding:90px 15px 40px;
    }

    .inner-page-hero h1{
        font-size:24px;
        margin-bottom:10px;
    }

    .inner-page-hero p{
        font-size:14px;
    }
}
