/* ═══════════════════════════════════════════════════════════════
   ISKCON PALGHAR — Sacred Luxury Design System
   Palette: Saffron · Gold · Deep Violet · Parchment
   Fonts: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════════ */

:root {
  --saffron:      #E8650A;
  --saffron-lt:   #FF8C3A;
  --gold:         #D4A017;
  --gold-lt:      #F0C040;
  --gold-pale:    #FFF3C4;
  --violet-deep:  #1A0A2E;
  --violet-mid:   #2D1554;
  --violet-lt:    #4A2080;
  --parchment:    #F9F3EB;
  --parchment-dk: #EDE3D4;
  --ink:          #1C1008;
  --ink-lt:       #3D2B1F;
  --text-body:    #4A3728;
  --text-muted:   #8B7355;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(26,10,46,0.08);
  --shadow-md:  0 8px 32px rgba(26,10,46,0.14);
  --shadow-lg:  0 20px 60px rgba(26,10,46,0.20);
  --shadow-gold: 0 0 40px rgba(212,160,23,0.25);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::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(--parchment);
  color: var(--text-body);
  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; }

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.light { color: var(--parchment); }
.section-title em { font-style: italic; color: var(--saffron); }
.section-title.light em { color: var(--gold-lt); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-desc.light { color: rgba(249,243,235,0.75); }

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

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,101,10,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,101,10,0.45);
}

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

.btn-donate {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

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

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,10,46,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 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;
  text-decoration: none;
}

.logo-om {
  font-size: 2rem;
  color: var(--gold-lt);
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,192,64,0.6);
  animation: omPulse 3s ease-in-out infinite;
}

@keyframes omPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(240,192,64,0.6); }
  50%       { text-shadow: 0 0 40px rgba(240,192,64,1), 0 0 60px rgba(232,101,10,0.4); }
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold-lt);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-lt); }

.nav-donate {
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
}
.nav-donate:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,101,10,0.4); }

.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(--transition);
}
.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: 700px;
  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(
    160deg,
    rgba(26,10,46,0.75) 0%,
    rgba(26,10,46,0.55) 40%,
    rgba(232,101,10,0.25) 100%
  );
}

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

.hero-mantra {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

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

.hero-darshan {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 16px 32px;
}

.darshan-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.darshan-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-lt);
}
.darshan-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.darshan-divider {
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

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

/* ─── MARQUEE ──────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.95;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

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

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.badge-year { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.badge-num  { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.badge-sub  { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

.about-content { padding-right: 20px; }

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

.about-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--parchment-dk);
  border-bottom: 1px solid var(--parchment-dk);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── DEITIES ──────────────────────────────────────────────── */
.deities {
  position: relative;
  background: var(--violet-deep);
  overflow: hidden;
}

.deities-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(74,32,128,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,101,10,0.15) 0%, transparent 70%);
}

.deities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.deity-card {
  text-align: center;
  padding: 8px;
}

.deity-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3/4;
}

.deity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.deity-card:hover .deity-img-wrap img { transform: scale(1.05); }

.deity-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,46,0.7) 0%, transparent 50%);
  pointer-events: none;
}

.deity-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 10px;
}

.deity-desc {
  font-size: 0.9rem;
  color: rgba(249,243,235,0.65);
  line-height: 1.7;
}

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

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

.program-card {
  background: var(--parchment);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--parchment-dk);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.program-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--parchment-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--white);
  border-bottom: 1px solid var(--parchment-dk);
  transition: var(--transition);
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { background: var(--parchment); }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  min-width: 72px;
}
.event-day   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.event-info p { font-size: 0.9rem; color: var(--text-muted); }

.event-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.event-link:hover { color: var(--gold); transform: translateX(4px); display: inline-block; }

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

/* ─── DONATE ───────────────────────────────────────────────── */
.donate {
  position: relative;
  background: var(--violet-deep);
  overflow: hidden;
}

.donate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,101,10,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(74,32,128,0.4) 0%, transparent 60%);
}

.donate-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donate-desc {
  font-size: 1.05rem;
  color: rgba(249,243,235,0.7);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.donate-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.donate-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
}

.donate-card.featured {
  background: linear-gradient(135deg, rgba(232,101,10,0.2), rgba(212,160,23,0.15));
  border-color: rgba(212,160,23,0.5);
  transform: scale(1.04);
}
.donate-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.donate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

.donate-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.donate-seva {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,243,235,0.6);
  margin-bottom: 12px;
}

.donate-card p {
  font-size: 0.88rem;
  color: rgba(249,243,235,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.donate-custom {
  font-size: 0.9rem;
  color: rgba(249,243,235,0.55);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.donate-custom:hover { color: var(--gold-lt); }

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

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

.contact-info { padding-top: 8px; }

.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.contact-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── FORM ─────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--parchment-dk);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--parchment);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--violet-deep); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(249,243,235,0.55);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(249,243,235,0.55);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-newsletter p {
  font-size: 0.88rem;
  color: rgba(249,243,235,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold-lt); }

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,101,10,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(249,243,235,0.35);
  margin-bottom: 6px;
}

.footer-mantra {
  font-family: var(--font-display);
  font-size: 0.9rem !important;
  color: rgba(212,160,23,0.5) !important;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ─── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.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-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap  { max-width: 560px; margin: 0 auto; }
  .about-content     { padding-right: 0; }
  .about-badge       { right: 0; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .deities-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .donate-options { grid-template-columns: 1fr; max-width: 360px; }
  .donate-card.featured { transform: scale(1); }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { 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: var(--violet-deep);
    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.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 12px 0; width: 100%; }
  .hamburger { display: flex; }

  .hero-darshan {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }
  .darshan-divider { display: none; }

  .hero-scroll { display: none; }

  .programs-grid { grid-template-columns: 1fr; }

  .event-item {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }
  .event-link { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .contact-form { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; }
}