/* ==========================================================================
   THE BBRO - LUXURY POOLSIDE VENUE
   Cinematic Frontend Stylesheet
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  /* Colors */
  --bg-obsidian: #06090d;
  --bg-obsidian-rgb: 6, 9, 13;
  --bg-card: rgba(13, 20, 30, 0.65);
  --bg-card-hover: rgba(20, 30, 45, 0.85);
  
  --gold-primary: #dca376;
  --gold-primary-rgb: 220, 163, 118;
  --gold-accent: #ff8c42;
  --gold-accent-rgb: 255, 140, 66;
  --magenta-accent: #ff006e;
  --magenta-accent-rgb: 255, 0, 110;
  --cyan-accent: #00d9ff;
  --cyan-accent-rgb: 0, 217, 255;
  
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #475569;
  
  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-title: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Layout */
  --navbar-height: 80px;
  --max-width: 1400px;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-obsidian);
}

body.locked {
  overflow: hidden;
  height: 100vh;
}

/* --- Premium Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-primary-rgb), 0.3);
  border-radius: 4px;
  border: 2px solid var(--bg-obsidian);
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--gold-primary-rgb), 0.7);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- Glassmorphic & Neon Utility Classes --- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.glow-text-gold {
  text-shadow: 0 0 10px rgba(var(--gold-primary-rgb), 0.45), 
               0 0 20px rgba(var(--gold-primary-rgb), 0.2);
}

.glow-text-cyan {
  text-shadow: 0 0 10px rgba(var(--cyan-accent-rgb), 0.4), 
               0 0 20px rgba(var(--cyan-accent-rgb), 0.2);
}

.glow-text-magenta {
  text-shadow: 0 0 10px rgba(var(--magenta-accent-rgb), 0.4), 
               0 0 20px rgba(var(--magenta-accent-rgb), 0.2);
}

/* --- Floating/Levitation Animations --- */
.float-slow {
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.float-medium {
  animation: floatMedium 4s ease-in-out infinite alternate;
}

.float-fast {
  animation: floatFast 3s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1.5deg); }
}

@keyframes floatMedium {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatFast {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

/* --- Layout Wrappers --- */
.section {
  padding: 8rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--gold-primary);
  font-style: italic;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* --- Audio Wave Button Component --- */
.sound-toggle-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: rgba(13, 20, 30, 0.85);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.sound-toggle-btn:hover {
  border-color: rgba(var(--gold-primary-rgb), 0.7);
  box-shadow: 0 0 15px rgba(var(--gold-primary-rgb), 0.3);
  transform: translateY(-3px);
}

.sound-toggle-btn span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-family: var(--font-title);
  font-weight: 500;
}

.audio-waves {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.audio-waves .wave-bar {
  width: 2px;
  height: 3px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.audio-waves.playing .wave-bar {
  animation: wavePulse 1.2s ease-in-out infinite alternate;
}

.audio-waves.playing .wave-bar:nth-child(1) { animation-delay: 0.1s; }
.audio-waves.playing .wave-bar:nth-child(2) { animation-delay: 0.4s; }
.audio-waves.playing .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-waves.playing .wave-bar:nth-child(4) { animation-delay: 0.6s; }
.audio-waves.playing .wave-bar:nth-child(5) { animation-delay: 0.3s; }

@keyframes wavePulse {
  0% { height: 3px; }
  100% { height: 16px; }
}

/* --- Entrance Visual Overlay --- */
.entrance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.5s;
  pointer-events: all;
  overflow: hidden;
}

.entrance-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entrance-corridor {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(var(--gold-primary-rgb), 0.05) 0%, rgba(0,0,0,1) 70%);
  opacity: 0;
  transform: scale(0.85);
  animation: corridorZoom 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 1;
}

.entrance-wall-lights {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.wall-light {
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, transparent, rgba(var(--gold-primary-rgb), 0.4), transparent);
  box-shadow: 0 0 30px rgba(var(--gold-primary-rgb), 0.3);
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-50px);
}

