:root {
  /* Classic Billiard Club Brown/Wood Theme */
  --bg-color: #1A0F0A; /* Deep mahogany brown */
  --text-color: #EAE6DA; /* Soft cream/off-white */
  --text-muted: #A39B95; /* Dimmed warm gray */
  --accent-red: #C1121F; /* Classic felt red */
  --accent-red-hover: #780000;
  --accent-gold: #D4AF37; /* Warm metallic gold */
  --accent-green: #D4AF37; /* Using gold instead of green for headings */
  --glass-bg: rgba(42, 27, 20, 0.7); /* Dark brown tinted glass */
  --glass-bg-solid: #22150E; /* Solid dark wood */
  --glass-border: rgba(197, 160, 89, 0.15); /* Subtle gold rim */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

h2 {
  font-size: 2.8rem;
}

p {
  text-align: justify;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-gold { color: var(--accent-gold) !important; }
.text-red { color: var(--accent-red) !important; }
.text-green { color: var(--accent-green) !important; }
.text-center { text-align: center; }
.section-padding { padding: 5rem 0; }
.mt-2 { margin-top: 2rem; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(17, 24, 20, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-links a:not(.btn-primary) {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.navbar-links a:not(.btn-primary):hover {
  color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
  background: var(--accent-red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  color: white;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-sticky-mobile {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #25D366; /* WhatsApp Green */
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  width: 90%;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-sticky-mobile { display: block; }
  .navbar-links { display: none; }
  .navbar-logo { margin: 0 auto; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px; 
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(17,24,20,0.4) 0%, rgba(17,24,20,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  max-width: 850px;
  text-align: center;
}

.hero .glass-panel {
  border-color: rgba(197, 160, 89, 0.3); /* Stronger gold rim for hero */
}

.hero .glass-panel h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: #FFFFFF;
}

.hero .glass-panel p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--glass-bg-solid);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
}

.trust-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.stars { color: var(--accent-gold); letter-spacing: 2px; }

/* Grid Offerings */
.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .grid-2x2 { grid-template-columns: 1fr 1fr; }
}

.glass-card {
  background: var(--glass-bg-solid);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.glass-card h3 {
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.glass-card .price {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-red);
}

/* Booking Steps */
.booking {
  background: var(--glass-bg-solid);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: var(--accent-gold);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
  border: 2px solid rgba(255,255,255,0.1);
}

.step-card h4 {
  font-size: 1.4rem;
  color: #FFFFFF;
}

.step-card p {
  color: var(--text-muted);
}

/* Location */
.location {
  background: url('assets/hero_bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 15, 10, 0.85); /* Dark brown overlay */
}

.location .container {
  position: relative;
  z-index: 2;
}

footer {
  padding: 2rem 0;
  background: #120A07;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--glass-border);
}

footer p {
  text-align: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255,255,255,0.05);
  background: #111;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--accent-gold);
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.5rem;
  pointer-events: none;
  text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 5, 2, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content-wrapper {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ccc;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--accent-red);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
  z-index: 10000;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-gold);
  color: #000;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
