/*
Theme Name: Funnery Play Park
Theme URI: https://funneryplaypark.com
Author: The Funnery Play Park
Author URI: https://funneryplaypark.com
Description: A bright, playful, family-friendly theme for The Funnery Play Park & Café in Newmarket, Ontario.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: funnery
Tags: custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --sun:       #FFD93D;
  --orange:    #FF8C42;
  --coral:     #FF6B6B;
  --pink:      #FF9EBB;
  --mint:      #6DDBB4;
  --sky:       #74C7EC;
  --lavender:  #B39DDB;
  --white:     #FFFFFF;
  --offwhite:  #FFF9F0;
  --cream:     #FFF5E6;
  --text:      #3D2C2C;
  --muted:     #9E8E8E;
  --dark:      #2C2020;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 6px 28px rgba(0,0,0,0.08);
  --shadow-h:  0 14px 40px rgba(0,0,0,0.13);
  --font-head: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .85; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: .3px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .15s;
  letter-spacing: .3px;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-orange {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(255,140,66,.35);
}
.btn-orange:hover { box-shadow: 0 10px 28px rgba(255,140,66,.45); color: #fff !important; }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover { color: var(--orange); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--sun);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--dark); font-weight: 800; }
.top-bar .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar .waiver-link {
  background: var(--orange);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
}
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo img { height: 64px; width: auto; }
.site-logo-img { height: 52px; width: auto; }
.site-logo:hover { opacity: 1; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.current-menu-item {
  background: var(--cream);
  color: var(--orange);
  opacity: 1;
}
.nav-book-btn {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 9px 18px !important;
  box-shadow: 0 4px 14px rgba(255,140,66,.35);
}
.nav-book-btn:hover { background: #e6782e !important; }

/* Cart icon */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 20px;
  padding: 8px;
}
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero-home {
  background: linear-gradient(160deg, #FFF3C4 0%, #FFE0EC 55%, #D4F1FF 100%);
  padding: 70px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-float {
  position: absolute;
  font-size: 52px;
  animation: floatEmoji 3.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.hero-float:nth-child(1) { top: 16px;  left: 5%;   animation-delay: 0s;   }
.hero-float:nth-child(2) { top: 30px;  right: 6%;  animation-delay: .8s;  }
.hero-float:nth-child(3) { bottom: 50px; left: 9%; animation-delay: 1.4s; font-size:38px; }
.hero-float:nth-child(4) { bottom: 40px; right: 8%;animation-delay: .4s;  font-size:42px; }

@keyframes floatEmoji {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}

.hero-logo {
  margin: 0 auto 24px;
  max-width: 200px;
}
.hero-tagline {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(255,140,66,.35);
}
.hero-home h1 {
  font-size: clamp(40px, 7vw, 70px);
  margin-bottom: 14px;
}
.hero-home h1 .hl {
  color: var(--orange);
  position: relative;
}
.hero-home h1 .hl::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 7px;
  background: var(--sun);
  border-radius: 4px;
  z-index: -1;
}
.hero-home p {
  font-size: 18px;
  color: #7a6060;
  max-width: 540px;
  margin: 0 auto 28px;
  font-weight: 600;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.hero-badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); flex-shrink:0; }

/* ============================================================
   FEATURE BLOCKS (home 3-col)
   ============================================================ */
.feature-blocks { padding: 60px 24px; max-width: 1080px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); opacity: 1; }
.feature-card .fc-icon { font-size: 48px; }
.feature-card .fc-title { font-family: var(--font-head); font-size: 24px; }
.feature-card .fc-desc { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.6; }
.feature-card .fc-link { font-size: 14px; font-weight: 900; margin-top: auto; }

