:root {
  --bg-main: #f8f9fa;
  --bg-card: #ffffff;
  --bg-dark: #1e1e2d;
  --text-main: #343a40;
  --text-muted: #6c757d;
  --primary: #4361ee;
  --primary-hover: #3a56d4;
  --secondary: #eef2f7;
  --gold: #fccf31;
  --gold-dark: #f5a623;
  --success: #1cc88a;
  --danger: #e74a3b;
  --warning: #f6c23e;
  --info: #36b9cc;
  --border-color: #e3e6f0;
  
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
  --shadow: 0 .5rem 1rem rgba(0,0,0,.08);
  --shadow-lg: 0 1rem 3rem rgba(0,0,0,.1);
  --radius: 12px;
  --radius-sm: 8px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-dark);
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--primary-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}
.btn-primary:focus, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}
.w-100 { width: 100%; }

/* Layout Wrappers */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Light Theme Hero */
.hero-light {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-top: 80px; /* offset for nav */
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(67, 97, 238, 0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.hero-content h1 span {
  color: var(--gold);
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Colorful Sections */
.section-light {
  padding: 80px 20px;
  background: var(--bg-card);
}
.section-alternate {
  padding: 80px 20px;
  background: var(--bg-main);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--bg-dark);
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1.1rem;
}

/* Feature Cards Light (Venues) */
.feature-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card-light {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
.feature-card-light:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card-light img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}
.feature-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feature-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--bg-dark);
}
.feature-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

/* About Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.stat-icon.gold { background: rgba(252, 207, 49, 0.15); color: var(--gold-dark); }
.stat-icon.green { background: rgba(28, 200, 138, 0.15); color: var(--success); }
.stat-icon.blue { background: rgba(67, 97, 238, 0.15); color: var(--primary); }
.stat-icon.orange { background: rgba(231, 74, 59, 0.15); color: var(--danger); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* Time Slots */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.slot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.slot-name { font-weight: 700; color: var(--bg-dark); font-size: 1.1rem; margin-bottom: 4px; }
.slot-time { color: var(--text-muted); font-size: 0.9rem; }

/* How it Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Gallery Grid */
.gallery-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item-light {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item-full {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  position: relative;
}
.gallery-item-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.gallery-item-full:hover::before { background: rgba(0,0,0,0.5); }
.gallery-item-full:hover { transform: scale(1.05); }
.gallery-item-full i, .gallery-item-full span { position: relative; z-index: 2; }
.gallery-item-full i { font-size: 2.5rem; margin-bottom: 10px; color: var(--gold); }
.gallery-item-full span { font-weight: 600; font-size: 1.1rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card-light {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }
.testimonial-text { font-style: italic; color: var(--text-main); margin-bottom: 20px; font-size: 1.05rem; }
.testimonial-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--border-color); padding-top: 15px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; }
.testimonial-name { font-weight: 700; color: var(--bg-dark); }
.testimonial-event { font-size: 0.85rem; color: var(--text-muted); }

/* Contact Section & Form */
.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; min-width: 48px; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-detail-text strong { display: block; color: var(--bg-dark); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: var(--text-muted); }

.card-header { padding: 15px 20px; border-bottom: 1px solid var(--border-color); font-weight: 700; color: var(--bg-dark); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--bg-dark); font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; background: var(--bg-main); color: var(--text-main); font-family: var(--font-main); transition: border-color 0.3s; box-sizing: border-box; }
.form-control:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(67,97,238,0.1); }

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-box { text-align: center; }
.stat-box i { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }
.stat-box h4 { font-size: 2.5rem; color: #fff; margin-bottom: 5px; font-family: var(--font-heading); }
.stat-box p { font-size: 1.1rem; opacity: 0.9; margin: 0; }

/* Footer Light */
.footer-light {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 20px;
}
.footer-grid-light {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-col p { margin-bottom: 10px; }
.footer-col i { color: var(--primary); margin-right: 10px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; transition: all 0.3s ease; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 0.9rem; }


/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  .hero-actions { display: flex; flex-direction: column; gap: 10px; }
  .section-light, .section-alternate { padding: 50px 15px; }
  .section-header h2 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-banner { gap: 40px; flex-direction: column; align-items: center;}
  
  /* Tables */
  table { display: block; overflow-x: auto; white-space: nowrap; }
}
