/* ============================================================
   Hey, Let's Play! — playful pastel design system
   Palette pulled from the logo: powder blue, coral, buttery
   yellow, gold stars, cream.
   ============================================================ */
:root {
  --sky:        #7FC7E8;   /* primary blue */
  --sky-deep:   #4FA9D6;
  --sky-soft:   #D2ECF8;
  --coral:      #F58C8C;   /* primary accent / CTA */
  --coral-deep: #EE7373;
  --yellow:     #FBD46D;
  --yellow-soft:#FDECB4;
  --gold:       #F5B400;
  --ink:        #3f4a5e;   /* soft navy text */
  --ink-soft:   #6c7789;
  --cream:      #FFFBF4;   /* page background */
  --paper:      #ffffff;
  --line:       #eee6d8;
  --radius:     22px;
  --radius-sm:  14px;
  --shadow:     0 8px 26px rgba(79, 120, 160, 0.12);
  --shadow-lg:  0 18px 46px rgba(79, 120, 160, 0.18);
  --maxw:       1140px;
  --font-head:  "Fredoka", "Baloo 2", system-ui, sans-serif;
  --font-body:  "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--sky-deep); text-decoration: none; }
a:hover { color: var(--coral-deep); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 72px 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
.eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 600; color: var(--coral); margin-bottom: 12px; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; cursor: pointer; border: 0; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 0 var(--coral-deep); }
.btn-primary:hover { background: var(--coral-deep); color: #fff; box-shadow: 0 4px 0 var(--coral-deep); }
.btn-sky { background: var(--sky); color: #fff; box-shadow: 0 6px 0 var(--sky-deep); }
.btn-sky:hover { background: var(--sky-deep); color: #fff; box-shadow: 0 4px 0 var(--sky-deep); }
.btn-sun { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 #e6b94b; }
.btn-sun:hover { background: #f7c94f; color: var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky-deep); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 58px; width: auto; }
.brand .brand-text { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--sky-deep); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a { color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: .98rem; }
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(170deg, var(--sky-soft), var(--cream) 78%); position: relative; overflow: hidden; text-align: center; padding: 70px 0 84px; }
.hero .container { position: relative; z-index: 2; }
.hero img.hero-logo { width: min(360px, 74%); height: auto; margin: 0 auto 18px; }
.hero h1 { margin-bottom: 14px; }
.hero p { font-size: 1.22rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.blob { position: absolute; border-radius: 50%; opacity: .5; z-index: 1; }
.blob.b1 { width: 180px; height: 180px; background: var(--coral); top: 40px; left: -40px; opacity: .18; }
.blob.b2 { width: 130px; height: 130px; background: var(--yellow); bottom: 30px; right: 40px; opacity: .35; }
.blob.b3 { width: 90px; height: 90px; background: var(--sky); top: 90px; right: 120px; opacity: .3; }

/* ---------- Ways to play (cards) ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; text-align: center; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .2s ease; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile .emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.tile-icon { width: 104px; height: 104px; object-fit: contain; display: block; margin: 0 auto 14px; }
.hero-illus { width: 128px; height: auto; object-fit: contain; display: block; margin: 0 auto 12px; }
.tile h3 { color: var(--sky-deep); margin-bottom: 8px; }
.tile p { color: var(--ink-soft); margin-bottom: 20px; }

/* ---------- Generic cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.card h3 { color: var(--sky-deep); margin-bottom: 10px; }
.card p, .card li { color: var(--ink-soft); }
.alt { background: var(--sky-soft); }
.sun-band { background: var(--yellow-soft); }

/* ---------- Prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.06rem; }
.prose h3 { margin: 26px 0 10px; color: var(--ink); }
.prose ul { margin: 0 0 18px 20px; color: var(--ink-soft); }
.prose ul li { margin-bottom: 8px; }

/* ---------- Hours / info chips ---------- */
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--shadow); text-align: center; max-width: 460px; margin: 0 auto; }
.info-card h3 { color: var(--coral); margin-bottom: 12px; }
.info-card .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 1.05rem; }
.info-card .row:last-child { border-bottom: 0; }

/* ---------- Membership perks ---------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk { text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 18px; box-shadow: var(--shadow); }
.perk .emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.perk-icon { height: 78px; width: auto; max-width: 100%; object-fit: contain; display: block; margin: 0 auto 12px; }
.perk h4 { color: var(--sky-deep); margin-bottom: 6px; font-size: 1.05rem; }
.perk p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Party packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg { background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pkg .pkg-top { padding: 26px; text-align: center; color: #fff; }
.pkg.sweet .pkg-top { background: var(--sky); }
.pkg.dreamy .pkg-top { background: var(--coral); }
.pkg.luxe .pkg-top { background: var(--gold); }
.pkg .pkg-top h3 { color: #fff; font-size: 1.5rem; }
.pkg .pkg-top .sub { opacity: .95; font-weight: 600; }
.pkg .pkg-price { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; line-height: 1; margin: 8px 0 4px; }
.pkg ul li.no { color: #b9b0a4; }
.pkg ul li.no::before { content: "·"; color: #cfc7ba; }
.pkg .pkg-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.pkg ul { list-style: none; margin-bottom: 18px; }
.pkg ul li { padding: 7px 0 7px 26px; position: relative; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.pkg ul li::before { content: "★"; position: absolute; left: 2px; color: var(--gold); }
.pkg .btn { margin-top: auto; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--coral); flex: 0 0 auto; transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a > div { padding: 0 24px 20px; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 460px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(170deg, var(--sky-soft), var(--cream)); text-align: center; padding: 66px 0 54px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 12px auto 0; font-size: 1.12rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--coral); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff; opacity: .95; font-size: 1.15rem; margin: 12px 0 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-grid img { height: 66px; margin-bottom: 12px; }
.site-footer h4 { font-family: var(--font-head); color: var(--coral); margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; color: var(--ink-soft); }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--sky-soft); display: grid; place-items: center; color: var(--sky-deep); }
.socials a:hover { background: var(--coral); color: #fff; }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); text-align: center; color: var(--ink-soft); font-size: .9rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 22px; display: none; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 10px 0; }
  .nav-toggle { display: block; }
  .tiles, .cards, .packages { grid-template-columns: 1fr; }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- Forms (signup + contact) ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; max-width: 640px; margin: 0 auto; }
.form-card.wide { max-width: 760px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px var(--sky-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.interests { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.check { display: flex; align-items: flex-start; gap: 10px; background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.check:hover { border-color: var(--sky); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); flex: none; }
.check span { font-size: .95rem; font-weight: 600; color: var(--ink); }
.form-status { margin-top: 14px; font-weight: 700; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: #2f8f5b; }
.form-status.err { color: var(--coral-deep); }
@media (max-width: 640px) { .field-row, .interests { grid-template-columns: 1fr; } }

/* Custom party banner (below the 3 packages) */
.custom-party { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background:linear-gradient(120deg, var(--sky-soft), var(--yellow-soft)); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); padding:28px 32px; margin-top:28px; }
.custom-party h3 { margin-bottom:4px; }
.custom-party p { color:var(--ink-soft); margin:0; max-width:560px; }
.custom-party .cp-text { flex:1; min-width:260px; }

/* Franchise popup (home page) */
.fr-pop { position:fixed; right:20px; bottom:20px; width:330px; max-width:calc(100vw - 40px); background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-lg); padding:20px 22px; z-index:200; transform:translateY(20px); opacity:0; transition:opacity .4s ease, transform .4s ease; }
.fr-pop.show { opacity:1; transform:none; }
.fr-pop h4 { font-family:var(--font-head); color:var(--ink); margin-bottom:6px; font-size:1.05rem; padding-right:14px; }
.fr-pop p { color:var(--ink-soft); font-size:.92rem; margin-bottom:14px; }
.fr-pop .fr-close { position:absolute; top:8px; right:12px; background:none; border:0; font-size:1.4rem; color:var(--ink-soft); cursor:pointer; line-height:1; }
.fr-pop .fr-close:hover { color:var(--coral-deep); }
@media (max-width:520px){ .fr-pop { right:12px; left:12px; bottom:12px; width:auto; } }

/* Party examples lightbox gallery */
.plb { position:fixed; inset:0; background:rgba(24,18,28,.93); z-index:1000; display:none; align-items:center; justify-content:center; }
.plb.open { display:flex; }
.plb-main { max-width:92vw; max-height:80vh; border-radius:12px; box-shadow:0 20px 60px rgba(0,0,0,.5); object-fit:contain; background:#000; }
.plb-close { position:absolute; top:16px; right:22px; background:none; border:0; color:#fff; font-size:2.2rem; cursor:pointer; line-height:1; }
.plb-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.16); border:0; color:#fff; width:52px; height:52px; border-radius:50%; font-size:1.4rem; cursor:pointer; display:grid; place-items:center; }
.plb-nav:hover { background:rgba(255,255,255,.32); }
.plb-prev { left:18px; } .plb-next { right:18px; }
.plb-cap { position:absolute; top:20px; left:50%; transform:translateX(-50%); color:#fff; font-family:var(--font-head); font-weight:600; font-size:1.05rem; }
.plb-count { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); color:#fff; font-family:var(--font-head); font-size:.9rem; background:rgba(0,0,0,.45); padding:6px 14px; border-radius:999px; }
@media (max-width:600px){ .plb-nav{ width:44px; height:44px; } .plb-main{ max-height:72vh; } }

/* Party examples — grid gallery */
.pgal { position:fixed; inset:0; background:rgba(24,18,28,.9); z-index:1000; display:none; overflow-y:auto; padding:28px 16px; }
.pgal.open { display:block; }
.pgal-panel { background:var(--paper); border-radius:16px; max-width:940px; margin:0 auto; padding:20px 22px 26px; box-shadow:var(--shadow-lg); }
.pgal-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.pgal-head h3 { font-family:var(--font-head); color:var(--ink); }
.pgal-close { background:none; border:0; font-size:1.9rem; line-height:1; color:var(--ink-soft); cursor:pointer; }
.pgal-close:hover { color:var(--coral-deep); }
.pgal-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(180px,1fr)); gap:12px; }
.pgal-grid img { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:10px; cursor:pointer; background:#f0ece4; transition:transform .15s; }
.pgal-grid img:hover { transform:scale(1.03); }
.pgal-full { position:fixed; inset:0; background:rgba(15,12,18,.96); z-index:1100; display:none; align-items:center; justify-content:center; }
.pgal-full.open { display:flex; }
.pgal-full img { max-width:92vw; max-height:86vh; object-fit:contain; border-radius:10px; }
.pgf-close { position:absolute; top:16px; right:22px; background:none; border:0; color:#fff; font-size:2.2rem; cursor:pointer; line-height:1; }
.pgf-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.16); border:0; color:#fff; width:52px; height:52px; border-radius:50%; font-size:1.4rem; cursor:pointer; display:grid; place-items:center; }
.pgf-nav:hover { background:rgba(255,255,255,.32); }
.pgf-prev { left:18px; } .pgf-next { right:18px; }
.pgf-count { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); color:#fff; background:rgba(0,0,0,.45); padding:6px 14px; border-radius:999px; font-size:.9rem; }
@media (max-width:600px){ .pgal-grid{ grid-template-columns:repeat(auto-fill, minmax(130px,1fr)); } .pgf-nav{ width:44px; height:44px; } }
