:root {
  --gold: #fce303;
  --gold-hover: #e6cf00;
  --dark: #111;
  --ink: #212529;
}

html { scroll-behavior: smooth; }

body {
  font-family: Poppins, system-ui, sans-serif;
  color: var(--ink);
}

a { color: #111; }
a:hover { color: var(--gold-hover); }

.navbar {
  background: #111 !important;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  padding: 0.7rem 0.85rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--gold) !important; }
.navbar-brand img { height: 72px; width: auto; }
.navbar-toggler { border-color: #444; }
.navbar-toggler-icon {
  filter: invert(1);
}

.dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu { display: block; }
  .dropdown-mega {
    min-width: min(920px, 92vw);
    right: 0;
    left: auto;
  }
}
.dropdown-mega a {
  font-size: 0.86rem;
  padding: 0.28rem 0;
  display: block;
  text-decoration: none;
  color: #333;
}
.dropdown-mega a:hover { color: #000; font-weight: 600; }

.page-hero {
  min-height: 42vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}
.page-hero .container { position: relative; z-index: 1; }
.prose h2, .prose h3 { font-weight: 700; margin-top: 1.4rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: .25rem; }

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.hero-slide .container { position: relative; z-index: 1; }
.hero-kicker {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
}
.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.15rem; }
.carousel-control-prev,
.carousel-control-next { width: 8%; }
.carousel-indicators [data-bs-target] { background-color: var(--gold); }

.section-title {
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.5rem;
}

.flip {
  perspective: 1200px;
  height: 320px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s;
  transform-style: preserve-3d;
}
.flip:hover .flip-inner { transform: rotateY(180deg); }
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.flip-front {
  background: #fff;
  border: 1px solid #eee;
}
.flip-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.flip-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.flip-back > * { position: relative; z-index: 1; }
.flip-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.flip-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  font-weight: 700;
  border: 0;
  border-radius: 0;
  padding: .55rem 1.2rem;
}
.btn-gold:hover { background: #fff; color: #111; }

.accordion-button:not(.collapsed) {
  background: #111;
  color: #fff;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: #ddd; }
.accordion-button { font-weight: 600; }

.gallery-item {
  display: block;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .35s;
}
.gallery-item:hover img { transform: scale(1.06); }

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1.6rem 0;
  margin-top: 2rem;
}
footer strong { color: #fff; }

#lightboxImg { max-height: 85vh; object-fit: contain; }
