/* ═══════════════════════════════════════════════════════════════
   SRI SRI RADHA GOKULBIHARI — Celestial Emerald & Gold Design
   Palette: Forest Emerald · Divine Gold · Lotus Pink · Cream
   Fonts: Playfair Display + Outfit
═══════════════════════════════════════════════════════════════ */

:root {
  --emerald:       #0D3B2E;
  --emerald-mid:   #155740;
  --emerald-lt:    #1E7A56;
  --emerald-pale:  #D4EDE4;
  --gold:          #C9A84C;
  --gold-lt:       #E8C96A;
  --gold-pale:     #FBF3DC;
  --lotus:         #E8A0A8;
  --lotus-lt:      #F5C8CC;
  --cream:         #FDF8F0;
  --cream-dk:      #F0E8D8;
  --ink:           #0A1F14;
  --text:          #2C4A38;
  --text-muted:    #6B8F7A;
  --white:         #FFFFFF;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Outfit', sans-serif;

  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   48px;

  --sh-sm:  0 2px 16px rgba(13,59,46,0.08);
  --sh-md:  0 8px 40px rgba(13,59,46,0.14);
  --sh-lg:  0 20px 70px rgba(13,59,46,0.20);
  --sh-gold:0 0 40px rgba(201,168,76,0.30);

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:  0.4s var(--ease);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }

/* ─── FLOATING PARTICLES ────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: floatUp var(--dur, 12s) var(--delay, 0s) ease-in infinite;
}
@keyframes floatUp {
  0%   { opacity: 0;   transform: translateY(100vh) rotate(0deg) scale(0.5); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-10vh) rotate(360deg) scale(1); }
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-lt);
  display: block;
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--gold-lt); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title.light { color: var(--cream); }
.section-title em    { font-style: italic; color: var(--emerald-lt); }
.section-title em.gold { color: var(--gold-lt); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-sub.light { color: rgba(253,248,240,0.7); }

.section-header { text-align: center; margin-bottom: 60px; }

.body-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-lt), var(--emerald));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,122,86,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,122,86,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: var(--gold-lt); color: var(--gold-lt); }

.btn-gold {
  background: transparent;
  color: var(--gold-lt);
  border: 1.5px solid var(--gold-lt);
}
.btn-gold:hover { background: var(--gold-lt); color: var(--ink); }

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--sh-gold);
}
.btn-gold-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

.full-w { width: 100%; justify-content: center; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(10,31,20,0.96);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--emerald-lt), var(--emerald));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(30,122,86,0.4);
  animation: emblemGlow 3s ease-in-out infinite;
}
@keyframes emblemGlow {
  0%,100% { box-shadow: 0 0 20px rgba(30,122,86,0.4); }
  50%      { box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 60px rgba(30,122,86,0.3); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--gold-lt); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--r-xl) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--sh-gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10,31,20,0.82) 0%,
    rgba(13,59,46,0.65) 45%,
    rgba(201,168,76,0.15) 100%
  );
}
.hero-forest {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(13,59,46,0.6) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 8px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-sanskrit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--lotus-lt);
  display: block;
  font-size: 0.75em;
}
.hero-title-main {
  display: block;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-aarti {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 18px 32px;
}
.aarti-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
  text-align: center;
}
.aarti-times {
  display: flex;
  align-items: center;
  gap: 20px;
}
.aarti-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: opacity 0.4s;
}
.aarti-icon  { font-size: 1.2rem; }
.aarti-name  { font-size: 0.68rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; }
.aarti-time  { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gold-lt); }
.aarti-sep   { color: rgba(255,255,255,0.25); font-size: 1.4rem; }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 48px;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track-wrap { flex: 1; overflow: hidden; }
.ticker-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(253,248,240,0.85);
  letter-spacing: 0.06em;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--cream); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-img-frame img {
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.img-border-deco {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--r-lg) + 8px);
  opacity: 0.3;
  pointer-events: none;
}

.about-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 8px;
}
.about-quote cite {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.about-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-pale);
  border-radius: var(--r-xl);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
}
.pillar-icon { font-size: 1rem; }

.about-numbers {
  display: flex;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--cream-dk);
  margin-top: 8px;
}
.num-item { display: flex; flex-direction: column; gap: 4px; }
.num-val  {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--emerald-lt);
  line-height: 1;
}
.num-plus { font-size: 1.8rem; color: var(--emerald-lt); font-weight: 700; vertical-align: super; }
.num-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── DEITIES ───────────────────────────────────────────────── */
.deities {
  position: relative;
  background: var(--emerald);
  overflow: hidden;
}
.deities-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(30,122,86,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(30,122,86,0.4) 0%, transparent 60%);
}

.deities-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.deity-main {
  position: relative;
  text-align: center;
}
.deity-halo {
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: haloGlow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes haloGlow {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50%      { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.deity-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  border: 2px solid rgba(201,168,76,0.3);
}
.deity-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.deity-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.1) 60%, transparent 80%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.deity-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.deity-info p {
  font-size: 0.92rem;
  color: rgba(253,248,240,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.deity-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.deity-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--r-xl);
  padding: 4px 14px;
}

.deities-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deity-side {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 20px;
  transition: var(--trans);
}
.deity-side:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.3); }

