/* ============================================================
   Kids FunZone – Premium Public Website Stylesheet
   Modern Child-Friendly Theme | Playful & Immersive Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Branding Colors (Redesigned dark theme: Deep Purple, Royal Purple, Indigo, Pink/Yellow accents) */
  --primary:         #EC4899;        /* Bright Pink Accent */
  --secondary:       #FACC15;        /* Golden Yellow Highlight */
  --accent:          #EC4899;        /* Bright Pink Accent */
  --mint:            #10E7B2;        /* Vibrant Mint */
  --purple:          #6D28D9;        /* Dark Violet */
  --yellow:          #FACC15;        /* Golden Yellow */
  --success:         #10E7B2;        /* Lime/Mint Green */
  --danger:          #EF4444;        /* Cherry/Vibrant Red */

  /* Backgrounds & Text (Deep Vibrant Dark Space) */
  --background:      #4B2E83;        /* Deep Purple Background */
  --background-alt:  #312E81;        /* Indigo Background */
  --surface:         #5E35B1;        /* Royal Purple Surface */
  --text-primary:    #FFFFFF;        /* High-contrast White text */
  --text-secondary:  #CBD5E1;        /* Soft Lavender Slate */
  --border:          rgba(255, 255, 255, 0.15); /* Frosted Border */

  /* Gradients */
  --gradient-primary:   linear-gradient(135deg, #6D28D9 0%, #EC4899 100%);
  --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #FACC15 100%);
  --gradient-accent:    linear-gradient(135deg, #FACC15 0%, #6D28D9 100%);
  --gradient-mint:      linear-gradient(135deg, #10E7B2 0%, #1E3A8A 100%);
  --gradient-blue:      linear-gradient(135deg, #1E3A8A 0%, #312E81 100%);
  --gradient-btn-primary:   linear-gradient(135deg, #EC4899 0%, #D81B60 100%);
  --gradient-btn-secondary: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);

  /* Border Radii (Rounded Corners 20px - 30px) */
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  30px;

  /* Card Padding Scale */
  --card-pad-sm: 16px;
  --card-pad-md: 24px;
  --card-pad-lg: 32px;

  /* Shadows */
  --shadow-sm:   0 6px 16px rgba(0, 0, 0, 0.2);
  --shadow-md:   0 16px 40px rgba(0, 0, 0, 0.3);
  --shadow-lg:   0 28px 56px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 10px 30px rgba(236, 72, 153, 0.35), 0 10px 30px rgba(250, 204, 21, 0.15);

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Global Reset ──────────────────────────────────────────── */
html {
  height: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  letter-spacing: -0.01em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondary);
}

/* ── Typography Gradients ───────────────────────────────────── */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--background-alt);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ── Layout & Header ───────────────────────────────────────── */
.sock-alert-bar {
  background: var(--gradient-primary);
  color: var(--surface);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1050;
  box-shadow: var(--shadow-sm);
}
.sock-alert-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.glass-navbar {
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(240, 235, 225, 0.5);
  border-radius: 0 0 25px 25px;
  transition: var(--transition);
  top: 0;
  z-index: 1040;
}
.glass-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

/* Navigation items */
.navbar-brand {
  font-family: var(--font-head);
  letter-spacing: -0.5px;
}
.navbar-nav.gap-2 {
  gap: 6px !important;
}
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-primary) !important;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin: 0;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(79, 142, 247, 0.1);
  color: var(--primary) !important;
}

/* Page Banner */
.page-header-banner {
  margin-top: 100px;
  padding: 45px 0 25px 0;
  background: linear-gradient(180deg, #FDF4F8 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header-banner .container {
  position: relative;
  z-index: 2;
}

.page-header-banner-bg {
  background-image: linear-gradient(180deg, rgba(253, 244, 248, 0.35) 0%, rgba(255, 255, 255, 0.45) 100%), url('../images/hero_playground.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.page-header-content-card {
  display: inline-block;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  border-radius: 50px;
  padding: 8px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: none;
}
.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(255, 51, 102, 0.35);
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--gradient-btn-primary);
  color: var(--surface) !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.btn-secondary {
  background: var(--gradient-btn-secondary);
  color: var(--surface) !important;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
}
.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, #DB2777 0%, #BE185D 100%);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--surface) !important;
  border-color: var(--primary);
}

/* ── Cards ──────────────────────────────────────────────────── */
.premium-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover .feature-icon-circle {
  transform: scale(1.08);
}

.video-thumb-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--secondary);
  color: #ffffff;
}

