/* =============================================
   CHATTY EMOJI — SHARED STYLESHEET
   chattyemoji-styles.css
   Include this on every page for consistency.
   Page-specific styles go in <style> tags on
   the individual page files.
============================================= */

:root {
  --yellow:       #FFB800;
  --yellow-dark:  #3a2800;
  --yellow-light: #FFF8E7;
  --yellow-mid:   #FFE08A;
  --red-alert:    #E24B4A;
  --green:        #27a04a;
  --bg:           #FFFDF5;
  --card-bg:      #FFFFFF;
  --text-primary: #1a1a1a;
  --text-muted:   #888880;
  --text-light:   #bbbbaa;
  --border:       rgba(0,0,0,0.10);
  --border-mid:   rgba(0,0,0,0.16);
  --radius-card:  18px;
  --radius-btn:   50px;
  --shadow-card:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(255,184,0,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, #FFB80018 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,245,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--yellow-dark); }

/* Social icons — desktop: right of Play Free Now button */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow-light);
  border: 1px solid var(--yellow-mid);
  color: var(--yellow-dark);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}

.nav-social-link:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.nav-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-cta {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  background: var(--yellow);
  color: var(--yellow-dark);
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: #FFC929; transform: scale(1.04); }

/* Hamburger button — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-hamburger:hover { background: var(--yellow-light); }

.nav-hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(255,253,245,0.98);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.2s ease;
}

.nav-drawer.open {
  max-height: 500px;
  padding: 1rem 0 1.2rem;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-drawer-links li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}

.nav-drawer-links li a:hover,
.nav-drawer-links li a.active {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}

.nav-drawer-cta {
  margin: 0.8rem 1.5rem 0.5rem;
}

.nav-drawer-cta a {
  display: block;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 12px;
  border-radius: var(--radius-btn);
  background: var(--yellow);
  color: var(--yellow-dark);
  text-decoration: none;
  transition: background 0.15s;
}

.nav-drawer-cta a:hover { background: #FFC929; }

/* Social icons row — inside mobile drawer */
.nav-drawer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.nav-drawer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow-light);
  border: 1px solid var(--yellow-mid);
  color: var(--yellow-dark);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}

.nav-drawer-socials a:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.nav-drawer-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* ---- RESPONSIVE BREAKPOINT ---- */
@media (max-width: 780px) {
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

@media (min-width: 781px) {
  .nav-hamburger { display: none; }
  .nav-drawer { display: none !important; }
}

/* ---- CONTAINER ---- */
.container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.container-wide {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

/* ---- HERO ---- */
.page-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.25rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-mid);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ---- BUTTONS ---- */
.btn-primary {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  padding: 14px 40px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: var(--yellow-dark);
  box-shadow: 0 4px 18px rgba(255,184,0,0.35);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #FFC929;
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,184,0,0.45);
}

.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  background: white;
  color: var(--text-muted);
  transition: transform 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-color: var(--yellow-mid);
  transform: scale(1.03);
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- CARDS ---- */
.content-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.content-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  transition: box-shadow 0.2s, transform 0.2s;
}

/* ---- SECTION LABELS ---- */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ---- DIVIDER ---- */
.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin: 2.5rem 0;
}

/* ---- SHOP CTA BLOCK ---- */
.shop-cta {
  text-align: center;
  background: var(--yellow);
  border-radius: 24px;
  padding: 2.2rem 1.5rem;
  margin-top: 2.5rem;
}

.shop-cta-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--yellow-dark);
  margin-bottom: 0.4rem;
}

.shop-cta-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(58,40,0,0.7);
  margin-bottom: 1.3rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.btn-shop {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  background: var(--yellow-dark);
  color: var(--yellow);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, opacity 0.15s;
}

.btn-shop:hover { transform: scale(1.05); opacity: 0.92; }

/* ---- FOOTER ---- */
.site-footer {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--yellow-dark); }

.footer-tagline {
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--text-light);
}
