@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   1. COLOR DESIGN VARIABLES & CORE SYSTEM
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1c1c1c;
  --bg-card-hover: #262626;
  --gold-primary: #d8b56d;
  --gold-dark: #b8954d;
  --gold-light: #f5dfb8;
  --gold-glow: rgba(216, 181, 109, 0.2);
  --gold-glow-strong: rgba(216, 181, 109, 0.4);
  --text-primary: #f5f5f5;
  --text-secondary: #b3b3b3;
  --text-muted: #777777;
  --white: #ffffff;
  
  /* Contrast light themes for specific sections */
  --bg-light: #fdfbf7;
  --bg-light-card: #ffffff;
  --text-dark-primary: #1c1c1c;
  --text-dark-secondary: #4a4a4a;
  
  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Grid & Spacing */
  --container-width: 1200px;
}

/* ==========================================================================
   2. CORE RESETS & GLOBAL STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Selection highlight */
::selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
}

p {
  font-weight: 300;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.gold-text {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }

/* ==========================================================================
   4. LAYOUT COMPONENTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-secondary {
  background-color: var(--bg-secondary);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark-primary);
}
.section-light p {
  color: var(--text-dark-secondary);
}
.section-light h2, .section-light h3 {
  color: var(--text-dark-primary);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   5. NAVIGATION HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(216, 181, 109, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  padding: 8px 0;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin: 0 18px;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  white-space: nowrap;
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links li.active a {
  color: var(--gold-primary);
}

.nav-links li.active a::after {
  width: 100%;
}

/* Call-to-Action button in navbar */
.nav-btn {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary) !important;
  font-family: var(--font-serif);
  font-weight: 700;
  padding: 8px 18px !important;
  border-radius: 3px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(216, 181, 109, 0.2);
  border: 1px solid var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background: transparent;
  color: var(--gold-primary) !important;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-btn::after {
  display: none !important;
}

/* Hamburger toggle for mobile */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   6. HERO SECTION & VIDEO BACKGROUNDS
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video-container {
  display: none !important;
}

.subpage-hero {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 160px !important;
  padding-bottom: 80px !important;
  border-bottom: 1px solid rgba(216, 181, 109, 0.15);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide portrait video on desktop */
.video-portrait {
  display: none;
}

.hero-overlay {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(30px);
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes heroFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Standard Premium Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 20px rgba(216, 181, 109, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-primary);
  box-shadow: 0 4px 25px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid var(--text-secondary);
  border-radius: 10px;
  position: relative;
  margin-top: 10px;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 5px; opacity: 1; }
  100% { top: 15px; opacity: 0; }
}

/* ==========================================================================
   7. KEY STATISTICS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(216, 181, 109, 0.2);
  border-bottom: 1px solid rgba(216, 181, 109, 0.2);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

/* ==========================================================================
   8. CARD SYSTEMS AND GRID COMPONENT
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Premium Hover-Zoom Card */
.premium-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px var(--gold-glow);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-card:hover .card-img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-link::after {
  content: '→';
  transition: var(--transition-fast);
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* ==========================================================================
   9. CUSTOM ACCORDION / FAQS
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

.faq-item-light {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question-light {
  color: var(--text-dark-primary);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  padding-right: 30px;
}

.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust according to content */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   10. MODAL SYSTEMS
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-primary);
  border-radius: 4px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1200;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal.active {
  display: flex;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-primary);
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--gold-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

/* ==========================================================================
   11. PREMIUM FORM DESIGNS
   ========================================================================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--text-primary);
  padding: 12px 15px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
footer {
  background-color: #050505;
  border-top: 1px solid rgba(216, 181, 109, 0.15);
  padding: 80px 0 30px 0;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px var(--gold-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. SCROLL ANIMATION CLASSES
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   14. RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
  
  .stat-item:nth-child(3)::after {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  /* Video background swap on mobile devices */
  .video-landscape {
    display: none;
  }
  
  .video-portrait {
    display: block;
  }
  
  /* Navbar triggers mobile view */
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--gold-primary);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 20px 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   15. ADVANCED MOBILE RESPONSIVENESS OVERRIDES (COLLAPSE INLINE GRIDS)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* Override inline 4-column elements to 2-columns on tablets */
  #amenities-icons-grid[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

@media screen and (max-width: 768px) {
  /* Collapse ALL grid layouts with inline style grid-template-columns to 1 column on mobile */
  div[style*="grid-template-columns"]:not(.navbar),
  section[style*="grid-template-columns"],
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Specific reset for inline distances */
  #location-distances[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Specific reset for amenities grid to 1 column */
  #amenities-icons-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  /* Collapse horizontal flex cards (Banquets, Dining cards) to vertical column */
  .premium-card[style*="display: flex"][style*="flex-direction: row"],
  div[style*="display: flex"][style*="flex-direction: row"]:not(.navbar) {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .premium-card[style*="display: flex"] img,
  div[style*="display: flex"] img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
  }

  .premium-card[style*="display: flex"] div[style*="width: 60%"],
  div[style*="display: flex"] div[style*="width: 60%"] {
    width: 100% !important;
    padding: 25px !important;
  }

  /* Align center for visual text columns on mobile */
  #intro-text-column,
  #nye-text-block,
  #vip-text,
  #location-text,
  #about-story-text,
  #about-sister-text,
  #dining-lecielo-text,
  #dining-smores-text,
  #dining-4t1-text,
  #dining-arc-text,
  #celebrate-halls-text,
  #celebrate-lawns-text {
    text-align: center !important;
  }

  /* Center the gold dividers */
  #intro-text-column div[style*="width: 60px"],
  #about-story-text div[style*="width: 60px"],
  #about-sister-text div[style*="width: 60px"],
  #dining-lecielo-text div[style*="width: 60px"],
  #dining-smores-text div[style*="width: 60px"],
  #dining-4t1-text div[style*="width: 60px"],
  #dining-arc-text div[style*="width: 60px"],
  #celebrate-halls-text div[style*="width: 60px"],
  #celebrate-lawns-text div[style*="width: 60px"] {
    margin: 0 auto 25px auto !important;
  }
  
  /* Restructure room policies panel grid */
  #rooms-policies-panel {
    padding: 30px !important;
  }
  
  #rooms-policies-panel div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}