.premium-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.premium-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.premium-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pricing-card.popular {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-glow);
}
.pricing-card.popular .popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--surface);
  padding: 4px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: var(--font-head);
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge-premium {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
}
.badge-primary-light {
  background-color: #DBEAFE;
  color: #1E40AF;
}
.badge-success-light {
  background-color: #D1FAE5;
  color: #065F46;
}
.badge-warning-light {
  background-color: #FEF3C7;
  color: #92400E;
}
.badge-danger-light {
  background-color: #FEE2E2;
  color: #991B1B;
}

/* ── Comparison Table ──────────────────────────────────────── */
.table-responsive {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.table {
  margin-bottom: 0;
}
.table th {
  background-color: var(--background-alt);
  font-weight: 700;
  color: var(--text-primary);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.95rem;
}
.table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background-color: var(--surface);
}

.form-check-input {
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-switch .form-check-input {
  border-radius: 50px;
  width: 2.2em;
}
.form-switch .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* ── Gallery Grid & Filters ─────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: var(--transition);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--gradient-btn-primary);
  color: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
  border-color: transparent;
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
}
@media (max-width: 991px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 575px) {
  .gallery-grid { column-count: 1; }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.8) 0%, rgba(30, 41, 59, 0) 80%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ── Footer ─────────────────────────────────────────────────── */
/* ── Footer Overhaul ────────────────────────────────────────── */
footer.website-footer {
  background-color: #EAF4FF;      /* Soft Sky Blue */
  color: #475569;                 /* Slate 600 Body Text */
  padding: 40px 0 20px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.page-main {
  flex: 1 0 auto;
}
footer.website-footer h5 {
  color: var(--primary);          /* Modern Blue Headings matching Navbar brand */
  margin-bottom: 24px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}
footer.website-footer a {
  color: #1E293B;                 /* Dark Black Slate links matching Navbar */
  transition: var(--transition);
  display: inline-block;
}
footer.website-footer a:hover {
  color: var(--secondary);        /* Soft Pink Hover */
  transform: translateX(4px);
}
footer.website-footer a.text-white {
  color: #1E293B !important;      /* Dark Black Slate */
}
footer.website-footer a.text-white:hover {
  color: var(--secondary) !important;
}
footer.website-footer a.text-muted:hover {
  color: var(--secondary) !important;
}
footer.website-footer .text-muted {
  color: #475569 !important;      /* Override grey to high contrast Slate 600 */
}
footer.website-footer hr {
  border-color: rgba(30, 41, 59, 0.1) !important;
}
footer.website-footer .text-warning {
  color: var(--primary) !important; /* Modern Blue coordinates icons */
}
footer.website-footer .fs-4 {
  display: inline-block;
  transition: var(--transition);
}
footer.website-footer .fs-4:hover {
  transform: scale(1.15);
}
.gap-16px {
  gap: 16px !important;           /* Equal gap for social media icons and layouts */
}

/* ── Site Credit Bar ───────────────────────────────────────── */
.site-credit-bar {
  background: #0F172A;
  color: #94A3B8;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
}
.site-credit-bar .credit-brand {
  color: #F59E0B;
  font-weight: 600;
}

/* ── Back to Top Button ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--secondary);
}

/* ── Animation & Utilities ──────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in {
  animation: fadeIn 0.9s ease both;
}

.hover-zoom {
  transition: var(--transition);
}
.hover-zoom:hover {
  transform: scale(1.02);
}

.border-pill {
  border-radius: 50px !important;
}

/* Section Spacing */
.py-section {
  padding: 70px 0 !important;
}
.bg-white-panel {
  background-color: var(--surface);
}

/* ── Page Header / Titles ───────────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-title p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.accordion {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-item {
  border: none;
  background: var(--surface);
}
.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.accordion-button {
  font-family: var(--font-head);
  color: var(--text-primary);
  font-weight: 600;
  background: var(--surface);
  border: none;
  padding: 18px 24px;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-button:not(.collapsed) {
  color: var(--secondary);
  background-color: var(--background-alt);
  box-shadow: none;
}
.accordion-collapse {
  background-color: var(--background-alt);
}
.accordion-body {
  padding: 18px 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--card-pad-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .avatar {
  background: var(--gradient-btn-primary) !important;
  color: var(--surface) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card .avatar-secondary {
  background: var(--gradient-btn-secondary) !important;
}
.testimonial-card .avatar-accent {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

/* ── Hero Section Overhaul ──────────────────────────────────── */
.hero-section {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 110px 0 60px 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(242, 247, 255, 1) 0%, rgba(255, 253, 248, 1) 90.1%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}
.hero-shape-1 {
  background: rgba(59, 130, 246, 0.12);
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}
.hero-shape-2 {
  background: rgba(236, 72, 153, 0.12);
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-video-wrapper {
  position: relative;
  border-radius: 24px !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
}
.hero-video-wrapper:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.hero-video {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}
.hero-video-wrapper:hover .hero-video {
  transform: scale(1.02);
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

/* ============================================================
   KIDS FUNZONE HOMEPAGE REDESIGN ADDITIONAL STYLES
   ============================================================ */

/* ── Custom Child-Friendly Colors & Badges ── */
.badge-mint { background-color: #DEF7EC; color: #03543F; }
.badge-purple { background-color: #EDEBFE; color: #5521B5; }

/* ── Mascot Icon ── */
.mascot-icon {
  animation: wiggle 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
}

/* ── Floating Background Elements ── */
.floating-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.floating-cloud {
  animation: floatCloud 20s linear infinite;
  opacity: 0.85;
}
.floating-balloon {
  animation: floatBalloon 12s ease-in-out infinite;
}
.floating-star {
  animation: pulseStar 4s ease-in-out infinite;
}
.floating-plane {
  animation: floatPlane 15s linear infinite;
}
.floating-kite {
  animation: floatKite 18s ease-in-out infinite;
}

@keyframes floatCloud {
  0% { transform: translateX(-10%); }
  100% { transform: translateX(110vw); }
}
@keyframes floatBalloon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}
@keyframes pulseStar {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.3) rotate(45deg); opacity: 1; }
}
@keyframes floatPlane {
  0% { transform: translate(-50px, 100px) rotate(5deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translate(100vw, -100px) rotate(-5deg); opacity: 0; }
}
@keyframes floatKite {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-40px) rotate(-10deg); }
}

.hero-curved-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 3;
}
.hero-curved-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.hero-curved-bottom .shape-fill {
  fill: #FFFDF8;
}

