/* =====================================================
   GLOBAL COLOR VARIABLES
===================================================== */
:root {
  --primary: #d4af37;       /* Gold */
  --primary-dark: #b8860b;  /* Darker Gold */
  --secondary: #ffd700;     /* Accent Gold */
  --light-bg: #ffffff;      /* White */
  --dark-bg: #121212;       /* Dark Background */
  --dark-text: #000000;     /* Black */
  --text-color: #212529;    /* Text Color */
  --text-light: #f8f9fa;    /* Light Text */
  --gray-text: #444444;     /* Medium Gray */
  --border-color: #e5e5e5;  /* Soft Gray Border */
}

/* =====================================================
   BASE STYLES
===================================================== */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 1.75rem;
}
.section-title p {
  color: var(--gray-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   THEME SYSTEM — LIGHT / DARK MODE
===================================================== */
body.light-mode {
  background-color: var(--light-bg);
  color: var(--text-color);
}
body.light-mode .navbar {
  background-color: var(--light-bg) !important;
  border-bottom: 1px solid var(--border-color);
}
body.light-mode .nav-link {
  color: var(--text-color) !important;
}
body.light-mode .nav-link.active {
  color: var(--primary) !important;
}

body.dark-mode {
  background-color: var(--dark-bg);
  color: var(--text-light);
}
body.dark-mode .navbar {
  background-color: #1b1b1b !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
body.dark-mode .nav-link {
  color: var(--text-light) !important;
}
body.dark-mode .nav-link.active {
  color: var(--secondary) !important;
}
body.dark-mode .event-card,
body.dark-mode .team-card,
body.dark-mode .contact-card,
body.dark-mode .value-card {
  background-color: #1e1e1e;
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
body.dark-mode .footer {
  background-color: #000;
  color: #ccc;
}
body.dark-mode .footer a:hover {
  color: var(--primary);
}
body.dark-mode .stat-item {
  background-color: #1e1e1e;
}

/* =====================================================
   NAVBAR STYLES - FIXED TEXT CONTRAST
===================================================== */
#mainNavbar {
  background-color: #fff;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  z-index: 1050;
}

#mainNavbar.navbar-scrolled {
  background-color: rgba(255,255,255,0.97) !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 0.6rem 0;
}

/* Light Mode (Default) */
#mainNavbar.navbar-light {
  background-color: #fff !important;
  border-bottom: 1px solid var(--border-color);
}

#mainNavbar.navbar-light .nav-link {
  color: #333 !important;
}

#mainNavbar.navbar-light .nav-link:hover,
#mainNavbar.navbar-light .nav-link.active {
  color: var(--primary-dark) !important;
}

/* Dark Mode */
#mainNavbar.navbar-dark-mode {
  background-color: #1b1b1b !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mainNavbar.navbar-dark-mode .nav-link {
  color: #f8f9fa !important;
}

#mainNavbar.navbar-dark-mode .nav-link:hover,
#mainNavbar.navbar-dark-mode .nav-link.active {
  color: var(--primary) !important;
}

/* ===============================
   NAVBAR LINK FIX - CLEAN & READABLE
=============================== */
#mainNavbar .nav-link {
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 0 0.1rem;
  text-align: center;
  white-space: nowrap;
}

#mainNavbar .nav-link:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

#mainNavbar .nav-link.active {
  background-color: var(--primary);
  color: #000 !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Dark mode active state */
#mainNavbar.navbar-dark-mode .nav-link.active {
  background-color: var(--primary);
  color: #000 !important;
}

/* Brand & Logo */
#mainNavbar .navbar-brand img {
  height: 38px;
  transition: all 0.3s ease;
}
#mainNavbar.navbar-scrolled .navbar-brand img {
  height: 32px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-gold:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

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

.btn-icon {
  border: none;
  background: transparent;
  color: var(--primary-dark);
  font-size: 1.25rem;
  transition: color 0.3s ease, transform 0.2s ease;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  color: var(--primary);
  transform: scale(1.1);
  background-color: rgba(212, 175, 55, 0.1);
}

