/* ==========================================================================
   TOOTI FRUTI — Fun. Fruity. Refreshing. Bright, bubbly, kid-friendly.
   Hot pink + sunshine yellow + sky blue pops. Super round and alive.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Quicksand:wght@500;600;700&display=swap');

:root {
  --color-primary: #ff3d7f;         /* hot pink */
  --color-primary-dark: #e11f63;
  --color-accent: #ffbf1f;          /* sunshine yellow */
  --color-surface: #fff2f6;         /* candy pink band */
  --color-surface-2: #ffe6ef;
  --color-text: #3a1424;
  --color-muted: #8a5468;
  --color-border: #ffd6e4;
  --tf-blue: #38c6f4;
  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Quicksand', system-ui, sans-serif;
  --radius: 26px;
}

body {
  background:
    radial-gradient(700px 400px at 100% 0%, #fff6d6, transparent 60%),
    radial-gradient(600px 400px at 0% 30%, #e6f9ff, transparent 60%),
    #fff6f9;
}

/* Header — candy pink tint */
.site-header { background: rgba(255,242,246,0.94); border-bottom: 3px solid #ffd6e4; }
.site-nav a:hover { color: var(--color-primary); }

/* Sunny yellow band */
.section--muted { background: linear-gradient(180deg, #fff6d6, #ffedb0); }

/* Big bubbly titles with a wavy accent */
.section__title {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}
.section__title::after {
  content: "";
  display: block;
  width: 70px; height: 7px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--tf-blue);
}

/* Hero — pink-to-yellow candy gradient with bubbles */
.hero {
  background: linear-gradient(135deg, #ff3d7f 0%, #ff7a3d 55%, #ffbf1f 100%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60px 60px at 14% 30%, rgba(255,255,255,0.35), transparent 65%),
    radial-gradient(40px 40px at 82% 22%, rgba(56,198,244,0.6), transparent 65%),
    radial-gradient(80px 80px at 74% 78%, rgba(255,255,255,0.28), transparent 65%),
    radial-gradient(30px 30px at 28% 76%, rgba(255,191,31,0.9), transparent 65%);
  pointer-events: none;
}
.hero__title { font-weight: 800; text-shadow: 0 5px 22px rgba(0,0,0,0.2); }

/* Rounded, bouncy candy cards */
.card {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(255,61,127,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 22px 42px rgba(255,61,127,0.28); }
.card__title { color: var(--color-primary-dark); font-weight: 700; }

/* Big pill buttons */
.btn { border-radius: 999px; font-weight: 700; }
.btn--primary { background: var(--color-primary); box-shadow: 0 8px 20px rgba(255,61,127,0.4); }
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.btn--ghost { border-color: #fff; color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--color-primary); }

/* Candy chips */
.chip { background: #fff; border: 2px solid var(--color-primary); color: var(--color-primary-dark); font-weight: 700; }
.chip--accent { background: var(--tf-blue); border-color: var(--tf-blue); color: #08303d; }

.brand-back { color: var(--color-primary); font-weight: 700; }

/* Footer — hot pink */
.site-footer { background: #e11f63; color: #ffe1ec; }
.site-footer h4 { color: #fff; }
.site-footer a { color: #fff; }