/* Bouncing Arrow */
.bouncing-arrow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounceArrow 2s infinite;
  cursor: pointer;
}
@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* ── About Section Feature Badges ── */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ── Why Choose Us Section ── */
.why-card {
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  padding: var(--card-pad-lg) var(--card-pad-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 142, 247, 0.15);
}
.why-card.why-safe:hover { border-color: var(--primary); }
.why-card.why-party:hover { border-color: var(--secondary); }
.why-card.why-creative:hover { border-color: var(--accent); }
.why-card.why-cafe:hover { border-color: var(--mint); }
.why-card.why-staff:hover { border-color: var(--purple); }
.why-card.why-equip:hover { border-color: var(--primary); }

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(10deg);
}

/* ── Activities Cards ── */
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 320px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.activity-card:hover img {
  transform: scale(1.1);
}
.activity-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(to top, rgba(45, 55, 72, 0.95) 0%, rgba(45, 55, 72, 0.4) 60%, rgba(45, 55, 72, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--card-pad-md);
  color: var(--surface);
  transition: var(--transition);
}
.activity-card:hover .activity-overlay {
  background: linear-gradient(to top, rgba(79, 142, 247, 0.95) 0%, rgba(255, 107, 154, 0.6) 80%, rgba(255, 107, 154, 0.2) 100%);
}
.activity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* ── Statistics Counters ── */
.stats-container {
  padding: 25px 0;
  background: linear-gradient(to right, rgba(79, 142, 247, 0.05), rgba(255, 107, 154, 0.05));
  border-radius: var(--radius-lg);
}
.stat-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 4px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.stat-circle:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.stat-emoji {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Pinterest Masonry Gallery ── */
.masonry-grid {
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}
@media (max-width: 1199px) { .masonry-grid { column-count: 3; } }
@media (max-width: 991px) { .masonry-grid { column-count: 2; } }
@media (max-width: 575px) { .masonry-grid { column-count: 1; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--surface);
  transition: var(--transition);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}
.masonry-item:hover img {
  transform: scale(1.1);
}
.masonry-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(79, 142, 247, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.masonry-overlay-content {
  color: var(--surface);
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}
.masonry-item:hover .masonry-overlay-content {
  transform: translateY(0);
}

/* Lightbox Modal custom styles */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}
.lightbox-modal .modal-body {
  padding: 0;
  position: relative;
}
.lightbox-modal img {
  border-radius: var(--radius-lg);
  border: 5px solid var(--surface);
  box-shadow: var(--shadow-lg);
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--surface);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.lightbox-close-btn:hover {
  background: var(--secondary);
  color: var(--surface);
  transform: scale(1.1);
}

/* ── Safety Section ── */
.safety-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--card-pad-md);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.safety-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.safety-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(83, 216, 181, 0.1);
  color: var(--mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.safety-card:hover .safety-icon-wrapper {
  background: var(--mint);
  color: var(--surface);
  transform: scale(1.08) rotate(5deg);
}

/* ── Parent Café Section ── */
.cafe-layout {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF5EB 100%);
  padding: var(--card-pad-lg);
  border: 2px solid var(--border);
  position: relative;
}
.menu-card {
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: var(--surface);
  padding: var(--card-pad-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.menu-card:hover {
  transform: translateX(5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ── Speech Bubble Testimonials ── */
.speech-bubble-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad-md);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}
.speech-bubble-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.speech-bubble-card::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0; height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--border);
  z-index: 1;
}
.speech-bubble-card::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 41px;
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--surface);
  z-index: 2;
}
.testimonial-user {
  margin-top: 25px;
  padding-left: 20px;
}