/* Dark mode button adjustments */
#mainNavbar.navbar-dark-mode .btn-icon {
  color: var(--secondary);
}

#mainNavbar.navbar-dark-mode .btn-icon:hover {
  color: var(--primary);
  background-color: rgba(212, 175, 55, 0.2);
}

/* Mobile Styles */
@media (max-width: 991px) {
  #mainNavbar .navbar-collapse {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-top: 1rem;
  }

  #mainNavbar.navbar-dark-mode .navbar-collapse {
    background-color: #1b1b1b;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  #mainNavbar .nav-link {
    display: block;
    text-align: center;
    margin: 0.25rem 0;
    padding: 0.8rem 1.5rem;
    width: auto;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  #mainNavbar .d-flex {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  #mainNavbar .btn-gold,
  #mainNavbar .btn-outline-gold {
    width: 200px;
    justify-content: center;
  }
}

/* Desktop spacing optimization */
@media (min-width: 992px) {
  #mainNavbar .navbar-nav {
    gap: 0.2rem;
  }
}

/* Navbar Toggler */
.navbar-toggler {
  border: 1px solid rgba(0,0,0,0.1) !important;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

#mainNavbar.navbar-dark-mode .navbar-toggler {
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff;
}

/* =====================================================
   BUTTON STYLES
===================================================== */
.btn-primary {
  background-color: var(--primary);
  border: none;
  color: #000;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #000;
}

/* =====================================================
   HERO SECTIONS
===================================================== */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('/images/hero-bg.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  color: white;
  margin-bottom: 3rem;
}

.about-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  overflow: hidden;
}

.about-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.about-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* =====================================================
   CARD STYLES
===================================================== */
.team-card, .value-card, .contact-card {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}
.team-card:hover, .value-card:hover, .contact-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team-card .card-text, .value-icon {
  color: var(--primary);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Event/Venue/Category Cards */
.event-card, .venue-card, .category-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover, .venue-card:hover, .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-card img, .venue-card img, .category-card img {
  height: 220px;
  object-fit: cover;
}

.event-card .card-title,
.venue-card .card-title,
.category-card .card-title {
  font-weight: 600;
  color: var(--dark-text);
}

.event-card .card-text,
.venue-card .card-text,
.category-card .card-text {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.event-date, .price-tag {
  color: var(--primary);
  font-weight: 500;
}

.ticket-badge {
  background-color: var(--secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* =====================================================
   SPECIALIZED CARD STYLES
===================================================== */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  transition: all 0.4s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 0 8px rgba(212, 175, 55, 0.3);
}

.category-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1.2rem;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  text-align: center;
  transition: background 0.3s ease;
}

.category-label {
  display: inline-block;
  background: linear-gradient(90deg, rgba(212,175,55,0.9), rgba(255,215,0,0.9));
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.5);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

/* =====================================================
   ACTION BUTTONS & EVENT ACTIONS
===================================================== */
.event-actions {
  margin-top: 1rem;
  align-items: center;
}
.event-actions .price-tag {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
}

.event-card .card-body .btn {
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1.2rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.event-card .card-body .d-flex {
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.event-card .btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}
.event-card .btn-outline-primary:hover {
  background-color: var(--primary);
  color: #000;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.event-card .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  color: #000;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
}
.event-card .btn-primary:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(212, 175, 55, 0.4);
}

.event-card .btn:active {
  transform: scale(0.97);
}

/* =====================================================
   SHARE BUTTONS
===================================================== */
.share-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.25rem;
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  background-color: #ccc;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}
.share-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: rgba(255, 215, 0, 0.6);
  opacity: 0.95;
}

.share-btn i,
.share-btn svg {
  color: #fff !important;
  fill: #fff !important;
  line-height: 1;
}

/* Platform Colors */
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter  { background-color: #1DA1F2; }
.share-btn.email    { background-color: #FF9800; }
.share-btn.copy     { background-color: #6c757d; }

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* =====================================================
   COMPONENT STYLES
===================================================== */
/* Stats Section */
.stats-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
.stat-item {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.125rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: white;
}
.accordion-button:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Modals */
.modal-header.bg-primary {
  background-color: var(--primary) !important;
  color: white !important;
}

/* Bootstrap Icons */
.bi {
  color: var(--primary);
  transition: color 0.3s ease;
}
.bi:hover {
  color: var(--secondary);
}
body.dark-mode .bi {
  color: var(--secondary);
}
body.dark-mode .bi:hover {
  color: var(--primary);
}

/* Bootstrap Tabs */
.nav-tabs {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}
.nav-tabs .nav-link {
  color: #333;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background-color: transparent;
}
.nav-tabs .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background-color: transparent;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
  transform: scale(1.2);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background-color: #111;
  color: #ddd;
  font-size: 15px;
  padding: 60px 0 40px;
}
.footer-logo {
  width: 130px;
  margin: 0 auto 0.5rem;
  display: block;
  position: relative;
}
.footer-logo::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ffc107;
  margin: 5px auto 0;
  border-radius: 2px;
}
.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  margin-bottom: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-contacts li i {
  color: #ffc107 !important;
}
.footer-contacts li:hover {
  transform: translateX(5px);
  color: #fff;
}
.footer h5 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}
.footer h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ffc107;
  margin-top: 5px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
.footer ul li a:hover {
  color: #ffc107;
}
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.footer .social-links a {
  color: #bbb;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  color: #ffc107;
  transform: translateY(-3px);
}
.footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  margin-top: 30px;
  color: #aaa;
  font-size: 14px;
  text-align: center;
}

