/* ====================================
   BHOLENATH SWARG SHIVMANDIR WEBSITE
   Devotional CSS – Divine Color Palette
   ==================================== */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Noto+Serif+Devanagari:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ===== CSS VARIABLES – DEVOTIONAL PALETTE ===== */
:root {
  --saffron: #FF6B00;
  --deep-saffron: #E65C00;
  --gold: #FFD700;
  --deep-gold: #C8A000;
  --light-gold: #FFF0A0;
  --maroon: #7B1A1A;
  --deep-maroon: #4A0000;
  --crimson: #C0392B;
  --cream: #FFF8E7;
  --off-white: #FFFBF0;
  --dark-brown: #1A0A00;
  --medium-brown: #3D1A00;
  --divine-purple: #4A0080;
  --divine-blue: #001A4A;
  --lotus-pink: #FF6B9D;
  --silver: #C0C0C0;
  --gradient-saffron: linear-gradient(135deg, #FF6B00, #FFD700, #FF8C00);
  --gradient-divine: linear-gradient(135deg, #4A0000 0%, #7B1A1A 30%, #C0392B 60%, #FF6B00 100%);
  --gradient-gold: linear-gradient(135deg, #B8860B, #FFD700, #FFF0A0, #FFD700, #B8860B);
  --gradient-dark: linear-gradient(180deg, #0D0500 0%, #1A0A00 40%, #0D0500 100%);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.4);
  --shadow-saffron: 0 0 30px rgba(255, 107, 0, 0.5);
  --font-devanagari: 'Noto Serif Devanagari', serif;
  --font-cinzel: 'Cinzel', serif;
  --font-cinzel-deco: 'Cinzel Decorative', cursive;
  --font-lora: 'Lora', serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-lora);
  background: var(--dark-brown);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-brown);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-saffron);
  border-radius: 4px;
}

/* ===== FLOATING PARTICLES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* ===== DIVINE BANNER ===== */
.divine-banner {
  background: var(--gradient-divine);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.banner-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollBanner 25s linear infinite;
}

.banner-track span {
  font-family: var(--font-devanagari);
  font-size: 1rem;
  color: var(--light-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  flex-shrink: 0;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s ease;
  background: transparent;
}

.header.scrolled {
  top: 0;
  background: rgba(13, 5, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 30px rgba(255, 107, 0, 0.2);
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.site-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(220, 50, 50, 0.6));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.site-logo-img:hover {
  filter: drop-shadow(0 0 14px rgba(255, 80, 80, 0.9));
  transform: scale(1.04);
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.logo-symbol {
  font-size: 2.2rem;
  animation: rotateTrishul 6s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

@keyframes rotateTrishul {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  45% {
    transform: rotate(10deg);
  }

  55% {
    transform: rotate(-10deg);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-hindi {
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.logo-english {
  font-family: var(--font-devanagari);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--silver);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gradient-saffron);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 10%;
  right: 10%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 80px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* ===== HERO VIDEO BACKGROUND (LANDSCAPE AUTOPLAY) ===== */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Force landscape fill – width-first keeps aspect ratio in landscape */
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.38) saturate(1.3);
  z-index: 0;
  pointer-events: none;
}

/* Fallback for portrait/mobile: keep it filling */
@media (max-aspect-ratio: 16/9) {
  .hero-video-bg {
    width: 177.78vh; /* 16/9 * 100vh */
    height: 100vh;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(120, 20, 0, 0.25) 0%, rgba(13, 5, 0, 0.65) 70%),
    linear-gradient(180deg, rgba(13, 5, 0, 0.5) 0%, transparent 35%, rgba(13, 5, 0, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10px 5%;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  animation: fadeInUp 1.2s ease forwards;
}

/* ===== HERO BADGE TOP ===== */
.hero-badge-top {
  display: inline-block;
  background: rgba(255, 107, 0, 0.18);
  border: 1px solid rgba(255, 165, 0, 0.5);
  color: var(--light-gold);
  font-family: var(--font-devanagari);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 4px;
  padding: 6px 24px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(255, 165, 0, 0.7);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Title wrapper */
.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  width: 100%;
  padding-top: 20px;
}

/* Place name below main title */
.hero-place-name {
  font-family: var(--font-devanagari);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--saffron);
  text-shadow:
    0 0 20px rgba(255, 107, 0, 0.9),
    0 0 50px rgba(255, 107, 0, 0.5);
  letter-spacing: 6px;
  margin-top: -6px;
  line-height: 1.1;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-devanagari);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--cream);
  letter-spacing: 3px;
  margin-bottom: 2px;
  opacity: 0.92;
}

/* Desc block — the multi-line location/description */
.hero-desc-block {
  margin: 10px auto 20px;
  max-width: 700px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: 16px;
  padding: 14px 28px;
  backdrop-filter: blur(4px);
}

.hero-desc-line {
  font-family: var(--font-devanagari);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--light-gold);
  letter-spacing: 2px;
  line-height: 1.8;
  opacity: 0.92;
}

.hero-desc-line.bold-text {
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  text-shadow: 0 0 10px rgba(255,200,0,0.5);
}

.hero-english-title {
  font-family: var(--font-cinzel);
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  color: var(--saffron);
  letter-spacing: 4px;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.om-symbol {
  font-family: var(--font-devanagari);
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: -4px;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.9));
    transform: scale(1.05);
  }
}

.hero-subtitle-top {
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 4px;
  margin-top: -4px;
  opacity: 0.9;
}

/* hero-title = h1 with the main temple name */
.hero-title {
  font-family: var(--font-devanagari);
  font-size: min(6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(255, 165, 0, 0.8),
    0 0 40px rgba(255, 107, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
}

.title-divider {
  font-size: 0.9rem;
  color: var(--saffron);
  letter-spacing: 8px;
  line-height: 1;
  margin: 2px 0;
}

.title-english {
  font-family: var(--font-devanagari);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.hero-mantra {
  font-family: var(--font-devanagari);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--saffron);
  letter-spacing: 3px;
  margin-bottom: 4px;
  margin-top: 0;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.hero-desc {
  font-family: var(--font-lora);
  font-size: 0.9rem;
  color: rgba(255, 248, 231, 0.8);
  margin-bottom: 18px;
  line-height: 1.4;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-cinzel);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 50px;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-saffron);
  color: var(--dark-brown);
  font-weight: 700;
  box-shadow: var(--shadow-saffron);
}

.btn-primary::before {
  background: linear-gradient(135deg, #FFD700, #FF6B00);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.7);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.15);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.5;
  }
}

/* ===== MANTRA STRIP ===== */
.mantra-strip {
  background: var(--gradient-divine);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding: 16px 0;
  overflow: hidden;
}

.mantra-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scrollBanner 30s linear infinite reverse;
}

.mantra-inner span {
  font-family: var(--font-devanagari);
  font-size: 1rem;
  color: var(--light-gold);
  flex-shrink: 0;
  letter-spacing: 2px;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--saffron);
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-cinzel-deco);
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: var(--font-devanagari);
  font-size: 1.2rem;
  color: rgba(255, 248, 231, 0.6);
  margin-bottom: 12px;
}