.wall-light.left {
  animation: lightFadeIn 3.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.wall-light.right {
  animation: lightFadeIn 3.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

.entrance-title-wrap {
  position: relative;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: entranceTextReveal 3.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.entrance-subtitle {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.entrance-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--gold-primary), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

.entrance-sound-prompt {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  transition: var(--transition-smooth);
}

.entrance-sound-prompt:hover {
  background: rgba(var(--gold-primary-rgb), 0.08);
  border-color: rgba(var(--gold-primary-rgb), 0.4);
  color: var(--text-light);
  transform: scale(1.05);
}

.skip-intro {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.skip-intro:hover {
  color: var(--text-muted);
}

@keyframes corridorZoom {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  30% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(8px);
  }
}

@keyframes lightFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scaleY(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes entranceTextReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* ==========================================================================
   A. NAVBAR STYLING
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(6, 9, 13, 0.85);
  height: 70px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(var(--gold-primary-rgb), 0.15);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Elegant gold ring circular logo */
.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(var(--gold-primary-rgb), 0.2);
  transition: var(--transition-spring);
}

.logo-circle span {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.nav-logo:hover .logo-circle {
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
  transform: rotate(15deg) scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.glow-btn {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  border: 1px solid var(--gold-primary);
  color: var(--text-light);
  background: transparent;
  transition: var(--transition-spring);
}

.glow-btn:hover {
  background: rgba(var(--gold-primary-rgb), 0.15);
  box-shadow: 0 0 15px rgba(var(--gold-primary-rgb), 0.35);
  transform: translateY(-2px);
  border-color: var(--gold-accent);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   B. HERO SECTION STYLING
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-obsidian);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--bg-obsidian-rgb), 0.2) 0%, rgba(var(--bg-obsidian-rgb), 0.85) 80%);
  z-index: 2;
  pointer-events: none;
}

.floating-asset {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.5s ease-out;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-title {
  font-size: 4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 40%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-cta-wrap {
  display: flex;
  gap: 1.5rem;
}

.glow-btn-cyan {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: 40px;
  border: 1px solid var(--cyan-accent);
  background: rgba(var(--cyan-accent-rgb), 0.05);
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(var(--cyan-accent-rgb), 0.15);
  transition: var(--transition-spring);
}

.glow-btn-cyan:hover {
  background: rgba(var(--cyan-accent-rgb), 0.2);
  box-shadow: 0 0 25px rgba(var(--cyan-accent-rgb), 0.45);
  transform: translateY(-3px);
  border-color: #fff;
}

.hero-secondary-btn {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  transition: var(--transition-spring);
}

.hero-secondary-btn:hover {
  border-color: rgba(var(--gold-primary-rgb), 0.5);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

/* Scroll Bouncing Prompt */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.scroll-indicator i {
  font-size: 0.9rem;
  color: var(--gold-primary);
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ==========================================================================
   C. ABOUT SECTION STYLING
   ========================================================================== */
.grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-desc {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-signature-quote {
  margin-top: 2rem;
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.5rem;
}

.quote-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.quote-author {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

/* Overlapping visuals panel */
.visuals-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.main-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: var(--transition-smooth);
}

.sub-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: var(--transition-smooth);
}

.premium-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-image-container:hover .premium-photo,
.sub-image-container:hover .premium-photo {
  transform: scale(1.1);
}

/* Glow lines around images */
.neon-border-glow-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.3);
  box-shadow: inset 0 0 20px rgba(var(--gold-primary-rgb), 0.2);
  pointer-events: none;
  border-radius: 12px;
}

.neon-border-glow-cyan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(var(--cyan-accent-rgb), 0.3);
  box-shadow: inset 0 0 20px rgba(var(--cyan-accent-rgb), 0.2);
  pointer-events: none;
  border-radius: 12px;
}

.floating-accent {
  position: absolute;
  top: 40%;
  left: -20px;
  z-index: 1;
}

.accent-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--gold-primary-rgb), 0.3);
}

/* ==========================================================================
   D. AMENITIES/HIGHLIGHTS STYLING
   ========================================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.highlight-card:hover .card-bg-image {
  transform: scale(1.08) translateZ(10px);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 9, 13, 0.95) 0%, rgba(6, 9, 13, 0.4) 50%, rgba(6, 9, 13, 0) 100%);
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  transform: translateZ(30px);
}

.card-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  transition: var(--transition-spring);
}

.highlight-card[data-glow="cyan"] .card-icon { color: var(--cyan-accent); }
.highlight-card[data-glow="magenta"] .card-icon { color: var(--magenta-accent); }

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Card Hover glow-borders */
.card-glow-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 4;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.highlight-card:hover .card-glow-element.border-cyan {
  border-color: rgba(var(--cyan-accent-rgb), 0.5);
  box-shadow: inset 0 0 20px rgba(var(--cyan-accent-rgb), 0.15), 0 0 30px rgba(var(--cyan-accent-rgb), 0.2);
}

.highlight-card:hover .card-glow-element.border-gold {
  border-color: rgba(var(--gold-primary-rgb), 0.5);
  box-shadow: inset 0 0 20px rgba(var(--gold-primary-rgb), 0.15), 0 0 30px rgba(var(--gold-primary-rgb), 0.2);
}

