/* ============================================================
   SMART CHAMPS PRE SCHOOLS — SECTION CANVAS ANIMATIONS
   Canvas backgrounds for every section. Premium, lightweight.
   ============================================================ */

/* All section canvases share these base properties */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure all animated sections are position:relative */
#programs,
#stats-strip,
#why-us,
#testimonials,
#activities-preview,
#gallery-preview,
#cta-banner,
#footer,
.section-animated {
  position: relative;
  overflow: hidden;
}

/* All section content must sit above canvas */
#programs       > .container,
#stats-strip    > .container,
#why-us         > .container,
#testimonials   > .container,
#activities-preview > .container,
#gallery-preview > .container,
#cta-banner     > .container,
#footer         > .container,
.section-animated > .container {
  position: relative;
  z-index: 2;
}

/* ── PAGE HERO (non-homepage) ──────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 24px 80px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  text-align: left;
}

.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.9); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
