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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFD93D;
  --orange: #FF6B35;
  --pink: #FF6B9D;
  --teal: #00C9A7;
  --purple: #845EC2;
  --blue: #4D96FF;
  --bg: #FFFBF0;
  --dark: #2D2D2D;
  --card-radius: 24px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Fredoka One', cursive; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,251,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo img { height: 56px; width: auto; }
.nav-tabs { display: flex; gap: 0; list-style: none; }
.nav-tabs li a {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  color: #666; border-radius: 12px;
  transition: all 0.2s; border-bottom: 3px solid transparent;
}
.nav-tabs li a:hover { color: var(--orange); background: #FFF0E8; }
.nav-tabs li a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: #FFF0E8;
}
.nav-tabs li a .tab-icon { font-size: 1rem; }
.nav-cta {
  background: var(--orange); color: white;
  border: none; border-radius: 50px; padding: 0.55rem 1.3rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.nav-cta:hover { background: var(--pink); transform: scale(1.05); }

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); min-height: 100vh; }

/* ── HERO VARIANTS ── */
.hero {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE0F0 50%, #E0F7FA 100%);
  padding: 5rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 15% 25%, rgba(255,107,53,0.07) 0%, transparent 40%),
              radial-gradient(circle at 85% 75%, rgba(132,94,194,0.07) 0%, transparent 40%);
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-logo { height: 160px; width: auto; margin: 0 auto 1.5rem; display: block; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1)); }
.hero-badge {
  display: inline-block; background: var(--yellow);
  font-weight: 800; font-size: 0.82rem; padding: 0.4rem 1.2rem;
  border-radius: 50px; margin-bottom: 1.2rem; letter-spacing: 0.5px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 .c-orange { color: var(--orange); }
.hero h1 .c-purple { color: var(--purple); }
.hero p { font-size: 1.08rem; color: #555; line-height: 1.7; max-width: 560px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* page sub-hero */
.sub-hero {
  background: linear-gradient(135deg, #FFF8E1, #FFE4F0);
  padding: 3.5rem 2rem 3rem; text-align: center;
}
.sub-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.sub-hero p { font-size: 1.05rem; color: #666; max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: white;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 15px rgba(255,107,53,0.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.45); }
.btn-secondary {
  background: white; color: var(--orange);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: 2.5px solid var(--orange); cursor: pointer;
  transition: transform 0.15s; display: inline-block;
}
.btn-secondary:hover { transform: translateY(-2px); background: #FFF0E8; }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: #00b395; box-shadow: 0 6px 20px rgba(0,201,167,0.4); }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 2rem; }
.section-alt { background: #F5F0FF; }
.section-green { background: #F0FFF4; }
.text-center { text-align: center; }
.section-tag {
  font-weight: 800; font-size: 0.78rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 0.8rem; }
.section-sub { font-size: 1rem; color: #666; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: white; border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.11); }
.card .card-icon { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; line-height: 1.6; color: #555; }

/* card color variants */
.card-y { background: #FFF3C4; } .card-o { background: #FFE4D6; }
.card-g { background: #E8F5E9; } .card-p { background: #EDE7F6; }
.card-b { background: #E3F2FD; } .card-pk { background: #FCE4EC; }

/* ── FEATURE TAGS ── */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.ftag { background: white; border: 2px solid var(--yellow); border-radius: 50px; padding: 0.35rem 0.9rem; font-weight: 700; font-size: 0.82rem; }

/* ── PRETEND PLAY GRID ── */
.pretend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.pretend-card {
  background: white; border-radius: 18px; padding: 1.5rem 1rem; text-align: center;
  border: 2px solid transparent; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s; cursor: default;
}
.pretend-card:hover { border-color: var(--orange); transform: scale(1.04); }
.pretend-card .pi { font-size: 2.4rem; display: block; margin-bottom: 0.5rem; }
.pretend-card span { font-weight: 700; font-size: 0.9rem; }

/* ── CREATE GRID ── */
.create-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.create-card {
  background: white; border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.2s;
}
.create-card:hover { transform: translateY(-4px); }
.create-card .ci { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.create-card h3 { font-size: 1.2rem; color: var(--purple); margin-bottom: 0.5rem; }
.create-card p { font-size: 0.88rem; color: #666; line-height: 1.5; }

/* ── BIRTHDAY ── */
.bday-wrap { background: linear-gradient(135deg, #FF6B9D15, #FFD93D20); border-radius: 32px; overflow: hidden; }
.bday-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem; }
.bday-inner h2 { font-size: 2.3rem; color: var(--pink); margin-bottom: 1rem; }
.bday-inner p { color: #555; line-height: 1.7; margin-bottom: 1.5rem; }
.bday-list { list-style: none; }
.bday-list li { padding: 0.5rem 0; font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 0.6rem; color: #333; }
.bday-list li::before { content: '✓'; background: var(--pink); color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }
.bday-visual { background: white; border-radius: 24px; padding: 2.5rem; text-align: center; box-shadow: 0 8px 30px rgba(255,107,157,0.2); }
.bday-visual .cake { font-size: 5rem; display: block; margin-bottom: 1rem; }
.bday-visual h3 { font-size: 1.4rem; color: var(--pink); margin-bottom: 0.5rem; }
.bday-visual p { font-size: 0.9rem; color: #888; }
.pill-tag { display: inline-block; background: var(--yellow); font-weight: 800; font-size: 0.95rem; padding: 0.5rem 1.5rem; border-radius: 50px; margin-top: 1rem; }

/* ── SCHOOL SECTION ── */
.school-wrap { background: #F0FFF4; border-radius: 32px; padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.school-wrap h2 { font-size: 2.2rem; color: var(--teal); margin-bottom: 1rem; }
.school-wrap p { color: #555; line-height: 1.7; margin-bottom: 1.5rem; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit-card { background: white; border-radius: 16px; padding: 1.25rem 1rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.benefit-card .bi { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.benefit-card span { font-weight: 700; font-size: 0.85rem; color: #444; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.price-card {
  background: white; border-radius: var(--card-radius); padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 2.5px solid transparent;
  transition: transform 0.2s; position: relative;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--orange); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white; font-weight: 800; font-size: 0.75rem;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; color: #555; margin-bottom: 0.5rem; }
.price-amount { font-family: 'Fredoka One', cursive; font-size: 2.8rem; color: var(--orange); line-height: 1.1; }
.price-unit { font-size: 0.82rem; color: #999; margin-bottom: 1rem; }
.price-list { list-style: none; text-align: left; margin-top: 1rem; }
.price-list li { padding: 0.3rem 0; font-size: 0.87rem; color: #555; }
.price-list li::before { content: '• '; color: var(--teal); font-weight: 900; }

/* ── CONTACT CARDS ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; max-width: 860px; margin: 0 auto 3rem; }
.contact-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); text-align: center; }
.contact-card .cc-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* ── CONTACT FORM ── */
.contact-form { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); max-width: 600px; margin: 0 auto; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: #444; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 2px solid #E5E5E5; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--dark);
  transition: border-color 0.2s; outline: none; background: #FAFAFA;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: 12px; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800; border: none; background: var(--orange); color: white; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--pink); transform: translateY(-1px); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--orange), var(--pink)); border-radius: 32px; padding: 4.5rem 2rem; text-align: center; color: white; }
.cta-banner h2 { font-size: 2.6rem; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; }
.btn-white { background: white; color: var(--orange); padding: 0.85rem 2.5rem; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; text-decoration: none; transition: transform 0.15s; display: inline-block; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-3px); }

/* ── AGES STRIP ── */
.ages-strip { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.age-pill { background: white; border: 2.5px solid var(--yellow); border-radius: 50px; padding: 0.55rem 1.3rem; font-weight: 800; font-size: 0.88rem; }

/* ── FOOTER ── */
footer { background: #2D2D2D; color: #bbb; padding: 3rem 2rem; text-align: center; }
.footer-logo { height: 60px; width: auto; margin: 0 auto 1rem; display: block; opacity: 0.88; }
footer p { font-size: 0.88rem; line-height: 1.8; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin: 1.2rem 0; flex-wrap: wrap; }
.footer-nav a { color: #aaa; text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom { font-size: 0.78rem; color: #666; margin-top: 1rem; }

/* ── FLOATING EMOJIS ── */
.float-emojis { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fe { position: absolute; font-size: 2rem; animation: flt 6s ease-in-out infinite; opacity: 0.4; }
@keyframes flt { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(8deg); } }

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  background: #25D366; color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bday-inner, .school-wrap { grid-template-columns: 1fr; padding: 2rem; }
  .create-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-tabs li a .tab-label { display: none; }
  .nav-tabs li a { padding: 0.5rem 0.75rem; }
  .nav-tabs li a .tab-icon { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .create-grid, .benefit-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
