/* ==========================================================================
   Shree Mahaganpati - Pure Static Production CSS (Zero External CDN Dependency)
   Theme: Heritage Gold & Crimson Palette
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --color-primary: #4A0404;           /* Deep Maroon */
  --color-primary-dark: #210000;      /* Rich Burgundy */
  --color-saffron: #FF9933;           /* Saffron */
  --color-gold: #D4AF37;              /* Antique Gold */
  --color-gold-light: #FFE088;        /* Light Gold */
  --color-bg-cream: #FCF9F8;         /* Warm Cream */
  --color-surface-white: #FFFFFF;     /* Off White */
  --color-[#1C1B1B]: #1C1B1B;         /* Subtle Black */
  --color-muted: #554240;            /* Earthy Muted Text */
  --color-border: #DCC0BD;            /* Border Variant */
  --color-whatsapp: #25D366;

  /* Typography Tokens */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-cream);
  color: var(--color-[#1C1B1B]);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility Classes */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.16; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Text Color Classes */
.text-white { color: #FFFFFF; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-\[\#4A0404\] { color: var(--color-primary); }
.text-\[\#210000\] { color: var(--color-primary-dark); }
.text-\[\#D4AF37\] { color: var(--color-gold); }
.text-\[\#FFE088\] { color: var(--color-gold-light); }
.text-\[\#FF9933\] { color: var(--color-saffron); }
.text-\[\#554240\] { color: var(--color-muted); }
.text-\[\#1C1B1B\] { color: var(--color-[#1C1B1B]); }

/* Background Classes */
.bg-white { background-color: #FFFFFF; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.bg-\[\#FCF9F8\] { background-color: var(--color-bg-cream); }
.bg-\[\#FCF9F8\]\/90 { background-color: rgba(252, 249, 248, 0.9); }
.bg-\[\#4A0404\] { background-color: var(--color-primary); }
.bg-\[\#4A0404\]\/60 { background-color: rgba(74, 4, 4, 0.6); }
.bg-\[\#4A0404\]\/70 { background-color: rgba(74, 4, 4, 0.7); }
.bg-\[\#210000\] { background-color: var(--color-primary-dark); }
.bg-\[\#25D366\] { background-color: var(--color-whatsapp); }
.bg-\[\#FF9933\]\/15 { background-color: rgba(255, 153, 51, 0.15); }
.bg-\[\#FF9933\]\/20 { background-color: rgba(255, 153, 51, 0.2); }
.bg-\[\#D4AF37\] { background-color: var(--color-gold); }

/* Layout & Flexbox/Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-around { justify-content: space-around; }
.justify-end { justify-content: flex-end; }
.self-start { align-self: flex-start; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Display & Visibility */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }

/* Sizing & Spacing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-4\/5 { width: 80%; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.w-28 { width: 7rem; }
.h-28 { height: 7rem; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; }
.h-44 { height: 11rem; }
.h-72 { height: 18rem; }
.h-\[350px\] { height: 350px; }
.h-\[420px\] { height: 420px; }
.min-h-\[92vh\] { min-height: 92vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-\[90vh\] { max-height: 90vh; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-16 { padding-top: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-12 { padding-bottom: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Positioning & Z-Index */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.top-3 { top: 0.75rem; }
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.top-6 { top: 1.5rem; }
.right-6 { right: 1.5rem; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.left-12 { left: 3rem; }
.right-12 { right: 3rem; }
.bottom-6 { bottom: 1.5rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Borders & Roundness */
.border { border-style: solid; border-width: 1px; }
.border-b { border-bottom-style: solid; border-bottom-width: 1px; }
.border-t { border-top-style: solid; border-top-width: 1px; }
.border-y { border-top-style: solid; border-top-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; }

.border-\[\#4A0404\] { border-color: var(--color-primary); }
.border-\[\#D4AF37\] { border-color: var(--color-gold); }
.border-\[\#D4AF37\]\/20 { border-color: rgba(212, 175, 55, 0.2); }
.border-\[\#D4AF37\]\/30 { border-color: rgba(212, 175, 55, 0.3); }
.border-\[\#D4AF37\]\/40 { border-color: rgba(212, 175, 55, 0.4); }
.border-\[\#FF9933\] { border-color: var(--color-saffron); }
.border-\[\#DCC0BD\] { border-color: var(--color-border); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Effects & Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.4)); }
.filter { filter: var(--tw-filter, opacity(1)); }
.brightness-90 { filter: brightness(0.9); }

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Transitions & Animations */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

.animate-bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* Custom Components & Utilities */
.gold-border { border: 1px solid rgba(212, 175, 55, 0.35); }
.gold-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  width: 100%;
  margin: 2rem 0;
}
.gold-divider::after {
  content: '✤';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-bg-cream);
  padding: 0 12px;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(74, 4, 4, 0.05);
}

/* Master Standardized Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: 1px solid var(--color-primary);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(74, 4, 4, 0.15);
}
.btn-primary:hover {
  background-color: #630505;
  border-color: #630505;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(74, 4, 4, 0.3);
  transform: translateY(-1.5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-primary);
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--color-primary);
  transform: translateY(-1.5px);
}

.btn-whatsapp,
.btn-whatsapp-stitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover,
.btn-whatsapp-stitch:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  color: #FFFFFF;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp svg,
.btn-whatsapp-stitch svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFE088;
  transition: all 0.25s ease;
}
.btn-outline-gold:hover {
  background-color: rgba(212, 175, 55, 0.2);
  color: #FFFFFF;
  transform: translateY(-1.5px);
}

.badge-shadu {
  background: linear-gradient(135deg, #1e5e2f, #2e7d32);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* Floating WhatsApp Button */
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: whatsapp-pulse 2s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Google Stitch-Style Luxury Header Rules */
.top-header-ribbon {
  background: #210000;
  color: #FFE088;
  font-size: 0.75rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stitch-nav-link {
  position: relative;
  color: #4A0404;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.25s ease;
  text-decoration: none;
}

.stitch-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #FF9933);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.stitch-nav-link:hover {
  color: #D4AF37;
}

.stitch-nav-link:hover::after,
.stitch-nav-link.active::after {
  width: 100%;
}

.btn-whatsapp-stitch {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.25s ease;
}
.btn-whatsapp-stitch:hover {
  background-color: #20ba5a;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Scrolled Header State */
#main-header.scrolled {
  background-color: rgba(252, 249, 248, 0.98);
  box-shadow: 0 4px 20px rgba(74, 4, 4, 0.08);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

/* Mobile Drawer Overlay */
#mobile-menu-drawer {
  transition: transform 0.35s ease-in-out;
  transform: translateX(-100%);
}
#mobile-menu-drawer.open { transform: translateX(0); }
#mobile-menu-backdrop {
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
#mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Murti Card & Lightbox Modal */
.murti-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}
.murti-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74, 4, 4, 0.15);
  border-color: var(--color-gold);
}

#lightbox-modal {
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.bappa-select-card {
  transition: all 0.3s ease;
  cursor: pointer;
}
.bappa-select-card:hover { transform: translateY(-6px); }
.bappa-select-card.selected {
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: scale(1.03);
}

/* Hero Section Animations */
.hero-divine-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -55%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(255, 153, 51, 0.18) 40%, rgba(74, 4, 4, 0.05) 70%, transparent 80%);
  filter: blur(40px);
  animation: divine-glow 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes divine-glow {
  0% { transform: translate(-50%, -55%) scale(0.85) rotate(0deg); opacity: 0.55; }
  100% { transform: translate(-50%, -55%) scale(1.2) rotate(15deg); opacity: 0.95; }
}

.hero-motif-spin {
  display: inline-block;
  animation: rotate-motif 30s linear infinite;
  color: var(--color-gold);
}
@keyframes rotate-motif {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.diya-flame-glow {
  animation: diya-flicker 2s ease-in-out infinite alternate;
}
@keyframes diya-flicker {
  0% { filter: drop-shadow(0 0 6px #FF9933) drop-shadow(0 0 12px #D4AF37); transform: scale(1); }
  100% { filter: drop-shadow(0 0 16px #FF9933) drop-shadow(0 0 28px #FFE088); transform: scale(1.1); }
}

.hero-title-shimmer {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE088 40%, #D4AF37 70%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-gold-shimmer 4s linear infinite;
}
@keyframes text-gold-shimmer {
  to { background-position: 200% center; }
}

.marigold-petal-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.petal {
  position: absolute;
  top: -30px;
  background: radial-gradient(circle at 35% 35%, #FF9933, #e65100);
  border-radius: 80% 0 80% 0;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.4);
  opacity: 0.85;
  animation: float-petal-down linear infinite;
}
@keyframes float-petal-down {
  0% { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { transform: translateY(105vh) rotate(720deg) translateX(80px); opacity: 0; }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Soundwave Equalizer & Music Button Glow */
@keyframes soundwave-1 {
  0%, 100% { height: 3px; }
  50% { height: 12px; }
}
@keyframes soundwave-2 {
  0%, 100% { height: 12px; }
  50% { height: 4px; }
}
@keyframes soundwave-3 {
  0%, 100% { height: 6px; }
  50% { height: 14px; }
}

.animate-wave-1 { animation: soundwave-1 0.6s ease-in-out infinite; }
.animate-wave-2 { animation: soundwave-2 0.8s ease-in-out infinite; }
.animate-wave-3 { animation: soundwave-3 0.7s ease-in-out infinite; }

.music-playing-glow {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  border-color: #D4AF37 !important;
}

/* Hero Circular Music Button Ripple & Glow */
.hero-audio-ripple {
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  border: 1.5px solid var(--color-gold);
  animation: hero-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  pointer-events: none;
}

@keyframes hero-ripple {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero-music-active {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6) !important;
  border-color: #FFE088 !important;
  background-color: rgba(99, 5, 5, 0.95) !important;
}

/* Agarbatti Incense Smoke Animation */
.incense-smoke-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.smoke-strand {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform-origin: bottom center;
  filter: blur(8px);
}

.smoke-strand-1 {
  background: linear-gradient(0deg, 
    rgba(255, 235, 180, 0.45) 0%, 
    rgba(255, 220, 160, 0.25) 25%, 
    rgba(240, 230, 210, 0.12) 60%, 
    transparent 100%);
  width: 12px;
  border-radius: 50% 50% 0 0;
  animation: incense-smoke-strand-1 11s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.smoke-strand-2 {
  background: linear-gradient(0deg, 
    rgba(255, 245, 210, 0.35) 0%, 
    rgba(255, 210, 140, 0.18) 35%, 
    rgba(255, 255, 255, 0.05) 75%, 
    transparent 100%);
  width: 18px;
  border-radius: 40% 60% 0 0;
  animation: incense-smoke-strand-2 14s cubic-bezier(0.35, 0, 0.25, 1) infinite 2.5s;
}

.smoke-strand-3 {
  background: linear-gradient(0deg, 
    rgba(255, 215, 130, 0.3) 0%, 
    rgba(245, 225, 180, 0.15) 30%, 
    transparent 85%);
  width: 10px;
  border-radius: 50%;
  animation: incense-smoke-strand-3 9s ease-in-out infinite 5s;
}

@keyframes incense-smoke-strand-1 {
  0% {
    transform: translateX(-50%) translateY(0) scaleX(0.5) scaleY(0.4) rotate(0deg);
    opacity: 0;
    filter: blur(4px);
  }
  15% {
    opacity: 0.65;
    filter: blur(7px);
  }
  45% {
    transform: translateX(-35%) translateY(-25vh) scaleX(1.4) scaleY(1.2) rotate(12deg);
    opacity: 0.45;
    filter: blur(14px);
  }
  75% {
    transform: translateX(-65%) translateY(-48vh) scaleX(2.2) scaleY(1.8) rotate(-16deg);
    opacity: 0.2;
    filter: blur(24px);
  }
  100% {
    transform: translateX(-40%) translateY(-68vh) scaleX(3.0) scaleY(2.4) rotate(8deg);
    opacity: 0;
    filter: blur(34px);
  }
}

@keyframes incense-smoke-strand-2 {
  0% {
    transform: translateX(-50%) translateY(0) scaleX(0.5) scaleY(0.3) rotate(0deg);
    opacity: 0;
    filter: blur(3px);
  }
  20% {
    opacity: 0.55;
    filter: blur(8px);
  }
  50% {
    transform: translateX(-70%) translateY(-30vh) scaleX(1.6) scaleY(1.3) rotate(-15deg);
    opacity: 0.35;
    filter: blur(18px);
  }
  80% {
    transform: translateX(-30%) translateY(-52vh) scaleX(2.5) scaleY(2.0) rotate(14deg);
    opacity: 0.12;
    filter: blur(28px);
  }
  100% {
    transform: translateX(-55%) translateY(-72vh) scaleX(3.5) scaleY(2.6) rotate(-6deg);
    opacity: 0;
    filter: blur(38px);
  }
}

@keyframes incense-smoke-strand-3 {
  0% {
    transform: translateX(-50%) translateY(0) scaleX(0.6) scaleY(0.5) rotate(0deg);
    opacity: 0;
    filter: blur(5px);
  }
  25% {
    opacity: 0.5;
    filter: blur(9px);
  }
  60% {
    transform: translateX(-40%) translateY(-35vh) scaleX(1.8) scaleY(1.5) rotate(18deg);
    opacity: 0.25;
    filter: blur(20px);
  }
  100% {
    transform: translateX(-60%) translateY(-65vh) scaleX(2.8) scaleY(2.2) rotate(-10deg);
    opacity: 0;
    filter: blur(32px);
  }
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.16; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:h-\[480px\] { height: 480px; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.16; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
}

/* Reduced Motion Overrides */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-divine-aura, .hero-motif-spin, .diya-flame-glow, .petal, .animate-bounce {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .whatsapp-float { animation: none !important; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
