/* ===================================================
   RAMPUR KALA KALI MANDIR FOUNDATION
   Global Styles & Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────── */
:root {
  --maroon:       #5A0F14;
  --maroon-dark:  #3d0a0e;
  --maroon-light: #7a1520;
  --saffron:      #D97706;
  --gold:         #C9A227;
  --gold-light:   #e8c84a;
  --ivory:        #FFF8E7;
  --sand:         #F4E8D0;
  --text-dark:    #2B1B17;
  --text-mid:     #5C4A42;
  --white:        #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  --font-hindi:   'Noto Serif Devanagari', serif;

  --shadow-sm:  0 2px 8px rgba(90,15,20,0.08);
  --shadow-md:  0 4px 24px rgba(90,15,20,0.12);
  --shadow-lg:  0 8px 48px rgba(90,15,20,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
}

/* ── 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(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--maroon);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

.hindi {
  font-family: var(--font-hindi);
  color: var(--gold);
  font-size: 1.1em;
}

/* ── Section Wrappers ──────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--sand); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 10px;
}

.section-title.center { display: block; text-align: center; }
.section-title.center::after { margin: 10px auto 0; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle.center { text-align: center; margin: 0 auto; }

.gold-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(90,15,20,0.3);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,15,20,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.45);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--maroon);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Decorative Gold Border ────────────────────────── */
.gold-border {
  border: 1px solid rgba(201,162,39,0.3);
}

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── Grid ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--maroon);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(201,162,39,0.3);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  height: 72px;
  gap: 10px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(201,162,39,0.3);
}

.logo-text-block { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-hindi);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Nav */
.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 2px;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-link.has-dropdown::after {
  content: '▾';
  margin-left: 3px;
  font-size: 0.62rem;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.78rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--ivory); color: var(--maroon); padding-left: 24px; }

/* Donate CTA in header */
.header-donate {
  margin-left: 4px;
  padding: 7px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}

/* Hero Admin Button */
.btn-hero-admin {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(201,162,39,0.6);
  backdrop-filter: blur(8px);
  padding: 14px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn-hero-admin:hover {
  background: rgba(201,162,39,0.3);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 1180px) {
  .main-nav, .header-donate { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--maroon-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0 100px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 32px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.04); padding-left: 40px; }
.mobile-nav .mob-section {
  padding: 10px 32px 4px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../public/images/hero.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(90,15,20,0.75) 0%,
    rgba(45,7,10,0.65) 50%,
    rgba(90,15,20,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 16px auto 36px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.3s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.5s;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SPIRITUAL STRIP
   ============================================================ */
.strip {
  background: linear-gradient(135deg, #3d0a0e 0%, var(--maroon) 50%, #4a0d11 100%);
  padding: 32px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201,162,39,0.35);
  border-bottom: 1px solid rgba(201,162,39,0.35);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.25);
}

.strip-main {
  font-family: var(--font-hindi);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.strip-sub {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.92);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
  padding: 0 16px;
}

/* ============================================================
   SACRED SHLOKA CARDS & BANNERS (BILINGUAL)
   ============================================================ */
.shloka-banner {
  background: linear-gradient(135deg, #3d0a0e 0%, var(--maroon) 50%, #2b0508 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(90,15,20,0.25);
  margin: 36px 0;
}
.shloka-banner::before {
  content: '🔱';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.06;
  pointer-events: none;
}
.shloka-banner::after {
  content: '🕉️';
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-size: 7rem;
  opacity: 0.05;
  pointer-events: none;
}
.shloka-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
}
.shloka-sanskrit {
  font-family: var(--font-hindi);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: #FFF8E7;
  line-height: 1.85;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.shloka-translit {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.shloka-meaning {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}
  margin: 0 auto;
}

/* ============================================================
   INTRODUCTION / TWO-COLUMN
   ============================================================ */
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.intro-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.intro-img-wrap .gold-corner {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.intro-img-wrap .gold-corner-br {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.intro-text { padding: 20px 0 20px 20px; }
.intro-text p { color: var(--text-mid); margin-bottom: 20px; line-height: 1.85; }

/* ============================================================
   VISION CARDS
   ============================================================ */
.vision-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201,162,39,0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.vision-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.vision-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.vision-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.vision-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   CONSTRUCTION PROGRESS
   ============================================================ */
.construction-bg {
  position: relative;
  overflow: hidden;
}
.construction-bg .bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../public/images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.construction-content { position: relative; z-index: 1; }
.construction-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}
.stat-box .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.stat-box .stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--maroon);
}

.progress-wrap { margin: 30px 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.progress-track {
  height: 12px;
  background: rgba(90,15,20,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--maroon), var(--saffron), var(--gold));
  border-radius: 100px;
  width: 0;
  min-width: 14px;
  box-shadow: 0 0 10px rgba(232,93,4,0.5);
  transition: width 2s ease;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: rgba(255,255,255,0.5);
  border-radius: 100px;
  animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   WHY SUPPORT CARDS
   ============================================================ */
.support-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.support-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.support-card .support-icon { font-size: 1.8rem; margin-bottom: 12px; }
.support-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--maroon); }
.support-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   SEVA CARDS
   ============================================================ */
.seva-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.12);
  transition: all var(--transition);
}
.seva-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.seva-card-body { padding: 24px; }
.seva-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.seva-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--maroon); }
.seva-card p { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.7; }
.seva-card .btn { font-size: 0.72rem; padding: 10px 20px; }