.highlight-card:hover .card-glow-element.border-magenta {
  border-color: rgba(var(--magenta-accent-rgb), 0.5);
  box-shadow: inset 0 0 20px rgba(var(--magenta-accent-rgb), 0.15), 0 0 30px rgba(var(--magenta-accent-rgb), 0.2);
}

/* ==========================================================================
   E. CUISINE / MENU SHOWCASE STYLING
   ========================================================================== */
.menu-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.menu-tab-btn {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.2);
  background: transparent;
  color: var(--text-muted);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-tab-btn:hover {
  color: var(--text-light);
  border-color: var(--gold-primary);
}

.menu-tab-btn.active {
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  font-weight: 800;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(var(--gold-primary-rgb), 0.4);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-primary-rgb), 0.4);
  box-shadow: 0 12px 30px rgba(var(--gold-primary-rgb), 0.08);
}

.menu-item-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-card:hover .menu-item-img {
  transform: scale(1.08);
}

.menu-item-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(var(--bg-obsidian-rgb), 0.8);
  border: 1px solid var(--gold-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-title);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.menu-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.menu-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.menu-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   F. GALLERY STYLING
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--bg-obsidian-rgb), 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-hover-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(15px);
  transition: var(--transition-spring);
}

.gallery-item:hover .gallery-hover-content {
  transform: translateY(0);
}

.gallery-hover-content i.fa-instagram {
  font-size: 2.25rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.likes-count {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.likes-count i {
  color: var(--magenta-accent);
  margin-right: 5px;
}

.caption-snippet {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   G. TESTIMONIALS STYLING
   ========================================================================== */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 2.5rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  min-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars-row i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.reviewer-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.reviewer-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dots .dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(var(--gold-primary-rgb), 0.5);
}

/* ==========================================================================
   H. BOOKING & MAP STYLING
   ========================================================================== */
.booking-form-panel {
  padding: 3.5rem;
}

.booking-form-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-wrap label {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  background: rgba(6, 9, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(var(--gold-primary-rgb), 0.4);
  background: rgba(6, 9, 13, 0.85);
}

/* Glow lines below input on focus */
.input-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(var(--gold-primary-rgb), 0.5);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.reservation-form input:focus ~ .input-glow,
.reservation-form select:focus ~ .input-glow,
.reservation-form textarea:focus ~ .input-glow {
  width: 100%;
  left: 0;
}

.submit-btn {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--gold-primary);
  background: rgba(var(--gold-primary-rgb), 0.05);
  color: #fff;
  cursor: pointer;
  transition: var(--transition-spring);
}

.submit-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  font-weight: 800;
  box-shadow: 0 0 25px rgba(var(--gold-primary-rgb), 0.35);
  transform: translateY(-2px);
}

/* Booking Success Screen overlay */
.booking-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-obsidian);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 10;
}

.booking-success.active {
  opacity: 1;
  visibility: visible;
}

.booking-success i {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  animation: floatMedium 3s ease-in-out infinite alternate;
}

.booking-success h3 {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: #fff;
}

/* Info and Map Layout */
.booking-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.info-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.info-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.phone-link a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
}

.phone-link a:hover {
  color: var(--cyan-accent);
}

.map-container-wrap {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Dark Styling on Google Map */
.styled-dark-map {
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%);
}

/* ==========================================================================
   I. FOOTER STYLING
   ========================================================================== */
.footer-wrap {
  background-color: #030508;
  border-top: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  padding: 5rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links h3, .footer-social h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links li a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-social p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-spring);
}

.social-icons a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(var(--gold-primary-rgb), 0.35);
  transform: translateY(-3px);
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: var(--text-dark);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 20, 30, 0.85);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.3);
  color: var(--gold-primary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-spring);
  z-index: 998;
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  border-color: rgba(var(--gold-primary-rgb), 0.7);
  box-shadow: 0 0 15px rgba(var(--gold-primary-rgb), 0.3);
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL REVEAL CLASSSES (IntersectionObserver triggers)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .section {
    padding: 6rem 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .grid-container {
    gap: 3rem;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
  
  /* Mobile Menu Toggle Navigation Override */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background: rgba(6, 9, 13, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 4rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-link {
    font-size: 1.15rem;
  }
  
  .nav-btn {
    display: none; /* Hide reserve button inside desktop header menu on mobile, or put it inside mobile menu */
  }
  
  /* Animate mobile toggle menu icons */
  .mobile-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Rest of page layout modifications */
  .grid-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .visuals-wrapper {
    height: 380px;
  }
  
  .main-image-container {
    height: 300px;
  }
  
  .sub-image-container {
    height: 200px;
    width: 50%;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-cta-wrap {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .glow-btn-cyan, .hero-secondary-btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-form-panel {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