.fc-play   { border-top: 5px solid var(--mint); }   .fc-play   .fc-link { color: var(--mint); }
.fc-party  { border-top: 5px solid var(--orange); } .fc-party  .fc-link { color: var(--orange); }
.fc-events { border-top: 5px solid var(--lavender); }.fc-events .fc-link { color: var(--lavender); }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--sun);
  padding: 50px 40px;
  text-align: center;
}
.about-strip h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 14px; }
.about-strip p  { font-size: 16px; max-width: 680px; margin: 0 auto 24px; font-weight: 600; color: var(--dark); }
.about-bullets {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 28px;
  padding: 6px 8px;
  overflow: visible;
}
.about-bullet {
  background: #fff;
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   HOURS SECTION
   ============================================================ */
.hours-map { padding: 60px 24px; max-width: 1080px; margin: 0 auto; }
.hours-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.hours-card, .map-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.hours-card h3, .map-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1.5px dashed #f0ece6;
  font-weight: 700;
  font-size: 14px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--muted); }
.hours-list .time { color: var(--text); font-weight: 900; }
.map-card iframe { border-radius: 12px; width: 100%; border: 0; }
.contact-details { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-details a { color: var(--orange); font-weight: 800; font-size: 14px; }

/* ============================================================
   WEEKDAY BANNER
   ============================================================ */
.weekday-banner {
  background: var(--sun);
  text-align: center;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}
.weekday-banner em { font-style: normal; font-weight: 600; opacity: .75; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #FFF3C4 0%, #FFE0EC 60%, #D4F1FF 100%);
  padding: 50px 24px 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.page-hero p  { font-size: 16px; color: #7a6060; font-weight: 600; max-width: 560px; margin: 0 auto; }

/* ============================================================
   ADMISSION PAGE
   ============================================================ */
.admission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}
.admission-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.admission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.admission-card .ac-emoji { font-size: 48px; margin-bottom: 14px; }
.admission-card .ac-name { font-family: var(--font-head); font-size: 22px; margin-bottom: 4px; }
.admission-card .ac-price {
  font-family: var(--font-head);
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
  margin: 10px 0 4px;
}
.admission-card .ac-price sup { font-size: 22px; vertical-align: super; }
.admission-card .ac-tax { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
.admission-card ul { list-style: none; text-align: center; margin-bottom: 20px; flex-grow: 1; }
.admission-card ul li {
  font-size: 12.5px; font-weight: 700;
  padding: 5px 0;
  border-bottom: 1.5px dashed #f0ece6;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap;
}
.admission-card ul li::before { content: '✓'; color: var(--mint); font-weight: 900; flex-shrink: 0; }
.admission-card ul li:last-child { border-bottom: none; }
.ac-popular {
  position: absolute; top: 14px; right: 14px;
  background: var(--coral); color: #fff;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
}
.ac-top-orange { border-top: 5px solid var(--orange); }
.ac-top-mint   { border-top: 5px solid var(--mint); }
.ac-top-lav    { border-top: 5px solid var(--lavender); }
.ac-top-sun    { border-top: 5px solid var(--sun); }

/* ============================================================
   PACKAGE CARDS (party packages page)
   ============================================================ */
.pkg-section-title {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.pkg-section-title h2 { font-size: clamp(26px, 4vw, 36px); }
.pkg-stripe { height: 5px; flex: 1; border-radius: 4px; }
.pkg-section-sub { font-size: 15px; color: var(--muted); font-weight: 600; margin-bottom: 28px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  overflow: hidden;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px) rotate(.5deg); box-shadow: var(--shadow-h); }
.pkg-card-top { padding: 26px 22px 18px; text-align: center; }
.pkg-emoji { font-size: 48px; display: block; margin-bottom: 12px; }
.pkg-type-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 8px;
}
.pkg-name { font-family: var(--font-head); font-size: 24px; margin-bottom: 4px; }
.pkg-guests { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.pkg-price { font-family: var(--font-head); font-size: 44px; line-height: 1; }
.pkg-price sup { font-size: 20px; vertical-align: super; }
.pkg-tax { font-size: 12px; color: var(--muted); font-weight: 700; }
.pkg-card-footer {
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 2px dashed #f0ece6;
}
.pkg-footer-label { font-size: 13px; font-weight: 800; }
.pkg-arrow-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: transform .2s;
}
.pkg-card:hover .pkg-arrow-btn { transform: scale(1.15) rotate(-15deg); }
.hot-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--coral); color: #fff;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
  box-shadow: 0 3px 8px rgba(255,107,107,.4);
}