/* ==========================================================================
   16. PARALLAX BACKDROP SECTIONS
   ========================================================================== */
.parallax-section {
  position: relative;
  background-image: linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)), url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(216, 181, 109, 0.15);
  border-bottom: 1px solid rgba(216, 181, 109, 0.15);
}

@media screen and (min-width: 1025px) {
  .parallax-section {
    background-attachment: fixed;
  }
}


/* ==========================================================================
   17. 9/10 LUXURY POLISH & INTERACTIVE CAROUSELS
   ========================================================================== */
.card-slider {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.slider-img.active {
  opacity: 1;
  z-index: 2;
}

.card-slider:hover .slider-img.active {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(216, 181, 109, 0.3);
  color: var(--gold-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  opacity: 0; /* hidden by default, visible on hover */
}

.card-slider:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background-color: var(--gold-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  border-color: var(--gold-primary);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dots .dot.active {
  background-color: var(--gold-primary);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* Typography contrast adjustments on background.png */
.hero-content h1,
.subpage-hero h1,
.parallax-section h2 {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.hero-content p,
.subpage-hero p,
.parallax-section p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Button ripple waves effect */
.btn-primary, .btn-outline, .nav-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-outline::before, .nav-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::before, .btn-outline:hover::before, .nav-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}


/* ==========================================================================
   18. ADVANCED LUXURY FEATURES (SMOOTH SCROLL, TRANSITIONS, MAP HOTSPOTS)
   ========================================================================== */
/* Smooth Scroll overrides */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Page Transition Overlay */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.page-transition-overlay.fade-out {
  opacity: 0;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal-container {
  width: 85%;
  max-width: 960px;
  aspect-ratio: 16/9;
  position: relative;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 40px var(--gold-glow);
}
.video-modal-container video {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2rem;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.video-modal-close:hover {
  color: var(--gold-primary);
}

/* Map Hotspots */
.map-hotspot-wrapper {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: visible;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.map-hotspot-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.map-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 0 rgba(216, 181, 109, 0.4);
  animation: pulse-hotspot 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-hotspot::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--bg-primary);
  border-radius: 50%;
}
@keyframes pulse-hotspot {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 181, 109, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(216, 181, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 181, 109, 0);
  }
}
.map-hotspot-tooltip {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 10px) scale(0.95);
  width: 240px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-primary);
  padding: 15px;
  border-radius: 4px;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 20;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  text-align: left;
}
.map-hotspot:hover .map-hotspot-tooltip {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
.map-hotspot-tooltip h4 {
  color: var(--gold-primary);
  margin-bottom: 5px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-transform: uppercase;
}
.map-hotspot-tooltip p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}