.deity-side-img {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
}
.deity-side h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.deity-side p { font-size: 0.85rem; color: rgba(253,248,240,0.6); line-height: 1.65; }

/* ─── PROGRAMS ──────────────────────────────────────────────── */
.programs { background: var(--white); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  border: 1px solid var(--cream-dk);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.prog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-lt), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.prog-card:hover::after { transform: scaleX(1); }

.prog-time-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--emerald-lt);
  background: var(--emerald-pale);
  border-radius: var(--r-xl);
  padding: 4px 12px;
}
.prog-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.prog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.prog-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--r-xl);
  padding: 3px 12px;
  display: inline-block;
}

/* ─── VRINDAVAN ─────────────────────────────────────────────── */
.vrindavan {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.vrin-bg { position: absolute; inset: 0; z-index: 0; }
.vrin-bg img { width: 100%; height: 100%; object-fit: cover; }
.vrin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,20,0.92) 0%, rgba(13,59,46,0.80) 60%, rgba(10,31,20,0.70) 100%);
}

.vrin-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}
.vrin-text {
  font-size: 1.05rem;
  color: rgba(253,248,240,0.75);
  line-height: 1.85;
  margin-bottom: 40px;
}
.vrin-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.vrin-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vrin-feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.vrin-feat h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.vrin-feat p { font-size: 0.88rem; color: rgba(253,248,240,0.6); line-height: 1.65; }

/* ─── EVENTS ────────────────────────────────────────────────── */
.events { background: var(--cream); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--cream-dk);
  transition: var(--trans);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--emerald-pale); }
.event-card.featured {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  border-color: transparent;
  color: var(--white);
}

.event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: var(--r-md);
  padding: 10px 16px;
  color: var(--ink);
  min-width: 60px;
}
.ev-day  { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.ev-mon  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.event-featured-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--r-xl);
  padding: 4px 12px;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.event-card.featured h3 { color: var(--gold-lt); }
.event-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.event-card.featured p { color: rgba(253,248,240,0.7); }

.event-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-lt);
  transition: var(--trans);
  letter-spacing: 0.02em;
}
.event-card.featured .event-btn { color: var(--gold-lt); }
.event-btn:hover { letter-spacing: 0.06em; }

/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.gal-item.tall  { grid-row: span 2; }
.gal-item.wide  { grid-column: span 2; }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.07); }

.gal-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(10,31,20,0.8) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gal-item:hover .gal-cap { transform: translateY(0); }

/* ─── DONATE ────────────────────────────────────────────────── */
.donate { background: var(--cream); }

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.seva-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--cream-dk);
  text-align: center;
  position: relative;
  transition: var(--trans);
}
.seva-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.seva-card.popular {
  background: linear-gradient(160deg, var(--emerald), var(--emerald-mid));
  border-color: transparent;
  transform: scale(1.04);
}
.seva-card.popular:hover { transform: scale(1.04) translateY(-6px); }

.popular-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-xl);
  white-space: nowrap;
}

.seva-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.seva-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.seva-card.popular h3 { color: var(--gold-lt); }

.seva-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald-lt);
  margin-bottom: 12px;
}
.seva-card.popular .seva-amount { color: var(--gold-lt); }

.seva-card > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.seva-card.popular > p { color: rgba(253,248,240,0.7); }

.seva-includes {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seva-includes li { font-size: 0.82rem; color: var(--text-muted); }
.seva-card.popular .seva-includes li { color: rgba(253,248,240,0.65); }

.donate-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.donate-note a { color: var(--emerald-lt); font-weight: 600; }
.donate-note a:hover { text-decoration: underline; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.info-cards { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px 20px;
  border: 1px solid var(--cream-dk);
}
.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--emerald-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-dk);
  border-radius: var(--r-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--trans);
}
.soc-btn:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
  transform: translateY(-2px);
}

/* ─── FORM ──────────────────────────────────────────────────── */
.contact-form {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--cream-dk);
  box-shadow: var(--sh-sm);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-lt);
  box-shadow: 0 0 0 3px rgba(30,122,86,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--ink); }
.footer-inner { padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-peacock { font-size: 1.8rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(253,248,240,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-mantra {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(201,168,76,0.45);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(253,248,240,0.45);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(253,248,240,0.3);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-layout      { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame   { max-width: 560px; }
  .deities-showcase  { grid-template-columns: 1fr; }
  .deity-main        { max-width: 400px; margin: 0 auto; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .events-grid    { grid-template-columns: 1fr; }
  .donate-grid    { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
  .seva-card.popular { transform: scale(1); }
  .contact-wrap   { grid-template-columns: 1fr; gap: 48px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item.tall  { grid-row: span 1; }
  .gal-item.wide  { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10,31,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 12px 0; width: 100%; }
  .hamburger { display: flex; }

  .aarti-times { flex-direction: column; gap: 10px; }
  .aarti-sep   { display: none; }
  .hero-aarti  { padding: 16px 20px; }

  .programs-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-numbers { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .contact-form { padding: 24px 18px; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gal-item.wide { grid-column: span 1; }
}