/* ── Wave Hills Footer ── */
.footer-meadow {
  position: relative;
  margin-top: -80px;
  line-height: 0;
  width: 100%;
}
.footer-meadow svg {
  display: block;
  width: 100%;
  height: 120px;
}
.website-footer a {
  color: #046A38;
}
.website-footer a:hover {
  color: var(--secondary);
}

/* Responsive fixes */
@media (max-width: 767px) {
  .hero-section {
    padding: 105px 0 25px 0 !important;
    min-height: auto !important;
  }
  .stat-circle {
    width: 130px;
    height: 130px;
  }
  .why-card {
    padding: 25px 15px;
  }
}

/* ============================================================
   KIDS FUNZONE ABOUT PAGE REDESIGN ADDITIONAL STYLES
   ============================================================ */

/* ── Timeline Styles ── */
.about-timeline {
  position: relative;
  padding-left: 45px;
  border-left: 4px dashed var(--secondary);
  margin-left: 20px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: -10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--secondary);
}
.about-timeline::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--secondary);
}
.timeline-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--card-pad-md);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-bottom: 24px;
  transition: var(--transition);
  z-index: 2;
}
.timeline-card:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.timeline-badge {
  position: absolute;
  left: -63px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--surface);
  transition: var(--transition);
}
.timeline-card:hover .timeline-badge {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ── Scrapbook Collage ── */
.scrapbook-collage {
  position: relative;
  height: 480px;
  width: 100%;
}
.collage-img {
  position: absolute;
  border-radius: var(--radius-md);
  border: 8px solid var(--surface);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  object-fit: cover;
  z-index: 2;
}
.collage-img:hover {
  transform: scale(1.08) rotate(0deg) !important;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}
.collage-1 {
  width: 55%;
  height: 260px;
  top: 10px;
  left: 5%;
  transform: rotate(-4deg);
}
.collage-2 {
  width: 48%;
  height: 240px;
  top: 60px;
  right: 5%;
  transform: rotate(3deg);
}
.collage-3 {
  width: 50%;
  height: 250px;
  bottom: 10px;
  left: 25%;
  transform: rotate(-2deg);
}

/* ── Mission & Vision Glassmorphism Cards ── */
.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  padding: var(--card-pad-lg);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.95);
}
.glass-card-primary {
  background: linear-gradient(135deg, rgba(127, 72, 255, 0.06) 0%, rgba(46, 121, 245, 0.06) 100%);
  border-color: rgba(127, 72, 255, 0.15);
}
.glass-card-secondary {
  background: linear-gradient(135deg, rgba(255, 59, 118, 0.06) 0%, rgba(255, 159, 28, 0.06) 100%);
  border-color: rgba(255, 59, 118, 0.15);
}

/* ── Floating Bubble Doodles ── */
.floating-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1) 70%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  animation: floatBubble 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-40px) scale(1.15); opacity: 0.7; }
}

@media (max-width: 991px) {
  .scrapbook-collage {
    height: 380px;
  }
  .collage-1 {
    height: 180px;
  }
  .collage-2 {
    height: 160px;
  }
  .collage-3 {
    height: 170px;
  }
}