.title-ornament {
  color: var(--saffron);
  font-size: 1rem;
  letter-spacing: 10px;
  opacity: 0.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--gradient-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.image-frame {
  border: 3px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--dark-brown), var(--dark-brown)) padding-box,
    var(--gradient-gold) border-box;
  padding: 8px;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.3);
  animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.3);
  }
}

.image-frame img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
  min-height: 450px;
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-divine);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.image-badge p {
  font-family: var(--font-cinzel);
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: var(--gold);
}

.about-card {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-cinzel);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-card p {
  color: rgba(255, 248, 231, 0.8);
  margin-bottom: 12px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-cinzel-deco);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(255, 248, 231, 0.6);
  text-transform: uppercase;
}

/* ===== AARTI SECTION ===== */
.aarti-section {
  background: radial-gradient(ellipse at center, rgba(123, 26, 26, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, #0D0500 0%, #100800 100%);
}

.aarti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.aarti-card {
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.aarti-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-divine);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.aarti-card:hover::before {
  opacity: 0.15;
}

.aarti-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.aarti-card.featured {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.aarti-featured-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-saffron);
  color: var(--dark-brown);
  font-family: var(--font-cinzel);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.aarti-time-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.aarti-name {
  font-family: var(--font-devanagari);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.aarti-name-en {
  font-family: var(--font-cinzel);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--saffron);
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.aarti-time {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-cinzel);
  font-size: 0.9rem;
  color: var(--light-gold);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.aarti-desc {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.aarti-divider {
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  margin-bottom: 14px;
}

.aarti-note {
  font-size: 0.8rem;
  color: var(--saffron);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ===== SHIVLINGAM PARALLAX SECTION ===== */
.lingam-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.lingam-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.5);
}

.lingam-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15) 0%, rgba(13, 5, 0, 0.8) 70%);
  z-index: 1;
}

