/* =========================================================
   Pishikoo — shared kid-friendly theme
   ========================================================= */

:root {
  --pink:        #ff8fc0;
  --pink-deep:   #ff5fa2;
  --pink-soft:   #ffd6e8;
  --cream:       #fff6e9;
  --cream-deep:  #ffeccf;
  --teal:        #54c9c4;
  --purple:      #9b7ede;
  --green:       #7bc96f;
  --red:         #ff6f61;
  --orange:      #ffa14a;
  --blue:        #6f8ce0;
  --yellow:      #ffd34e;
  --ink:         #5b4636;
  --ink-soft:    #8a7259;
  --white:       #ffffff;
  --shadow:      0 10px 25px rgba(255, 95, 162, 0.18);
  --shadow-soft: 0 6px 16px rgba(120, 90, 60, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Quicksand", "Nunito", sans-serif;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,143,192,0.14) 0 22px, transparent 23px),
    radial-gradient(circle at 82% 30%, rgba(84,201,196,0.14) 0 18px, transparent 19px),
    radial-gradient(circle at 68% 78%, rgba(155,126,222,0.12) 0 20px, transparent 21px),
    radial-gradient(circle at 28% 88%, rgba(255,211,78,0.14) 0 16px, transparent 17px);
  background-attachment: fixed;
  line-height: 1.6;
}

h1, h2, h3, .fun {
  font-family: "Baloo 2", "Quicksand", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

a { color: var(--pink-deep); text-decoration: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 4px dotted var(--pink-soft);
  box-shadow: var(--shadow-soft);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  flex-wrap: wrap;
}

.nav__logo img { height: 120px; display: block; }

.nav__links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav__links a {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px) rotate(-2deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--pink-deep);
  padding: 14px 30px;
  border-radius: 999px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.04); }
.btn--teal   { background: var(--teal); }
.btn--purple { background: var(--purple); }
.btn--orange { background: var(--orange); }

/* ---------- Layout ---------- */
.wrap { max-width: 1150px; margin: 0 auto; padding: 0 22px; }
.section { padding: 64px 0; }
.center { text-align: center; }

.page-title {
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--pink-deep);
  text-shadow: 3px 3px 0 var(--white), 6px 6px 0 var(--pink-soft);
  margin-top: 30px;
}
.page-sub {
  text-align: center;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 10px;
}

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 48px 22px 10px; }
.hero__art {
  max-width: 760px;
  width: 100%;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(255,95,162,0.25));
  animation: float 5s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--pink-deep);
  text-shadow: 3px 3px 0 var(--white), 7px 7px 0 var(--pink-soft);
}
.hero p { font-size: 1.3rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 26px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- Character cards ---------- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.char-card {
  background: var(--white);
  border-radius: 28px;
  padding: 18px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--cream-deep);
  transition: transform .18s ease, box-shadow .18s ease;
}
.char-card:hover { transform: translateY(-8px) rotate(1deg); box-shadow: var(--shadow); }

.char-card__pic {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 22px;
  background: var(--cream);
  padding: 8px;
}
.char-card h3 { margin: 14px 0 4px; font-size: 1.5rem; color: var(--pink-deep); }
.char-card .tag {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--white);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.char-card p { font-size: .98rem; color: var(--ink-soft); margin: 0; }

/* bandana accent dot colours */
.c-teal   { background: var(--teal); }
.c-purple { background: var(--purple); }
.c-green  { background: var(--green); }
.c-red    { background: var(--red); }
.c-orange { background: var(--orange); }
.c-blue   { background: var(--blue); }
.c-pink   { background: var(--pink); }
.c-yellow { background: var(--yellow); color: var(--ink) !important; }
.c-grey   { background: #9aa1a8; }
.c-brown  { background: #b07b4f; }

/* ---------- Generic content card ---------- */
.card {
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--cream-deep);
}

/* ---------- About story blocks ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}
.story:nth-child(even) { direction: rtl; }
.story:nth-child(even) > * { direction: ltr; }
.story img {
  width: 100%;
  border-radius: 28px;
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.story h2 { font-size: 2rem; color: var(--purple); }
.story p { font-size: 1.1rem; }

/* ---------- Video gallery ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.video-card {
  background: var(--white);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--cream-deep);
}
.video-card video {
  width: 100%;
  border-radius: 18px;
  display: block;
  background: #000;
}
.video-card h3 { margin: 14px 6px 4px; color: var(--teal); }
.video-card p { margin: 0 6px 8px; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 30px;
}
.product {
  background: var(--white);
  border-radius: 28px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--cream-deep);
  position: relative;
  transition: transform .18s ease;
}
.product:hover { transform: translateY(-6px); }
.product img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--cream);
  border-radius: 20px;
  padding: 8px;
}
.product h3 { margin: 12px 0 2px; color: var(--pink-deep); font-size: 1.3rem; }
.product .price { font-family:"Baloo 2"; font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.product .btn { font-size: .95rem; padding: 10px 22px; margin-top: 10px; }
.product .badge {
  position: absolute;
  top: -10px; right: -8px;
  background: var(--yellow);
  color: var(--ink);
  font-family:"Baloo 2"; font-weight: 800;
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Color band / callouts ---------- */
.band {
  background: var(--pink);
  color: var(--white);
  border-radius: 36px;
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.band h2 { font-size: 2.2rem; color: var(--white); }
.band p  { font-size: 1.15rem; max-width: 620px; margin: 0 auto 22px; }
.band--teal { background: var(--teal); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 40px 22px;
  margin-top: 40px;
}
.site-footer img { height: 50px; margin-bottom: 10px; }
.site-footer a { color: var(--yellow); }
.site-footer .small { font-size: .85rem; opacity: .8; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .story, .story:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .nav__links a { padding: 6px 12px; font-size: .95rem; }
  .nav__logo img { height: 80px; }
  .section { padding: 44px 0; }
}