.feast .pkg-card-top { background: linear-gradient(160deg,#FFF8E1,#FFF0E6); }
.feast .pkg-type-tag { background: #FFE0C2; color: #CC6000; }
.feast .pkg-price    { color: var(--orange); }
.feast .pkg-footer-label { color: var(--orange); }
.feast .pkg-arrow-btn { background: var(--orange); color: #fff; }

.theme .pkg-card-top { background: linear-gradient(160deg,#F3EEFF,#FFE8F4); }
.theme .pkg-type-tag { background: #EAD9FF; color: #6B3BAB; }
.theme .pkg-price    { color: var(--lavender); }
.theme .pkg-footer-label { color: var(--lavender); }
.theme .pkg-arrow-btn { background: var(--lavender); color: #fff; }

/* ============================================================
   MODAL
   ============================================================ */
.funnery-overlay {
  position: fixed; inset: 0;
  background: rgba(61,44,44,.5);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.funnery-overlay.open { opacity: 1; pointer-events: all; }
.funnery-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 560px;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  transform: translateY(30px) scale(.96);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.funnery-overlay.open .funnery-modal { transform: none; }
.modal-top {
  padding: 28px 28px 20px;
  text-align: center;
  position: sticky; top: 0; z-index: 10;
  border-radius: 24px 24px 0 0;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.07); border: none; cursor: pointer;
  font-size: 17px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: rgba(0,0,0,.13); }
.modal-emoji { font-size: 52px; display: block; margin-bottom: 8px; }
.modal-type-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
}
.modal-name { font-family: var(--font-head); font-size: 30px; margin-bottom: 4px; }
.modal-guests { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.modal-price-line { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.modal-price { font-family: var(--font-head); font-size: 38px; }
.modal-tax { font-size: 14px; color: var(--muted); font-weight: 700; }
.modal-body { padding: 20px 24px 28px; }

.extras-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.2px;color:#c0b0b0;margin-bottom:8px; }
.extras-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.extra-chip { background:#FFF3E0;color:#CC6000;font-size:13px;font-weight:700;padding:6px 14px;border-radius:100px;border:1.5px solid #FFD0A0; }
.extra-chip.th { background:#F0E8FF;color:#6B3BAB;border-color:#D4B8FF; }

.acc-item { border:2px solid #F2ECE4;border-radius:14px;margin-bottom:10px;overflow:hidden; }
.acc-head { display:flex;align-items:center;justify-content:space-between;padding:14px 18px;cursor:pointer;font-weight:800;font-size:14px;user-select:none;transition:background .15s; }
.acc-head:hover { background:#FAFAF8; }
.acc-left { display:flex;align-items:center;gap:10px; }
.acc-ico { font-size:20px; }
.acc-chev { font-size:11px;color:var(--muted);transition:transform .2s; }
.acc-item.open .acc-chev { transform:rotate(180deg); }
.acc-body { display:none;padding:0 18px 16px; }
.acc-item.open .acc-body { display:block; }
.acc-ul { list-style:none; }
.acc-ul li { display:flex;align-items:flex-start;gap:9px;padding:6px 0;font-size:14px;font-weight:600;border-bottom:1.5px dashed #F2ECE4;line-height:1.4; }
.acc-ul li:last-child { border-bottom:none; }
.acc-check { font-size:13px;flex-shrink:0;margin-top:1px; }

.book-btn { display:block;width:100%;padding:17px;border:none;border-radius:14px;font-family:var(--font-body);font-size:17px;font-weight:900;color:#fff;cursor:pointer;margin-top:22px;text-decoration:none;text-align:center;transition:transform .2s,box-shadow .2s;letter-spacing:.3px; }
.book-btn:hover { transform:translateY(-2px); color:#fff; }

.m-feast .modal-top { background:linear-gradient(160deg,#FFF8E1,#FFF0E6); }
.m-feast .modal-type-tag { background:#FFE0C2;color:#CC6000; }
.m-feast .modal-price { color:var(--orange); }
.m-feast .acc-check { color:var(--orange); }
.m-feast .book-btn { background:linear-gradient(135deg,#FF8C42,#FF6020);box-shadow:0 8px 24px rgba(255,140,66,.35); }

.m-theme .modal-top { background:linear-gradient(160deg,#F3EEFF,#FFE8F4); }
.m-theme .modal-type-tag { background:#EAD9FF;color:#6B3BAB; }
.m-theme .modal-price { color:var(--lavender); }
.m-theme .acc-check { color:var(--lavender); }
.m-theme .book-btn { background:linear-gradient(135deg,#B39DDB,#8B5CF6);box-shadow:0 8px 24px rgba(139,92,246,.3); }

/* ============================================================
   RULES PAGE
   ============================================================ */
.rules-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;margin-top:36px; }
.rules-card { background:#fff;border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow); }
.rules-card h3 { font-family:var(--font-head);font-size:22px;margin-bottom:18px;display:flex;align-items:center;gap:10px; }
.rules-list { list-style:none; }
.rules-list li { padding:8px 0;border-bottom:1.5px dashed #f0ece6;font-size:14px;font-weight:600;line-height:1.5;display:flex;gap:10px;align-items:flex-start; }
.rules-list li:last-child { border-bottom:none; }
.rules-list li::before { content:'📌';font-size:12px;flex-shrink:0;margin-top:3px; }

/* ============================================================
   MASCOTS PAGE
   ============================================================ */
.mascots-hero { text-align:center;padding:40px 24px; }
.mascot-img-wrap { border-radius:var(--radius-lg);overflow:hidden;max-width:800px;margin:0 auto 32px;box-shadow:var(--shadow); }
.mascot-cta-card { background:linear-gradient(135deg,#FFF3C4,#FFE0EC);border-radius:var(--radius-lg);padding:40px;text-align:center;max-width:600px;margin:0 auto;box-shadow:var(--shadow); }
.mascot-cta-card h3 { font-family:var(--font-head);font-size:28px;margin-bottom:12px; }
.mascot-cta-card p { font-size:15px;color:#7a6060;font-weight:600;margin-bottom:24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:36px; }
.contact-info-card { background:#fff;border-radius:var(--radius-lg);padding:36px;box-shadow:var(--shadow); }
.contact-info-card h3 { font-family:var(--font-head);font-size:24px;margin-bottom:20px; }
.contact-item { display:flex;align-items:flex-start;gap:14px;margin-bottom:18px; }
.contact-item .ci-icon { font-size:24px;flex-shrink:0; }
.contact-item .ci-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-bottom:3px; }
.contact-item .ci-val { font-size:15px;font-weight:700; }
.contact-item .ci-val a { color:var(--orange); }
.social-row { display:flex;gap:12px;margin-top:24px; }
.social-btn { display:flex;align-items:center;gap:8px;padding:10px 18px;border-radius:100px;font-size:13px;font-weight:800;text-decoration:none; }
.social-fb { background:#1877F2;color:#fff; }
.social-ig { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);color:#fff; }

/* ============================================================
   PERKS BAND
   ============================================================ */
.perks-band { background:linear-gradient(135deg,#FFF3C4 0%,#FFE8F4 50%,#D4F4FF 100%);padding:60px 24px;text-align:center; }
.perks-band h2 { font-family:var(--font-head);font-size:clamp(26px,4vw,36px);margin-bottom:6px; }
.perks-band .sub { color:var(--muted);font-size:15px;font-weight:600;margin-bottom:36px; }
.perks-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:16px;max-width:980px;margin:0 auto; }
.perk { background:#fff;border-radius:18px;padding:24px 12px;box-shadow:0 4px 18px rgba(0,0,0,.06);transition:transform .2s;text-align:center; }
.perk:hover { transform:translateY(-4px); }
.perk-icon { font-size:34px;margin-bottom:10px; }
.perk-title { font-weight:900;font-size:12px;margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.perk-desc { font-size:12px;color:var(--muted);line-height:1.5;font-weight:600; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding:70px 24px;text-align:center;background:#fff; }
.cta-band h2 { font-family:var(--font-head);font-size:clamp(28px,5vw,44px);margin-bottom:12px; }
.cta-band p { font-size:16px;color:var(--muted);font-weight:600;margin-bottom:28px; }
.cta-phone { margin-top:16px;font-size:15px;color:var(--muted);font-weight:700; }
.cta-phone a { color:var(--orange);font-weight:900; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 50px 24px 24px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: var(--font-head); font-size: 16px; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 13px; font-weight: 600; transition: color .15s; }
.footer-col ul li a:hover { color: var(--sun); opacity: 1; }
.footer-social { display:flex;gap:10px;margin-top:16px; }
.footer-social a { width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:16px;color:#fff;transition:background .15s; }
.footer-social a:hover { background:var(--orange);opacity:1; }
.footer-bottom {
  max-width: 1080px; margin: 20px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--sun); font-weight: 700; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .products { display: grid !important; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)) !important; gap: 20px !important; }
.woocommerce ul.products li.product { background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow);overflow:hidden;transition:transform .22s,box-shadow .22s;margin:0 !important; }
.woocommerce ul.products li.product:hover { transform:translateY(-5px);box-shadow:var(--shadow-h); }
.woocommerce ul.products li.product a img { transition:transform .3s; }
.woocommerce ul.products li.product:hover a img { transform:scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family:var(--font-head);font-size:18px;padding:16px 16px 4px; }
.woocommerce ul.products li.product .price { color:var(--orange);font-weight:900;font-size:18px;padding:0 16px 4px; }
.woocommerce ul.products li.product .button { display:block;width:calc(100% - 32px);margin:8px 16px 16px;padding:11px;background:var(--orange);color:#fff;border-radius:100px;font-weight:900;font-size:14px;text-align:center;transition:opacity .15s; }
.woocommerce ul.products li.product .button:hover { background:#e6782e; }
.woocommerce-page .page-hero { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: fixed; inset: 0; top: 80px; background: #fff; padding: 24px; z-index: 400; overflow-y:auto; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 18px; padding: 12px 16px; border-radius: 12px; }
  .nav-toggle { display: flex; }
  .hours-map-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-float { font-size: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .pkg-grid { grid-template-columns: 1fr; }
  .admission-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-toggle:hover { background: var(--cream); color: var(--orange); opacity: 1; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 600;
  overflow: hidden;
  border: 1.5px solid #f0ece6;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #f5f0eb;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--orange); opacity: 1; }

/* ============================================================
   MOBILE IMPROVEMENTS
   ============================================================ */
@media (max-width: 900px) {
  .perks-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-badges { flex-direction: column; align-items: center; }
  .hours-map-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .top-bar { flex-direction: column; text-align: center; font-size: 12px; gap: 4px; }
  .top-bar-right { justify-content: center; }
  .header-inner { padding: 10px 16px; }
  .site-logo span:first-child { font-size: 18px; }
  .hero-home { padding: 50px 16px 30px; }
  .hero-home h1 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .admission-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 24px; }
  .section { padding: 40px 0; }
  .perks-band { padding: 40px 16px; }
  .modal-top { padding: 20px 20px 16px; }
  .modal-body { padding: 16px 20px 24px; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; background: var(--cream); border-radius: 8px; margin-top: 4px; }
  .hero-float { display: none; }
}
@media (max-width: 480px) {
  .perks-grid { grid-template-columns: 1fr 1fr !important; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero { padding: 36px 16px 28px; }
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .woocommerce-breadcrumb { font-size:13px;font-weight:600;color:var(--muted);margin-bottom:20px; }
.woocommerce h1.page-title { font-family:var(--font-head);font-size:32px;color:var(--dark);margin-bottom:24px; }
.woocommerce ul.products li.product a img { border-radius:var(--radius);box-shadow:var(--shadow); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family:var(--font-head);font-size:16px;color:var(--dark); }
.woocommerce ul.products li.product .price { color:var(--orange);font-weight:900; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { background:var(--orange)!important;color:#fff!important;border-radius:100px!important;font-weight:800!important;border:none!important; }
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background:#e6782e!important; }
.woocommerce table.shop_table { border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow); }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { background:var(--orange)!important;border-radius:100px!important;font-weight:900!important; }

/* Hide SiteOrigin/CWS raw shortcode text on cart page */
.woocommerce-cart .entry-content > p:first-child,
.woocommerce-cart .entry-content > p:last-child {
  display: none !important;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

  /* Top bar */
  .top-bar { flex-direction: column; gap: 6px; padding: 8px 16px; font-size: 11px; text-align: center; }
  .top-bar-right { justify-content: center; }

  /* Header */
  .header-inner { padding: 10px 16px; }
  .site-logo-img { height: 40px !important; }
  .main-nav { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: #fff; padding: 80px 24px 24px; z-index: 400; overflow-y: auto; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav > a { font-size: 16px; padding: 12px 0; border-bottom: 1px solid #f0ece6; }
  .nav-book-btn { margin-top: 16px; text-align: center; }
  .nav-toggle { display: flex !important; }
  .nav-cart { display: none; }

  /* Page hero */
  .page-hero h1 { font-size: 28px; }
  .page-hero p { white-space: normal !important; font-size: 14px; padding: 0 16px; }

  /* Home hero */
  .hero-section { padding: 40px 16px; }
  .hero-section h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-badges { flex-direction: column; align-items: center; gap: 8px; }

  /* Hours/map grid */
  .hours-map-inner { grid-template-columns: 1fr !important; }

  /* Party packages */
  .pkg-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Admission */
  .admission-grid { grid-template-columns: 1fr !important; }

  /* Rules */
  .rules-grid { grid-template-columns: 1fr !important; }

  /* Add-ons */
  .addons-grid, [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Private parties */
  .woocommerce-checkout .col2-set { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }

  /* WooCommerce shop */
  .funnery-product-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .funnery-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce div.product { grid-template-columns: 1fr !important; }

  /* Mascot flip grid */
  .mascot-flip-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Modal */
  .funnery-modal-inner { width: 95vw !important; padding: 20px !important; max-height: 90vh; overflow-y: auto; }
  .modal-sects { grid-template-columns: 1fr !important; }

  /* Party packages page */
  .perks-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Private parties side by side */
  .private-parties-grid { grid-template-columns: 1fr !important; }

  /* Events hero */
  .events-hero p { white-space: normal !important; }
}

@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr !important; }
  .funnery-product-grid { grid-template-columns: 1fr !important; }
  .perks-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-inner { grid-template-columns: 1fr !important; }
  .hero-section h1 { font-size: 26px; }
  .mascot-flip-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ══════════════════════════════════════════
   EXPLORE OUR SPACE — carousel cards
   ══════════════════════════════════════════ */
.explore-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 50px;
}
.explore-header {
  text-align: center;
  margin-bottom: 32px;
}
.explore-header h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.explore-header p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform .25s, box-shadow .25s;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.card-carousel {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: top center;
}
.card-carousel .slide.active { opacity: 1; }

/* Text slides — fun words between photos */
.card-carousel .slide-text {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.card-carousel .slide-text.active { opacity: 1; }
.slide-text .fun-emoji {
  font-size: 60px;
  margin-bottom: 14px;
  animation: bounceEmoji 1s ease infinite alternate;
}
.slide-text .fun-word {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
@keyframes bounceEmoji {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.card-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.card-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background .3s;
  cursor: pointer;
}
.card-dots span.active { background: #fff; }
.card-body {
  padding: 16px 18px 20px;
  text-align: center;
}
.card-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}
.card-body p {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .explore-grid { grid-template-columns: 1fr; }
  .card-carousel { height: 200px; }
}

/* moments strip removed — photos merged into carousels */
