/* =========================================================
   Party Favours by Thuli — shared styles
   Playful • bubbly • bold • warm • polished. Bulawayo, Zimbabwe.
   ========================================================= */

:root {
  /* Warm ivory base (from logo background) */
  --cream:      #FBF6EC;
  --cream-2:    #F4ECDA;
  --sand:       #E8DABE;

  /* Brand orange + gold (from logo) — kept var names for continuity */
  --rose:       #F26A21;  /* primary orange */
  --rose-deep:  #C6470E;  /* deep orange */
  --yellow:     #F1CE73;  /* light gold (highlighter) */
  --yellow-2:   #F7E4B0;  /* pale gold */
  --teal:       #C79A3A;  /* gold / ochre (secondary) */
  --teal-2:     #E6D29B;  /* light gold */
  --coral:      #F58A4B;  /* light orange */
  --sky:        #EBA968;  /* peach */
  --grape:      #B96A2E;  /* terracotta / bronze */

  --ink:        #3C2E24;  /* warm dark brown */
  --ink-soft:   #6E5B49;
  --white:      #ffffff;

  --shadow-sm: 0 4px 0 rgba(46,34,48,.08), 0 8px 22px rgba(226,46,130,.10);
  --shadow-md: 0 6px 0 rgba(46,34,48,.10), 0 16px 36px rgba(226,46,130,.16);
  --shadow-lg: 0 30px 60px rgba(46,34,48,.22);
  --shadow-pop: 0 5px 0 var(--rose-deep);

  --radius:    26px;
  --radius-lg: 38px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --font-head: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration: none; }