/* =====================================================
   RESPONSIVE STYLES
===================================================== */
@media (max-width: 768px) {
  .hero-section, .about-hero {
    padding: 4rem 0;
  }
  .about-hero {
    padding: 2.5rem 0 1.5rem;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
  .about-hero p {
    font-size: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 1rem;
  }

  .footer-logo,
  .footer-contacts,
  .social-links {
    text-align: center !important;
    justify-content: center;
  }
  .footer-contacts li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .event-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-actions .btn,
  .event-card .card-body .btn {
    width: 100%;
    text-align: center;
  }
  .event-card .card-body .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
}
/* ===============================
   NAVBAR LINK FIX - PROPER TEXT CONTRAST
=============================== */
#mainNavbar .nav-link {
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 0 0.1rem;
  text-align: center;
  white-space: nowrap;
}

/* Hover state - subtle background */
#mainNavbar .nav-link:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Active state - gold background with BLACK text for contrast */
#mainNavbar .nav-link.active {
  background-color: var(--primary);
  color: #000 !important; /* Black text on gold background */
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Light theme specific fixes */
#mainNavbar.navbar-light .nav-link {
  color: #333 !important;
}

#mainNavbar.navbar-light .nav-link:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--primary-dark) !important;
}

#mainNavbar.navbar-light .nav-link.active {
  background-color: var(--primary);
  color: #000 !important; /* Black text for maximum contrast */
  font-weight: 600;
}

/* Dark theme specific fixes */
#mainNavbar.navbar-dark-mode .nav-link {
  color: #f8f9fa !important;
}

#mainNavbar.navbar-dark-mode .nav-link:hover {
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--primary) !important;
}

#mainNavbar.navbar-dark-mode .nav-link.active {
  background-color: var(--primary);
  color: #000 !important; /* Black text on gold works in dark mode too */
  font-weight: 600;
}

.hero-section {
  width: 100%;
  overflow: hidden;
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  height: 85vh; /* Full screen feel */
  border-radius: 0;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}

/* Overlay gradient base (invisible until active) */
.category-overlay {
  opacity: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,   /* Dark at bottom */
    rgba(0, 0, 0, 0.3) 40%,  /* Fade upward */
    rgba(0, 0, 0, 0) 100%    /* Fully transparent top */
  );
  transition: opacity 1s ease;
}