/* ── Interactive Children's Play Animations ── */
.navbar-brand:hover .mascot-icon {
  animation: mascotBounceFlip 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes mascotBounceFlip {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  25% { transform: translateY(-8px) scale(1.2) rotate(-15deg); }
  50% { transform: translateY(-8px) scale(1.1) rotate(180deg); }
  75% { transform: translateY(-4px) scale(1.15) rotate(345deg); }
  100% { transform: translateY(0) scale(1) rotate(360deg); }
}

/* Soft Wiggling/Wobbling Toys effect for cards when hovered */
@keyframes wobbleCard {
  0%, 100% { transform: translateY(-10px) rotate(0deg); }
  20% { transform: translateY(-10px) rotate(-1deg); }
  40% { transform: translateY(-10px) rotate(1.5deg); }
  60% { transform: translateY(-10px) rotate(-1.5deg); }
  80% { transform: translateY(-10px) rotate(1deg); }
}
.why-card:hover, .activity-card:hover, .safety-card:hover, .menu-card:hover, .speech-bubble-card:hover, .timeline-card:hover {
  animation: wobbleCard 1.8s ease-in-out infinite !important;
}

/* Twinkling sparkle stars */
.twinkle-star {
  animation: twinkleStar 3s ease-in-out infinite;
}
@keyframes twinkleStar {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(90deg); }
}

/* ── Interactive Balloons & Child Signage styles ── */
.balloon-interactive-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.interactive-child-wrapper {
  position: absolute;
  bottom: 0;
  left: 4%;
  width: 260px;
  height: 390px;
  transform-origin: bottom center;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
  display: block;
  transition: opacity 0.3s ease;
}

@media (max-width: 1199px) {
  .interactive-child-wrapper {
    left: 2%;
    width: 200px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .interactive-child-wrapper {
    display: none; /* Hide on small screen layouts to optimize text readability */
  }
}

.interactive-balloon {
  position: absolute;
  width: 80px;
  height: 96px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: bottom center;
}

/* Balloon knot */
.interactive-balloon-knot {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid inherit; /* Will color match in JS */
}

/* Balloon thread string */
.interactive-balloon-thread {
  position: absolute;
  top: 96px;
  left: 50%;
  width: 1.5px;
  height: 110px;
  background: rgba(120, 130, 140, 0.35);
  transform-origin: top center;
}

/* Sparkle & Confetti Styles */
.sparkle-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  pointer-events: none;
  z-index: 100;
}

.confetti-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 100;
}

/* ── Kids Play Zone Mini-Game ──────────────────────────────── */
.play-zone-game-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  background: linear-gradient(180deg, #BEE3F8 0%, #E8F6FF 100%);
  touch-action: none;
}
.play-zone-game-wrap canvas {
  display: block;
  width: 100%;
  height: 380px;
  cursor: none;
}
.play-zone-score {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  pointer-events: none;
}
.play-zone-score i {
  color: var(--secondary);
}
.play-zone-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .play-zone-game-wrap canvas {
    height: 320px;
  }
}

/* ── Remove Background Curves Only (Straight Section Transitions) ── */
.hero-curved-bottom {
  display: none !important;
}

/* Make banner bottom borders straight and simple */
.hero-section {
  border-bottom: 2px solid var(--border) !important;
  margin-bottom: 0 !important;
}

.page-header-banner {
  border-bottom: 2px solid var(--border) !important;
}

/* ── Overlapping Image Collage ── */
.collage-container {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 6px solid var(--surface);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collage-card:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.card-main {
  width: 60%;
  height: 300px;
  left: 0;
  top: 40px;
  z-index: 1;
}
.card-top-right {
  width: 45%;
  height: 180px;
  right: 0;
  top: 0;
  z-index: 2;
}
.card-bottom-right {
  width: 45%;
  height: 180px;
  right: 15px;
  bottom: 0;
  z-index: 3;
}

@media (max-width: 991px) {
  .collage-container {
    height: 320px;
    margin-top: 30px;
  }
  .card-main {
    width: 55%;
    height: 220px;
    top: 30px;
  }
  .card-top-right {
    width: 42%;
    height: 130px;
  }
  .card-bottom-right {
    width: 42%;
    height: 130px;
  }
}

/* ── Playful Statistics Mini Cards ── */
.stat-mini-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--card-pad-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.stat-mini-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-mini-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.stat-mini-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   BIRTHDAY & PASSES PAGES — PREMIUM DECISION-MAKING REDESIGN
   Trust-focused, clean-hover components (no wobble/bounce)
   ============================================================ */

/* ── Premium Photo Hero ── */
.hero-photo {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px 0;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.5) 45%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 1;
}
.hero-photo .hero-content {
  position: relative;
  z-index: 2;
}

