/* assets/css/global.css - Global Resets, Utilities & Keyframes */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
}

/* Regional Localization Font Scaling */
:lang(gu) {
  font-family: var(--font-regional), var(--font-body);
  font-size: 105%;
  line-height: 1.6;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-royal-blue);
  margin-top: 0;
}

/* Keyframe Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-4deg); }
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.animate-float-slow { animation: floatSlow 5s ease-in-out infinite; }
.animate-float-reverse { animation: floatReverse 6s ease-in-out infinite; }
.animate-spin-slow { animation: spinSlow 22s linear infinite; }
.animate-pulse-scale { animation: pulseScale 3s ease-in-out infinite; }

/* Organic Masking Blobs */
.blob-shape-1 { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
.blob-shape-2 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }

/* Tactile Glassmorphism */
.kids-glass-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Container Constraint */
.site-container {
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Accessible 48px Minimum Touch Targets */
.touch-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.touch-btn-primary {
  background-color: var(--color-brand-red);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-button);
  padding: 0 2rem;
  border: none;
}
.touch-btn-primary:hover {
  background-color: var(--color-brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(227, 0, 15, 0.38);
}

.touch-btn-secondary {
  background-color: #FFFFFF;
  color: var(--color-royal-blue) !important;
  border: 2px solid var(--color-border);
  padding: 0 2rem;
}
.touch-btn-secondary:hover {
  border-color: var(--color-curious-sky-blue);
  color: var(--color-curious-sky-blue) !important;
  transform: translateY(-2px);
}

/* Card Hover Delights */
.ll-hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.ll-hover-lift:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-card-hover) !important;
}

/* Persistent Floating WhatsApp Button */
.ll-floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-floating);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ll-floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
}
.ll-floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