a:hover { color: var(--rose); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.script { font-family: var(--font-script); color: var(--rose-deep); font-weight: 700; }

/* Emphasis span — now a bubbly highlighted word, not an elegant italic */
.serif-italic {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: normal;
  color: var(--rose-deep);
  position: relative;
  white-space: nowrap;
}
.serif-italic::after {
  content: "";
  position: absolute; left: -.08em; right: -.08em; bottom: .04em; height: .34em;
  background: var(--yellow);
  border-radius: 999px; z-index: -1; opacity: .85;
  transform: rotate(-1.2deg);
}

/* ---------- Decorative floating confetti / balloons ---------- */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble { position: absolute; animation: float 8s ease-in-out infinite; }
.bubble.b1 { width: 30px; height: 30px; left: 8%;  top: 20%; background: var(--rose);   border-radius: 8px; transform: rotate(18deg); animation-delay: 0s; }
.bubble.b2 { width: 22px; height: 22px; left: 82%; top: 14%; background: var(--teal);   border-radius: 50%; animation-delay: 1.4s; }
.bubble.b3 { width: 26px; height: 26px; left: 66%; top: 62%; background: var(--yellow); border-radius: 7px; transform: rotate(-12deg); animation-delay: .6s; }
.bubble.b4 { width: 18px; height: 18px; left: 22%; top: 70%; background: var(--sky);    border-radius: 50%; animation-delay: 2.1s; }
.bubble.b5 { width: 24px; height: 24px; left: 46%; top: 16%; background: var(--coral);  border-radius: 7px; transform: rotate(24deg); animation-delay: 1s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-24px) rotate(16deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 236, .9);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--sand);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.brand .dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 3px 0 var(--rose-deep);
  display: grid; place-items: center; color: #fff; font-family: var(--font-script); font-size: 1.5rem; line-height: 1;
}
.brand .logo-mark { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 3px 0 var(--rose-deep); }
.site-footer .brand .logo-mark { box-shadow: 0 3px 0 rgba(0,0,0,.35); }
.brand small { display: block; font-family: var(--font-body); font-weight: 800; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); }
.nav-links { display: flex; align-items: center; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.nav-links a:hover { color: var(--rose-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.7rem; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 0; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(2px); }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 5px 0 var(--rose-deep); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 7px 0 var(--rose-deep); }
.btn-primary:active { box-shadow: 0 3px 0 var(--rose-deep); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 5px 0 #128C3E; }
.btn-whatsapp:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 7px 0 #128C3E; }
.btn-ghost { background: #fff; color: var(--rose-deep); box-shadow: 0 5px 0 var(--sand); border: 2px solid var(--sand); }
.btn-ghost:hover { color: var(--rose-deep); transform: translateY(-2px); border-color: var(--yellow); box-shadow: 0 7px 0 var(--yellow); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 4.5vw, 3.5rem); overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -10%, #FBD9BE, transparent 60%),
    radial-gradient(820px 440px at 4% 6%, var(--yellow-2), transparent 62%),
    var(--cream);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow); border: 0; color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .02em;
  padding: .45rem 1rem; border-radius: var(--radius-pill); box-shadow: 0 4px 0 rgba(0,0,0,.08); margin-bottom: 1.1rem;
  transform: rotate(-1.5deg);
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: .6rem; font-weight: 700; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 34ch; margin: 0 0 1.6rem; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.7rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .92rem; font-weight: 700; }
.hero-trust .stars { color: #FFB000; letter-spacing: 2px; }

.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(360px, 52vh, 480px); object-fit: cover; object-position: center 38%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid #fff; transform: rotate(-2.5deg); }
.hero-media .float-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: .7rem 1rem; font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; gap: .55rem; animation: float 6s ease-in-out infinite; border: 2px solid var(--sand);
}
.hero-media .fc-1 { left: -18px; top: 10%; transform: rotate(-4deg); }
.hero-media .fc-2 { right: -14px; bottom: 12%; animation-delay: 1.5s; transform: rotate(4deg); }
.hero-media .emoji { font-size: 1.4rem; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.section.tint { background: var(--cream-2); }
.section.blush { background: linear-gradient(180deg, var(--teal-2), var(--cream)); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 2.6rem; }
.section-head .kicker { font-family: var(--font-script); font-size: 1.9rem; color: var(--teal); display: block; transform: rotate(-2deg); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; font-weight: 600; }

/* ---------- Category / product cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 3px solid #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px) rotate(-.6deg); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.card .media { aspect-ratio: 4/3; overflow: hidden; }
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .media img { transform: scale(1.06); }
.card .body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card .tag { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .03em; text-transform: uppercase; color: #fff; background: var(--rose); padding: .28rem .8rem; border-radius: var(--radius-pill); }
.card:nth-child(4n+2) .tag { background: var(--teal); }
.card:nth-child(4n+3) .tag { background: var(--coral); }
.card:nth-child(4n+4) .tag { background: var(--grape); }
.card:nth-child(4n+1) .tag { background: var(--rose); }
.card h3 { font-size: 1.34rem; margin: .15rem 0 0; }
.card p { color: var(--ink-soft); margin: 0; font-size: .97rem; font-weight: 600; }
.card .price { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--rose-deep); font-size: 1.25rem; }
.card .price small { color: var(--ink-soft); font-weight: 700; font-size: .78rem; }
.card .card-link { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--rose-deep); display: inline-flex; align-items: center; gap: .35rem; }
.card .card-link::after { content: "→"; transition: transform .2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }
.card .price + .card-link { margin-top: .4rem; }
.price-note { text-align: center; color: var(--ink-soft); font-size: .92rem; margin-top: 1.2rem; font-weight: 600; }

/* ---------- Feature / split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 6px solid #fff; transform: rotate(1.5deg); }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.split ul.ticks { list-style: none; padding: 0; margin: 1.1rem 0 1.6rem; display: grid; gap: .6rem; }
.split ul.ticks li { padding-left: 2.1rem; position: relative; color: var(--ink-soft); font-weight: 600; }
.split ul.ticks li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.5rem; height: 1.5rem; background: var(--teal); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; font-weight: 800; box-shadow: 0 2px 0 rgba(0,0,0,.12); }

/* ---------- Why-us / benefit tiles ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.benefit { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.3rem; text-align: center; box-shadow: var(--shadow-sm); border: 3px solid #fff; }
.benefit:hover { border-color: var(--yellow); transform: translateY(-4px); }
.benefit .ico { width: 64px; height: 64px; margin: 0 auto .8rem; border-radius: 50%; display: grid; place-items: center; color: var(--rose-deep); background: var(--yellow-2); box-shadow: 0 4px 0 rgba(0,0,0,.08); }
.benefit .ico svg { width: 30px; height: 30px; }
.benefit:nth-child(2) .ico { background: var(--teal-2); }
.benefit:nth-child(3) .ico { background: #FBD9C0; }
.benefit:nth-child(4) .ico { background: #EFD9A6; }
.benefit h3 { font-size: 1.18rem; margin-bottom: .3rem; }
.benefit p { color: var(--ink-soft); font-size: .92rem; margin: 0; font-weight: 600; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { background: #fff; border-radius: var(--radius); padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; border: 3px solid #fff; }
.step .num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: #fff; background: var(--rose); width: 3.4rem; height: 3.4rem; border-radius: 50%; display: grid; place-items: center; line-height: 1; box-shadow: 0 4px 0 var(--rose-deep); margin-bottom: .6rem; }
.step:nth-child(2) .num { background: var(--teal); box-shadow: 0 4px 0 #9A7526; }
.step:nth-child(3) .num { background: var(--coral); box-shadow: 0 4px 0 #C6470E; }
.step h3 { margin: .2rem 0 .35rem; font-size: 1.28rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .96rem; font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-sm); border: 4px solid #fff; transition: transform .25s ease; }
.gallery img:nth-child(odd):hover { transform: scale(1.04) rotate(-2deg); }
.gallery img:nth-child(even):hover { transform: scale(1.04) rotate(2deg); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote { background: #fff; border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); border: 3px solid #fff; }
.quote:hover { border-color: var(--teal); }
.quote .stars { color: #FFB000; letter-spacing: 2px; margin-bottom: .5rem; font-size: 1.05rem; }
.quote p { font-family: var(--font-body); font-weight: 700; font-size: 1.06rem; color: var(--ink); margin: 0 0 .9rem; }
.quote .who { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.quote .who small { display: block; color: var(--ink-soft); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { background: #fff; border-radius: 18px; padding: .3rem 1.4rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm); border: 3px solid #fff; }
.faq details[open] { border-color: var(--yellow); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; padding: .95rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--rose); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 1rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.8rem); text-align: center;
  background: linear-gradient(135deg, var(--rose), var(--coral)); color: #fff; box-shadow: var(--shadow-md); border: 5px solid #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.96); max-width: 46ch; margin: 0 auto 1.5rem; font-size: 1.12rem; font-weight: 700; }
.cta-band .btn-ghost { background: #fff; box-shadow: 0 5px 0 rgba(0,0,0,.18); }
.cta-band .cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 5vw, 3rem);
  background: radial-gradient(700px 360px at 82% -20%, #FBD9BE, transparent 60%), radial-gradient(600px 320px at 2% 0%, var(--yellow-2), transparent 60%), var(--cream-2); }
.page-hero .crumbs { font-size: .88rem; color: var(--ink-soft); font-weight: 700; margin-bottom: .8rem; }
.page-hero .crumbs a { color: var(--ink-soft); }
.page-hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.4rem); max-width: 20ch; }
.page-hero p { color: var(--ink-soft); font-size: 1.14rem; max-width: 56ch; font-weight: 600; }

/* ---------- Prose (SEO content blocks) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.05rem; }
.prose ul { padding-left: 1.2rem; }
.prose ul li { margin-bottom: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); padding: 3.4rem 0 1.6rem; color: #F5E7EE; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.site-footer a { color: #F3D8E4; }
.site-footer a:hover { color: var(--yellow); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .96rem; font-weight: 600; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--yellow); }
.footer-about p { color: #EAD1DD; font-size: .96rem; max-width: 34ch; font-weight: 600; }
.footer-social { display: flex; gap: .6rem; margin-top: .8rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #F3D8E4; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: var(--rose); color: #fff; }
.footer-bottom { border-top: 2px solid rgba(255,255,255,.16); margin-top: 2.2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: #E3C6D3; font-weight: 600; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 0 #128C3E, 0 12px 26px rgba(37,211,102,.5);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; transform: scale(1.07); }
@keyframes pulse { 0%,100% { box-shadow: 0 6px 0 #128C3E, 0 12px 26px rgba(37,211,102,.5); } 50% { box-shadow: 0 6px 0 #128C3E, 0 12px 34px rgba(37,211,102,.85); } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .grid-3, .grid-4, .steps, .benefits, .quotes, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .split-media { max-width: 500px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: flex-start; gap: 0; padding: .5rem 1.25rem 1rem;
    border-bottom: 3px solid var(--sand); box-shadow: var(--shadow-sm); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: .55rem 0; border-bottom: 1px solid var(--sand); }
  .nav-links .btn { margin-top: .5rem; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .steps, .benefits, .quotes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-media img { transform: none; }
}