/* ── Frosted Trust Pills (for dark photo heroes) ── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}
.trust-pill i {
  color: var(--yellow);
}

/* ── Star Rating ── */
.star-rating {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ── Party Schedule / Process Timeline (flat, professional) ── */
.schedule-timeline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.schedule-step {
  flex: 1 1 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--card-pad-md) var(--card-pad-sm);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1;
}
.schedule-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.schedule-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-btn-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.schedule-step-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .schedule-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--primary) 20%, var(--secondary) 80%, var(--border) 100%);
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .schedule-timeline {
    flex-wrap: nowrap;
  }
  .schedule-step {
    flex: 1 1 0;
    padding: var(--card-pad-sm);
  }
}

/* ── Decoration Theme Cards ── */
.theme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--card-pad-md) var(--card-pad-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ── Recommended plan lift (no wobble, clean scale) ── */
.pricing-card.popular {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .pricing-card.popular {
    transform: none;
  }
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE HARDENING
   Site-wide fixes: touch targets, spacing scale, fluid images,
   navbar tablet/mobile behavior, reduced motion. No redesign —
   existing colors, type, and components are preserved as-is.
   ============================================================ */

/* ── Prevent horizontal scroll from any stray wide element ── */
html {
  overflow-x: hidden;
  width: 100%;
}
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
}

/* ── Touch-friendly buttons (min 48px tap target) ── */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.back-to-top, .adm-notif-btn, .adm-toggle-btn {
  min-width: 44px;
  min-height: 44px;
}

/* ── Section spacing scale (overrides inline 80-120px paddings) ── */
@media (max-width: 767px) {
  .py-section,
  section.py-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .section-title {
    margin-bottom: 32px;
  }
}

/* ── Responsive typography scale ── */
.section-title h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2rem);
}
@media (max-width: 767px) {
  p.lead {
    font-size: 1rem !important;
  }
}

/* ── Hero media: reduce fixed heights on tablet/mobile ── */
@media (max-width: 991px) {
  .hero-video-wrapper img,
  .hero-video-wrapper video {
    height: 340px !important;
  }
  .hero-photo {
    min-height: 60vh;
    padding: 130px 0 60px 0;
  }
}
@media (max-width: 575px) {
  .hero-video-wrapper img,
  .hero-video-wrapper video {
    height: 240px !important;
  }
  .hero-photo {
    min-height: auto;
    padding: 105px 0 40px 0;
  }
}

/* ── Content section images: restore natural aspect ratio on mobile
      instead of a tall fixed-height crop (many use img-fluid + an
      inline fixed height, which defeats Bootstrap's img-fluid) ── */
@media (max-width: 767px) {
  img.img-fluid[style*="object-fit"] {
    height: 260px !important;
  }
}

/* ── Full-bleed hero action buttons on small phones ── */
@media (max-width: 575px) {
  .hero-content .btn,
  .hero-photo .btn {
    width: 100%;
  }
}

/* ── Navbar: tighter spacing + smaller logo on tablets ── */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  .navbar-brand .mascot-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .navbar-nav .nav-link {
    padding: 6px 10px !important;
    font-size: 0.85rem;
  }
  .navbar-nav.gap-2 {
    gap: 2px !important;
  }
}

