body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #050509;
      color: #f5f5f5;
    }
    a { color: inherit; text-decoration: none; }
    .section { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }
    .section h2 { margin-bottom: 1rem; }
    .tagline { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; opacity: 0.8; }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(5, 5, 9, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.5rem;
    }

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(15, 23, 42, 0.6);
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: #f5d76e !important;
  border-color: #f5d76e;
  box-shadow: 0 0 0 3px rgba(245, 215, 110, 0.12);
  outline: none;
}

.dropdown-caret {
  font-size: 0.7rem;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 190px;
  padding: 0.5rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(5, 5, 9, 0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: #d4af37;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #f5d76e !important;
}

/* Make top nav text gold */
.nav, .nav a {
  color: #d4af37 !important;
}

/* Optional: gold on hover (slightly brighter) */
.nav a:hover {
  color: #f5d76e !important;
}

/* Gold section titles */
.section h2,
.section h3 {
  color: #d4af37;
}

/* Optional: keep the small taglines neutral */
.section .tagline {
  color: #ffffffa8; /* soft white */
}

/* Gold titles inside schedule boxes */
.schedule-item .schedule-title,
.card h3 {
  color: #d4af37 !important;
}


    .logo {
      font-weight: 700;
      letter-spacing: 0.18em;
      font-size: 0.9rem;
    }
    .nav-links {
      display: flex;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .hero {
      min-height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 1.5rem 4rem;
      background: radial-gradient(circle at top, #11162a 0%, #050509 55%, #000000 100%);
      position: relative;
      overflow: hidden;
    }

.hero-logo {
  width: 250px;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: -1%; /* adjust up/down as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}


    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("hero-bg.jpg") center/cover no-repeat;
      opacity: 0.22; /* keep cinematic / dark */
      mix-blend-mode: screen;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-title {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      margin: 0.75rem 0 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
    }
    .hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 1.5rem;
    }
    .hero-meta {
      font-size: 0.95rem;
      opacity: 0.85;
      margin-bottom: 2rem;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .btn-primary {
      padding: 0.9rem 1.8rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, #facc15, #d97706);
      color: #020617;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.85rem;
    }
    .btn-outline {
      padding: 0.9rem 1.8rem;
      border-radius: 999px;
      border: 1px solid rgba(248, 250, 252, 0.3);
      background: transparent;
      color: #f9fafb;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
    }

    .grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 768px) {
      .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    .card {
      padding: 1.5rem;
      border-radius: 1.25rem;
      background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.15), transparent 55%),
                  radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
      border: 1px solid rgba(148, 163, 184, 0.35);
    }
    .card h3 { margin-top: 0; margin-bottom: 0.5rem; }
    .muted { opacity: 0.8; font-size: 0.9rem; }

    .pill {
      display: inline-block;
      padding: 0.15rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      opacity: 0.9;
    }

    .schedule-item {
      padding: 1rem 1.25rem;
      border-radius: 1rem;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(15, 23, 42, 0.8);
    }
    .schedule-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .schedule-meta {
      font-size: 0.85rem;
      opacity: 0.9;
      margin-bottom: 0.25rem;
    }

    .step-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .step-list li {
      margin-bottom: 1rem;
      padding-left: 0.5rem;
      border-left: 2px solid rgba(250, 204, 21, 0.6);
    }

    .contact-form {
      display: grid;
      gap: 1rem;
      max-width: 450px;
    }
    .field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .field label {
      opacity: 0.9;
    }
.field input,
.field textarea,
.field select {
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.9);
      color: #f9fafb;
      font-size: 0.9rem;
      outline: none;
    }
    .field textarea { min-height: 100px; resize: vertical; }

    footer {
      padding: 2rem 1.5rem 3rem;
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      font-size: 0.8rem;
      opacity: 0.8;
    }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.hero-lean {
  min-height: auto;
  padding: 4rem 1.5rem 2.5rem;
  background: radial-gradient(circle at top, #0f172a 0%, #050509 60%, #000000 100%);
}
.gallery-header {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-header {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}
.gallery-note {
  padding: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
}
.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-card {
  margin: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}
.gallery-card video {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  background: #0b1020;
}
.gallery-card .lazy-media:not([data-loaded="true"]) {
  filter: blur(12px);
  transform: scale(1.02);
  background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.12), transparent 45%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(5, 5, 9, 0.95));
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  position: relative;
  max-width: 1100px;
  width: min(96vw, 1200px);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(5, 5, 9, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  padding: 1.25rem 3.5rem;
}

.lightbox-content {
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 0.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  background: #0b1020;
}

.lightbox-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(5, 5, 9, 0.9);
  color: #facc15;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 5, 9, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #facc15;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-prev { left: 0.85rem; }
.lightbox-next { right: 0.85rem; }

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .lightbox-frame {
    padding: 1rem 2.25rem;
  }
  .lightbox-content img,
  .lightbox-content video {
    max-height: 60vh;
  }
}
    /* Mobile & small tablet fixes */
@media (max-width: 768px) {

  /* Hero section tweaks */
  .hero {
    min-height: auto;
    padding: 5rem 1.25rem 3rem;
  }

  .hero-inner {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 1.9rem;
    letter-spacing: 0.18em;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-meta {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Center logo correctly above text on small screens */
  .hero-overlay {
    top: 0%;          /* adjust if you want it higher/lower */
  }
  .hero-logo {
    width: 80px;       /* smaller logo on phones */
  }

  /* Sections padding */
  .section {
    padding: 3rem 1.25rem;
  }

  /* Force all grids to single column on mobile */
  .grid,
  .grid-2,
  .grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Schedule cards full width */
  .schedule-item,
  .card {
    width: 100%;
    }

  /* Navigation spacing & font size */
  .nav {
    padding: 0.6rem 1rem;
  }

  .logo {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .nav-dropdown {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    width: 100%;
    left: 0;
    right: auto;
  }
}