/* Label animation */
.category-label {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* Active slide animations */
.swiper-slide-active .category-overlay {
  opacity: 1;
}

.swiper-slide-active .category-label {
  transform: translateY(0);
  opacity: 1;
}


.slider-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-item img {
  height: 85vh;
  object-fit: cover;
}

/* Gradient overlay */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  padding-bottom: 5rem;
}

/* Fade-in animation for text */
.carousel-caption h2,
.carousel-caption p,
.carousel-caption a {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.carousel-item.active .carousel-caption h2,
.carousel-item.active .carousel-caption p,
.carousel-item.active .carousel-caption a {
  opacity: 1;
  transform: translateY(0);
}


/* === FEATURED EVENTS SLIDER === */
.featured-events {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Each slide */
.event-slide {
  position: relative;
  width: 100%;
  height: 90vh; /* Tall like hero */
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text */
.event-caption {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

/* Nav arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}


/* =====================================================
   MOBILE MENU 
===================================================== */
@media (max-width: 991px) {
  /* Mobile menu container */
  #mainNavbar .navbar-collapse {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 1rem;
    border-radius: 12px;
    max-height: 80vh;
    overflow-y: auto;
  }

  #mainNavbar.navbar-dark-mode .navbar-collapse {
    background-color: #1b1b1b;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }

  /* Mobile menu links */
  #mainNavbar .navbar-nav {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  #mainNavbar .nav-link {
    display: block;
    text-align: center;
    margin: 0.25rem 0;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  /* Light mode mobile links */
  #mainNavbar.navbar-light .nav-link {
    color: #333 !important;
    background-color: #f8f9fa;
  }

  #mainNavbar.navbar-light .nav-link:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-dark) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  #mainNavbar.navbar-light .nav-link.active {
    background-color: var(--primary);
    color: #000 !important;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }

  /* Dark mode mobile links */
  #mainNavbar.navbar-dark-mode .nav-link {
    color: #f8f9fa !important;
    background-color: #2d2d2d;
  }

  #mainNavbar.navbar-dark-mode .nav-link:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  #mainNavbar.navbar-dark-mode .nav-link.active {
    background-color: var(--primary);
    color: #000 !important;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  }

  /* Mobile menu buttons container */
  #mainNavbar .d-flex {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
  }

  /* Mobile menu buttons */
  #mainNavbar .btn-gold,
  #mainNavbar .btn-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin: 0;
  }

  /* Light mode buttons */
  #mainNavbar.navbar-light .btn-outline-gold {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
  }

  #mainNavbar.navbar-light .btn-outline-gold:hover {
    background: var(--primary);
    color: #000;
  }

  /* Dark mode buttons */
  #mainNavbar.navbar-dark-mode .btn-outline-gold {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
  }

  #mainNavbar.navbar-dark-mode .btn-outline-gold:hover {
    background: var(--primary);
    color: #000;
  }

  /* Mobile menu separator */
  #mainNavbar .navbar-collapse hr {
    margin: 1.5rem 0;
    border-color: var(--border-color);
    opacity: 0.6;
  }

  #mainNavbar.navbar-dark-mode .navbar-collapse hr {
    border-color: rgba(255,255,255,0.2);
  }

  /* Navbar toggler improvements */
  .navbar-toggler {
    border: 2px solid rgba(0,0,0,0.1) !important;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
  }

  #mainNavbar.navbar-dark-mode .navbar-toggler {
    border-color: rgba(255,255,255,0.2) !important;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    outline: none;
  }
}

/* Additional improvements for very small screens */
@media (max-width: 576px) {
  #mainNavbar .navbar-collapse {
    padding: 1rem;
    margin-top: 0.5rem;
  }

  #mainNavbar .nav-link {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  #mainNavbar .btn-gold,
  #mainNavbar .btn-outline-gold {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
}

/* Smooth transitions for mobile menu */
#mainNavbar .navbar-collapse {
  transition: all 0.3s ease-in-out;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}


/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.floating-whatsapp {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Make visible after scroll */
.floating-whatsapp.active {
    opacity: 1;
    transform: translateY(0);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(100px) scale(0.8); }
    60% { opacity: 1; transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .floating-whatsapp {
        bottom: 110px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }
}