/* ── Mobile nav: slide-in feel + no background scroll while open ── */
@media (max-width: 991px) {
  .navbar-collapse {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .navbar-collapse:not(.show) {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
body.nav-open {
  overflow: hidden;
}

/* ── Footer: tighter rhythm on tablet/mobile (same layout, less whitespace) ── */
@media (max-width: 767px) {
  footer.website-footer .row.mb-5 {
    margin-bottom: 2rem !important;
  }
  footer.website-footer h5 {
    margin-bottom: 14px;
  }
}

  }
}

/* ============================================================
   KIDS FUNZONE - DARK VIBRANT REDESIGN STYLE OVERRIDES
   ============================================================ */

/* Global Legibility & High Contrast Overrides */
body {
  color: #E2E8F0 !important;
  background-color: var(--background) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF !important;
}

.text-dark {
  color: #FFFFFF !important;
}
.text-secondary {
  color: #CBD5E1 !important;
}
.text-muted {
  color: #94A3B8 !important;
}
p.lead {
  color: #E2E8F0 !important;
}
.navbar-nav .nav-link {
  color: #FFFFFF !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(236, 72, 153, 0.15) !important;
  color: var(--primary) !important;
}

/* Logo Color Override */
.navbar-brand span {
  color: #FFFFFF !important;
}
.navbar-brand span .text-secondary {
  color: var(--secondary) !important;
}

/* Glassmorphic Navbar */
.glass-navbar {
  background: rgba(49, 46, 129, 0.75) !important; /* Frosted Indigo */
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
}
.glass-navbar.scrolled {
  background: rgba(30, 20, 60, 0.95) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Section Background Gradients (Homepage and specific pages) */
.hero-section {
  background: radial-gradient(circle at 10% 20%, #4B2E83 0%, #1E3A8A 90.1%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.section-activities {
  background: linear-gradient(180deg, #4B2E83 0%, #312E81 100%) !important;
}
.section-birthday {
  background: linear-gradient(135deg, #312E81 0%, #EC4899 100%) !important;
}
.section-cafe {
  background: linear-gradient(180deg, #312E81 0%, #4B2E83 100%) !important;
}
.section-gallery {
  background: linear-gradient(180deg, #1E3A8A 0%, #312E81 100%) !important;
}
.section-testimonials {
  background: linear-gradient(180deg, #4B2E83 0%, #6D28D9 100%) !important;
}
.section-contact {
  background: linear-gradient(135deg, #4B2E83 0%, #1E3A8A 100%) !important;
}

/* General Layout Background utility overrides */
.bg-white-panel, .bg-light, .bg-white {
  background-color: var(--background) !important;
}

/* Glassmorphism Cards base styling */
.premium-card,
.feature-card,
.why-card,
.safety-card,
.menu-card,
.speech-bubble-card,
.timeline-card,
.pricing-card,
.glass-card,
.stat-mini-card,
.schedule-step,
.theme-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  color: #CBD5E1 !important;
}

/* Hover Lift & Glow Animations */
.premium-card:hover,
.feature-card:hover,
.why-card:hover,
.safety-card:hover,
.menu-card:hover,
.speech-bubble-card:hover,
.timeline-card:hover,
.pricing-card:hover,
.glass-card:hover,
.stat-mini-card:hover,
.schedule-step:hover,
.theme-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3), 0 0 15px rgba(250, 204, 21, 0.1) !important;
}

/* Specific Card overrides */
.why-card.why-safe:hover { border-color: #EC4899 !important; }
.why-card.why-party:hover { border-color: #FACC15 !important; }
.why-card.why-creative:hover { border-color: #10E7B2 !important; }
.why-card.why-cafe:hover { border-color: #FACC15 !important; }
.why-card.why-staff:hover { border-color: #EC4899 !important; }
.why-card.why-equip:hover { border-color: #10E7B2 !important; }

.pricing-card.popular {
  border: 2px solid var(--primary) !important;
  box-shadow: var(--shadow-glow) !important;
}
.pricing-card.popular .popular-badge {
  background: var(--primary) !important;
  color: #FFFFFF !important;
}

.cafe-layout {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Accordion Glassmorphism */
.accordion {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.accordion-item {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.accordion-button {
  background: transparent !important;
  color: #FFFFFF !important;
}
.accordion-button:not(.collapsed) {
  color: var(--secondary) !important; /* Golden Yellow active text */
  background-color: rgba(255, 255, 255, 0.06) !important;
}
.accordion-collapse {
  background-color: transparent !important;
}
.accordion-body {
  color: var(--text-secondary) !important;
}

/* Frosted Form Controls */
.form-control, .form-select {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form-control:focus, .form-select:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.25) !important;
}

/* Frosted Table Styling */
.table-responsive {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.table {
  color: #FFFFFF !important;
  background: transparent !important;
}
.table th {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}
.table td {
  color: var(--text-secondary) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

/* Footer & Site Credits Redesign */
footer.website-footer {
  background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%) !important;
  color: #E2E8F0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
footer.website-footer h5 {
  color: #FFC83D !important; /* Golden Yellow headings matching logo accent */
  font-family: var(--font-head);
  font-weight: 700;
}
footer.website-footer a {
  color: #E2E8F0 !important;
  transition: var(--transition);
}
footer.website-footer a:hover {
  color: #FFC83D !important; /* Golden Yellow hover */
}
footer.website-footer .text-secondary {
  color: #CBD5E1 !important;
}
footer.website-footer hr {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
footer.website-footer .text-warning {
  color: #FFC83D !important; /* Yellow icons */
}
.site-credit-bar {
  background: #0F172A !important;
  color: #94A3B8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Statistics Counters Glassmorphism */
.stats-container {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-lg);
  padding: 40px 20px !important;
}
.stat-circle {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 3px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
.stat-circle:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.3) !important;
}
.stat-number {
  color: #FFFFFF !important;
}

/* Speech Bubble Card adjustments */
.speech-bubble-card {
  background: rgba(255, 255, 255, 0.05) !important;
}
.speech-bubble-card::after {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}
.speech-bubble-card::before {
  border-top-color: rgba(94, 53, 177, 0.2) !important; /* Matches glass background density */
}

/* About page scrapbook details */
.scrapbook-collage .collage-img {
  border: 6px solid rgba(255, 255, 255, 0.1) !important;
}
.collage-card {
  border: 6px solid rgba(255, 255, 255, 0.1) !important;
}

/* Bouncing elements & waves styling */
.hero-curved-bottom {
  display: none !important;
}
.footer-meadow {
  display: none !important; /* Meadow doesn't fit dark theme */
}

/* Floating Particle Styles (Injected by JS) */
.bg-particle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Particle Animations */
@keyframes floatUp {
  0% {
    transform: translateY(110%) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-110%) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes driftSway {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -40px) rotate(180deg);
  }
}

@keyframes driftHorizontal {
  0% {
    transform: translateX(-150px);
  }
  100% {
    transform: translateX(105vw);
  }
}

@keyframes twinkleStar {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(90deg);
  }
}

@keyframes steamCoffee {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    transform: translateY(-25px) scaleX(1.3);
  }
  100% {
    transform: translateY(-50px) scaleX(0.7);
    opacity: 0;
  }
}

/* Coffee Steam Styling */
.coffee-steam-container {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  pointer-events: none;
}
.steam-line {
  position: absolute;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 4 4;
  animation: steamCoffee 4s ease-in-out infinite;
}

/* Wave Path Styling */
.wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
  pointer-events: none;
}
.wave-decoration svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 60px;
  animation: waveMove 15s linear infinite;
}
.wave-decoration .shape-fill {
  fill: var(--background-alt);
}
@keyframes waveMove {
  0% { transform: rotate(180deg) translateX(0); }
  50% { transform: rotate(180deg) translateX(-15%); }
  100% { transform: rotate(180deg) translateX(-30%); }
}

/* Bubble animation */
.bg-bubble-particle {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05) 70%);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  animation: floatUp 12s linear infinite;
}

/* Confetti animation */
.bg-confetti-particle {
  width: 8px;
  height: 14px;
  opacity: 0.8;
  animation: floatUp 8s linear infinite;
}

/* Star particle animation */
.bg-star-particle {
  fill: var(--secondary);
  animation: twinkleStar 4s ease-in-out infinite;
}

/* Button Redesign for Dark Vibrant Theme */
.btn {
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}
.btn:hover {
  transform: translateY(-4px) scale(1.05) !important;
}
.btn:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.btn-primary {
  background: var(--gradient-btn-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4) !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.6) !important;
  background: linear-gradient(135deg, #EC4899 0%, #D81B60 100%) !important;
}

.btn-secondary {
  background: var(--gradient-btn-secondary) !important;
  color: #1E293B !important; /* Dark text for high contrast on yellow */
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3) !important;
}
.btn-secondary:hover {
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.5) !important;
  background: linear-gradient(135deg, #FACC15 0%, #CA8A04 100%) !important;
}

.btn-outline-primary {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  box-shadow: none !important;
}
.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: #FFFFFF !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4) !important;
}

.btn-light {
  background: #FFFFFF !important;
  color: #5E35B1 !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25) !important;
}
.btn-light:hover {
  background: #F8FAFC !important;
  color: #4B2E83 !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4) !important;
}

/* ── Structured & Elegant Footer Credit Bar (Matching Public Website #0f172a) ── */
.site-credit-bar {
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0f172a !important;
  line-height: 1.6;
}
.site-credit-bar .text-primary {
  color: #ffffff !important;
  font-weight: 700;
}
.site-credit-bar .text-secondary {
  color: #facc15 !important;
  font-weight: 700;
}
.site-credit-bar a.credit-brand {
  color: #38bdf8 !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.1) !important;
  display: inline-block;
  margin-left: 2px;
}
.site-credit-bar a.credit-brand:hover {
  color: #7dd3fc !important;
  background: rgba(56, 189, 248, 0.2) !important;
  text-decoration: none;
}