.lingam-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 800px;
}

.lingam-om {
  font-family: var(--font-devanagari);
  font-size: 5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseGlow 3s ease-in-out infinite;
  margin-bottom: 12px;
}

.lingam-content h2 {
  font-family: var(--font-devanagari);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 20px;
}

.lingam-verse {
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  color: var(--light-gold);
  line-height: 2;
  margin-bottom: 16px;
}

.lingam-translation {
  font-style: italic;
  color: rgba(255, 248, 231, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== POOJA SERVICES ===== */
.services-section {
  background: var(--gradient-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.service-card.featured-service {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-saffron);
  color: var(--dark-brown);
  font-family: var(--font-cinzel);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-cinzel);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.service-hindi {
  font-family: var(--font-devanagari);
  font-size: 0.95rem;
  color: var(--saffron);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-time {
  font-family: var(--font-cinzel);
  font-size: 0.7rem;
  color: rgba(255, 215, 0, 0.6);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--saffron);
  color: var(--saffron);
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: var(--saffron);
  color: var(--dark-brown);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: radial-gradient(ellipse at center, rgba(74, 0, 128, 0.1) 0%, var(--dark-brown) 70%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item img,
.gallery-item .gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-video {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 5, 0, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  font-family: var(--font-devanagari);
  font-size: 1rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* ===== FESTIVALS SECTION ===== */
.festivals-section {
  background: linear-gradient(180deg, #0D0500, #110900, #0D0500);
}

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.festival-card {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.festival-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.festival-img-wrap {
  height: 200px;
  overflow: hidden;
}

.festival-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.festival-card:hover .festival-img-wrap img {
  transform: scale(1.08);
}

.festival-info {
  padding: 24px;
}

.festival-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--saffron);
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.festival-info h3 {
  font-family: var(--font-cinzel);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.festival-hindi {
  font-family: var(--font-devanagari);
  color: var(--saffron);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.festival-info p:last-child {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.7);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: radial-gradient(ellipse at center, rgba(123, 26, 26, 0.1) 0%, var(--dark-brown) 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-6px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: rgba(255, 248, 231, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-family: var(--font-cinzel);
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
}

.testimonial-author p {
  font-size: 0.75rem;
  color: rgba(255, 248, 231, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--gradient-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 107, 0, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-family: var(--font-cinzel);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255, 248, 231, 0.75);
  line-height: 1.7;
}

.contact-hours {
  margin-top: 6px !important;
  color: var(--saffron) !important;
  font-size: 0.8rem !important;
}


.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.7);
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-row.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-cinzel-deco);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-form>p {
  font-family: var(--font-devanagari);
  color: var(--saffron);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: rgba(255, 215, 0, 0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-lora);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option {
  background: var(--dark-brown);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 107, 0, 0.6);
  background: rgba(255, 107, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 248, 231, 0.3);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 4rem;
  animation: pulseGlow 2s ease-in-out infinite;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-cinzel-deco);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255, 248, 231, 0.75);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #050200;
  border-top: 2px solid rgba(255, 215, 0, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}



.footer-om {
  font-family: var(--font-devanagari);
  font-size: 3.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.footer-logo h3 {
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-logo p {
  font-family: var(--font-cinzel);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 248, 231, 0.4);
}

.footer-links h4,
.footer-seva h4,
.footer-contact h4 {
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-links ul li,
.footer-seva ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.55);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--saffron);
}

.footer-seva ul li {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.55);
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.55);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-mantra {
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 16px 24px;
}

.footer-mantra p {
  font-family: var(--font-devanagari);
  font-size: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
}

.footer-bottom p {
  font-family: var(--font-cinzel);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255, 248, 231, 0.3);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: var(--gradient-divine);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px) rotate(15deg);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .aarti-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 5, 0, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 30px;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 9999;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 10000;
  }

  .aarti-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .festivals-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }
}

/* ===== MUSIC TOGGLE BUTTON ===== */
.music-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: var(--gradient-saffron);
  border: 2px solid var(--gold);
  color: var(--dark-brown);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.music-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}

.music-toggle.playing {
  animation: musicPulse 2s infinite;
  background: var(--gradient-gold);
}

.music-toggle .music-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.music-toggle .music-text {
  font-size: 0.6rem;
  font-weight: 800;
  margin-top: 2px;
  font-family: var(--font-cinzel);
}

@keyframes musicPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

@media (max-width: 768px) {
  .music-toggle {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
}