:root {
  --navy: #301515;
  --navy-2: #301515;
  --blue: #9a6a00;
  --blue-dark: #7a5400;
  --paper: #faf5ef;
}
body { font-family: 'Roboto', ui-sans-serif, system-ui, sans-serif; color: var(--navy-2); }
h1, h2, h3, .font-display { font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.card {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgb(48 21 21 / 0.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: 0 14px 30px -10px rgb(48 21 21 / 0.22); transform: translateY(-3px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-radius: 9999px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  display: inline-block;
  box-shadow: 0 4px 14px -4px rgb(154 106 0 / 0.4);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 18px -4px rgb(154 106 0 / 0.5); }

/* Scroll-reveal: fade+rise, applied via reveal.js (IntersectionObserver).
   Default state is JS-added so content stays visible if JS fails. */
.reveal-el { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal-el.in { opacity: 1; transform: none; }

.btn-pill {
  border: 1.5px solid var(--navy-2);
  color: var(--navy-2);
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  transition: all .15s ease;
  display: inline-block;
}
.btn-pill:hover { background: var(--navy-2); color: #fff; }

.icon-circle {
  width: 2.75rem; height: 2.75rem;
  border-radius: 9999px;
  background: var(--navy-2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: #fbe8c8;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.85rem;
}

.nav-link { color: var(--navy-2); font-weight: 500; transition: color .15s ease; }
.nav-link:hover, .nav-link.active { color: var(--blue); }

.section-paper { background: var(--paper); }

.hero-caption {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy-2);
}
.brand-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--navy-2);
  letter-spacing: 0.02em;
}

.band-navy {
  background: var(--navy-2);
  color: #fff;
}
.band-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #fff;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
#lightbox.open { opacity: 1; pointer-events: auto; }
#lightbox .lb-img-wrap { position: relative; display: inline-block; max-width: 90vw; max-height: 85vh; }
#lightbox .lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: .5rem; display: block; }
#lightbox .lb-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: .5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='160'><text x='10' y='100' font-family='Poppins,sans-serif' font-size='20' font-weight='700' fill='rgba(255,255,255,0.16)' transform='rotate(-28 160 80)'>Bright Star Children Academy</text></svg>");
  background-repeat: repeat;
}
#lightbox .lb-btn {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
#lightbox .lb-btn:hover { background: rgba(255,255,255,.28); }
#lightbox .lb-close { top: 1.25rem; right: 1.25rem; }
#lightbox .lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
#lightbox .lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
#lightbox .lb-caption { position: absolute; bottom: 1.5rem; left: 1rem; right: 1rem; text-align: center; color: #fff; font-size: .875rem; }

/* Image protection: raises the bar against casual right-click/drag saving
   and the mobile long-press "Save Image" menu. Paired with the contextmenu/
   dragstart blocking in image-protect.js. Not foolproof — devtools,
   view-source, and screenshots always work — see that file for the caveat. */
img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
