/* =========================================================
   3i ENRICHMENT CENTRE — DESIGN TOKENS
   ========================================================= */
:root {
  --cream:      #FFF9F0;
  --cream-2:    #FFF2DE;
  --plum:       #2D1B4E;
  --plum-soft:  #5A4A78;
  --yellow:     #FFC93C;
  --sky:        #3EC6E0;
  --coral:      #FF6F61;
  --green:      #4CAF7D;
  --lavender:   #B79CED;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 12px 30px rgba(45, 27, 78, 0.10);
  --shadow-pop:  0 6px 0 rgba(45, 27, 78, 0.18);

  --container-w: 1180px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1em; color: var(--plum-soft); }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2em; margin: 0; }
li { color: var(--plum-soft); margin-bottom: 0.5em; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   BACKGROUND DECOR
   ========================================================= */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.blob-1 { width: 420px; height: 420px; background: var(--yellow); top: -120px; right: -100px; }
.blob-2 { width: 360px; height: 360px; background: var(--sky); top: 40%; left: -150px; }
.blob-3 { width: 300px; height: 300px; background: var(--coral); bottom: -100px; right: 10%; opacity: 0.25; }

/* =========================================================
   BUTTONS & PILLS (shared across sections)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: none !important; }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { box-shadow: 0 9px 0 rgba(45,27,78,0.18); }

.btn-ghost {
  background: #fff;
  color: var(--plum);
  box-shadow: 0 0 0 2px rgba(45,27,78,0.12) inset;
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  box-shadow: 0 0 0 2px var(--plum) inset;
}

.btn-small { padding: 11px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--plum-soft);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}
.pill svg { color: var(--coral); flex-shrink: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
