/* ==========================================================================
   Siya's Pre-school — Global Stylesheet
   Design tokens, components and overrides on top of Bootstrap 5
   ========================================================================== */

:root {
  --navy: #0e2148;
  --navy-soft: #142a5c;
  --navy-deep: #081534;
  --gold: #f5b301;
  --gold-soft: #ffd255;
  --cream: #fdfaf2;
  --light: #f4f6fa;
  --grey-100: #eceff5;
  --text-muted: #5a6378;
  --shadow-sm: 0 6px 18px rgba(14, 33, 72, 0.08);
  --shadow-md: 0 14px 40px rgba(14, 33, 72, 0.12);
  --shadow-lg: 0 24px 60px rgba(14, 33, 72, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

/* ----- Base ----- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
} /* prevent any component from widening the page */
body {
  font-family:
    "Nunito",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--navy);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.65;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}
p {
  color: var(--text-muted);
}
a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--gold);
}

/* ----- Utility ----- */
.bg-navy {
  background: var(--navy) !important;
  color: #fff;
}
.bg-cream {
  background: var(--cream) !important;
}
.bg-light-grey {
  background: var(--light) !important;
}
.text-gold {
  color: var(--gold) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.rounded-xl {
  border-radius: var(--radius-md) !important;
}
.rounded-2xl {
  border-radius: var(--radius-lg) !important;
}
.shadow-soft {
  box-shadow: var(--shadow-sm);
}
.shadow-soft-lg {
  box-shadow: var(--shadow-md);
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3.5rem 0;
}
.eyebrow {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 179, 1, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* ----- Buttons ----- */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 179, 1, 0.4);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 33, 72, 0.25);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

/* ----- Announcement bar ----- */
.announcement {
  background: var(--navy-deep);
  color: var(--gold);
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement a {
  color: var(--gold);
  text-decoration: underline;
}

/* ----- Navbar ----- */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy) !important;
}
.navbar-brand-custom img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -2px;
}
.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 2px 14px rgba(14, 33, 72, 0.06);
  padding: 0.75rem 0;
}
.navbar-custom .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0.35rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.navbar-custom .nav-link:hover {
  background: var(--light);
  color: var(--navy) !important;
}
.navbar-custom .nav-link.active {
  background: var(--navy);
  color: #fff !important;
}
.navbar-custom .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1.3rem !important;
}
.navbar-custom .nav-cta:hover {
  background: var(--gold-soft);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 6rem 0 9rem;
  background: linear-gradient(
    135deg,
    #fff8e6 0%,
    var(--cream) 50%,
    #eaf0ff 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.25), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 33, 72, 0.12), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cards {
  margin-top: -5rem;
  position: relative;
  z-index: 5;
}
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid var(--gold);
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.info-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 179, 1, 0.15);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.info-card h5 {
  margin-bottom: 0.5rem;
}
.info-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* ----- Highlight cards ----- */
.highlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.highlight-card.featured {
  height: 420px;
}
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.highlight-card:hover img {
  transform: scale(1.06);
}
.highlight-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 21, 52, 0.85) 0%,
    rgba(8, 21, 52, 0) 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
}
.highlight-card .overlay h4 {
  color: #fff;
  margin: 0;
}
.highlight-card .overlay p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

/* ----- CTA section ----- */
/* Gold-gradient call-to-action band that appears at the bottom of each page.
   Buttons here should be .btn-outline-navy (navy border+text → fills navy on hover)
   or .btn-primary-gold (gold bg → stays gold on hover).                    */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--navy);
}
.cta-section p {
  color: rgba(14, 33, 72, 0.75);
}

/* ----- Values carousel (dark section) ----- */
.values-section {
  background: var(--navy);
  color: #fff;
  padding: 6rem 0;
  position: relative;
}
.values-section h2 {
  color: #fff;
}
.values-section p {
  color: rgba(255, 255, 255, 0.75);
}
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.value-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.value-card h5 {
  margin-bottom: 0.6rem;
}
.value-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border-radius: 50%;
  opacity: 1;
}
.carousel-control-prev {
  left: -24px;
}
.carousel-control-next {
  right: -24px;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--gold);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ----- CTA section ----- */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy);
  padding: 4.5rem 0;
}
.cta-section h2 {
  color: var(--navy);
}
.cta-section p {
  color: var(--navy-soft);
}

/* ----- Page hero (sub-pages) ----- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.2), transparent 70%);
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}
.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.breadcrumb-custom a {
  color: var(--gold);
}
.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* ----- About / methodology ----- */
.method-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  border: 1px solid var(--grey-100);
  transition: all 0.25s ease;
}
.method-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.method-card .num {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.principal-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.principal-img img {
  width: 100%;
  display: block;
}
.principal-img::before {
  content: "";
  position: absolute;
  inset: -20px -20px auto auto;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ----- Programs ----- */
.program-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold);
  transition: all 0.25s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-card .age {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.program-card ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.program-card ul li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.alt-row {
  padding: 3.5rem 0;
}
.alt-row img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.alt-row .feat-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.alt-row .feat-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--navy);
}
.alt-row .feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ----- Admissions ----- */
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step-card h5 {
  margin-bottom: 0.5rem;
}

.accordion-custom .accordion-item {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-custom .accordion-button {
  font-weight: 600;
  color: var(--navy);
  padding: 1.1rem 1.5rem;
  background: #fff;
}
.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--navy);
  box-shadow: none;
}
.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}
.accordion-custom .accordion-body {
  color: var(--text-muted);
  padding: 0 1.5rem 1.25rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-control,
.form-select {
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(245, 179, 1, 0.2);
}
.form-label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* ----- Contact ----- */
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--gold);
  transition: all 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.15);
  color: var(--gold);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card h5 {
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: var(--text-muted);
}
.contact-card a:hover {
  color: var(--gold);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ----- Footer ----- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}
.footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
}
.footer a:hover {
  color: var(--gold);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer .brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer .brand-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.footer .brand-row span {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}
.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ----- Responsive tweaks ----- */
@media (max-width: 991px) {
  .hero {
    padding: 4rem 0 7rem;
  }
  .hero-img-wrap {
    margin-top: 2.5rem;
    transform: none;
  }
  .highlight-card,
  .highlight-card.featured {
    height: 280px;
  }
  .carousel-control-prev {
    left: 4px;
  }
  .carousel-control-next {
    right: 4px;
  }
}
@media (max-width: 575px) {
  .section {
    padding: 3.5rem 0;
  }
  .form-card {
    padding: 1.5rem;
  }
  .navbar-brand-custom {
    font-size: 1.1rem;
  }
  .navbar-brand-custom img {
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   Gallery Page
   ========================================================================== */
.gallery-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #fff7df 100%);
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.gallery-hero .eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.gallery-hero p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0.75rem auto 0;
}

/* Filter chips */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0 2.5rem;
}
.gallery-filter .chip {
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-filter .chip:hover {
  background: var(--navy);
  color: #fff;
}
.gallery-filter .chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  padding-bottom: 4rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: #fff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  aspect-ratio: 4 / 3;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 33, 72, 0) 50%,
    rgba(14, 33, 72, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Featured / Press section */
.featured-press {
  background: var(--navy);
  padding: 4.5rem 0;
}

.featured-press h2 {
  color: #fff;
}

.featured-press .section-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0.75rem auto 0;
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.press-item {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

/* Overlay */

.press-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: 0.3s ease;
}

.press-item:hover .overlay {
  opacity: 1;
}

.press-item .overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 52, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1080;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 95%;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  max-width: 90%;
  text-align: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