/* ============================================================
   FESTIVAL CARDS
   ============================================================ */
.festival-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201,162,39,0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}
.festival-card:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.festival-card:hover h4 { color: var(--gold); }
.festival-card:hover p { color: rgba(255,255,255,0.7); }
.festival-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.festival-card h4 { font-size: 1rem; margin-bottom: 6px; transition: color var(--transition); }
.festival-card p { font-size: 0.78rem; color: var(--text-mid); transition: color var(--transition); }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.1);
  transition: all var(--transition);
  align-items: flex-start;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-date-box {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 8px;
}
.event-date-box .day { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.event-date-box .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); }
.event-info h4 { font-size: 1.05rem; margin-bottom: 6px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.event-meta span { font-size: 0.78rem; color: var(--text-mid); }
.event-info p { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.6; }

/* ============================================================
   GALLERY PREVIEW — MASONRY
   ============================================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90,15,20,0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: #000;
}
.video-embed iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   LIVE DARSHAN
   ============================================================ */
.darshan-card {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.darshan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../public/images/hero.jpg') center/cover;
  opacity: 0.07;
}
.darshan-card > * { position: relative; z-index: 1; }
.darshan-card h2, .darshan-card p { color: var(--white); }
.darshan-card p { color: rgba(255,255,255,0.72); margin: 12px 0 28px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
  display: inline-flex;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ============================================================
   TRANSPARENCY SECTION
   ============================================================ */
.trust-card {
  text-align: center;
  padding: 32px 20px;
}
.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.trust-card h4 { font-size: 1rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../public/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,15,20,0.9) 0%, rgba(45,7,10,0.8) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.final-cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.final-cta-content .hindi { font-size: 1.4rem; color: var(--gold); }
.final-cta-content p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 16px auto 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--maroon);
  color: rgba(255,255,255,0.82);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-hindi { font-family: var(--font-hindi); color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 260px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.3fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,162,39,0.25);
  letter-spacing: 0.04em;
}

.footer-col a, .footer-col span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  margin-bottom: 11px;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }

.footer-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  line-height: 1;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.social-links { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--maroon);
  border-top: 2px solid var(--gold);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.mobile-bottom-bar-inner {
  display: flex;
  justify-content: space-around;
}
.mob-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.8);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 16px;
  transition: color var(--transition);
}
.mob-bar-btn .icon { font-size: 1.3rem; }
.mob-bar-btn:hover, .mob-bar-btn.donate-mob { color: var(--gold); }
.mob-bar-btn.donate-mob {
  background: var(--gold);
  color: var(--maroon);
  border-radius: var(--radius);
  padding: 6px 20px;
  font-weight: 700;
  margin-top: -10px;
  box-shadow: 0 -4px 16px rgba(201,162,39,0.4);
}

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-page-hero {
  background: var(--maroon);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../public/images/hero.jpg') center/cover;
  opacity: 0.08;
}
.donate-page-hero > .container { position: relative; z-index: 1; }
.donate-page-hero h1 { color: var(--white); }
.donate-page-hero p { color: rgba(255,255,255,0.72); margin-top: 12px; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 16px 12px;
  border: 2px solid rgba(201,162,39,0.25);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
  text-align: center;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-label .req { color: var(--saffron); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(90,15,20,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; }

.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,162,39,0.15);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold);
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { font-size: 2rem; margin-bottom: 8px; }
.success-card .receipt-box {
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 24px;
  margin: 28px 0;
  text-align: left;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-size: 0.88rem;
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row .label { color: var(--text-mid); }
.receipt-row .value { font-weight: 600; color: var(--text-dark); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gallery-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid rgba(90,15,20,0.18);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 24px; }
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text a, .contact-info-text span {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  display: block;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--gold); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  margin-top: 24px;
  background: #e8e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  border: 2px solid rgba(201,162,39,0.2);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--maroon);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../public/images/hero.jpg') center/cover;
  opacity: 0.07;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 12px auto 0; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--saffron), var(--gold));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 1;
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.15);
  max-width: 420px;
  width: 100%;
}
.timeline-card .tl-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; }
.timeline-card .tl-date {
  display: inline-block;
  background: var(--maroon);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-tag {
  display: inline-block;
  background: var(--ivory);
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(217,119,6,0.2);
  margin-bottom: 10px;
}
.news-date { font-size: 0.75rem; color: var(--text-mid); margin-bottom: 10px; }
.news-card h4 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   ADMIN STYLES (basic)
   ============================================================ */
/* (Loaded via admin/admin.css) */

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .construction-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-donate { display: none; }
  .hamburger { display: flex; }
  .mobile-bottom-bar { display: flex; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .donate-card { padding: 28px 20px; }
  .timeline::before { left: 24px; }
  .timeline-item { padding-right: 0; padding-left: 60px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 60px; }
  .timeline-dot { left: 24px; }
  .timeline-card { max-width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .construction-stats { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; column-gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .success-card { padding: 36px 20px; }
  .event-card { flex-direction: column; }
  body { padding-bottom: 70px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   INNER PAGE ADDITIONS
   ══════════════════════════════════════════════════ */

/* ── Page Hero ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, #3d0a0e 60%, #7a1520 100%);
  color: #fff;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '🔱';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  right: -4rem;
  top: -4rem;
  line-height: 1;
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 600px; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── Seva Cards ────────────────────────── */
.seva-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.15);
  overflow: hidden;
  transition: all var(--transition);
}
.seva-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.seva-card-body { padding: 32px; }
.seva-card-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.seva-card h4 { font-size: 1.25rem; color: var(--maroon); margin-bottom: 10px; }
.seva-card p { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.7; }

/* ── Event Cards ────────────────────────── */
.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.15);
  display: flex;
  gap: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-date-box {
  background: var(--maroon);
  color: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  flex-shrink: 0;
}
.event-date-box .day { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.event-date-box .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-top: 4px; }
.event-info { padding: 24px; flex: 1; }
.event-info h4 { font-size: 1.1rem; margin-bottom: 8px; }
.event-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-mid); margin-bottom: 10px; flex-wrap: wrap; }
.event-info p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.65; margin-bottom: 14px; }
.tl-date { font-size: 0.78rem; color: var(--saffron); font-weight: 500; }
.tl-number { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }

/* ── Festival Cards ─────────────────────── */
.festival-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.festival-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.festival-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.festival-card h4 { font-size: 1rem; color: var(--maroon); margin-bottom: 8px; }
.festival-card p { font-size: 0.78rem; color: var(--text-mid); }

/* ── News Cards ─────────────────────────── */
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.12);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-tag { display: inline-block; background: var(--sand); color: var(--maroon); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; font-weight: 600; }
.news-date { font-size: 0.75rem; color: var(--text-mid); margin-bottom: 8px; }
.news-card h4 { font-size: 1rem; color: var(--maroon); margin-bottom: 8px; line-height: 1.3; }
.news-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ── Gallery Tabs ────────────────────────── */
.gallery-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-tab {
  background: transparent;
  border: 1.5px solid rgba(90,15,20,0.2);
  color: var(--maroon);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-tab:hover, .gallery-tab.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

/* ── Contact Info Card ───────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,0.15);
}
.contact-info-card h3 { font-size: 1.4rem; color: var(--maroon); margin-bottom: 4px; }
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mid); margin-bottom: 4px; }
.contact-info-text a, .contact-info-text span { font-size: 0.9rem; color: var(--maroon); display: block; }
.contact-info-text a:hover { text-decoration: underline; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,162,39,0.2); }
.map-embed iframe { width: 100%; height: 240px; border: none; display: block; }

/* ── Form Textarea ───────────────────────── */
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color var(--transition);
}
.form-textarea:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(90,15,20,0.06); }

/* ── Misc ─────────────────────────────────── */
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.req { color: var(--maroon); }

@media (max-width: 768px) {
  .page-hero { padding: 100px 0 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-info-card { padding: 24px; }
  .event-date-box { flex-direction: row; padding: 16px 20px; gap: 12px; min-width: auto; }
  .event-date-box .day { font-size: 1.8rem; }
}
