@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;800&family=Nunito:wght@400;600;700&display=swap');

:root {
  --pink: #FF4FA0;
  --pink-light: #FFD6EC;
  --pink-dark: #C0006A;
  --yellow: #FFD93D;
  --purple: #9B5DE5;
  --teal: #00C2CB;
  --dark: #1A0A2E;
  --card: #FFF0F8;
  --bg: #FFF5FB;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; }

nav { background: var(--pink); padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 3px 0 var(--pink-dark); }
.logo { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.3rem; color: #fff; text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 1.8rem; }
nav ul a { color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--yellow); }
.nav-cta { background: var(--yellow); color: var(--dark); font-weight: 800; font-size: 0.88rem; padding: 9px 22px; border-radius: 999px; text-decoration: none; transition: transform 0.15s; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: var(--pink-dark); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; padding: 1rem 2rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mob-cta { background: var(--yellow); color: var(--dark) !important; text-align: center; }

.page-hero { background: var(--pink); padding: 4.5rem 2rem 5.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: var(--bg); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero .tag { display: inline-block; background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 999px; margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: clamp(2.5rem, 7vw, 4rem); color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; font-weight: 600; }

.section { padding: 4.5rem 2rem; }
.inner { max-width: 1000px; margin: 0 auto; }
.eyebrow { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--pink); margin-bottom: 0.4rem; }
h2 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 2.4rem; color: var(--dark); line-height: 1.1; margin-bottom: 0.4rem; }
.sub { color: #999; font-size: 1rem; margin-bottom: 2.5rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--dark); font-weight: 800; font-size: 1rem; padding: 13px 30px; border-radius: 999px; text-decoration: none; box-shadow: 0 4px 0 #b89a00; transition: transform 0.15s, box-shadow 0.15s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #b89a00; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--dark); font-weight: 700; font-size: 1rem; padding: 13px 30px; border-radius: 999px; text-decoration: none; border: 2px solid var(--pink-light); transition: border-color 0.2s; }
.btn-outline:hover { border-color: var(--pink); }

footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.1rem; color: var(--pink); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; }
footer a:hover { color: var(--pink); }

@media (max-width: 680px) {
  nav ul, .nav-cta { display: none; }
  .hamburger { display: block; }
  footer { flex-direction: column; text-align: center; }
}
