/* =============================================
   SikhGurbani.net — Main Stylesheet
   Navy #08122D | Gold #C8921A | Cream #F0DFA0
   ============================================= */

:root {
  --navy:       #08122D;
  --navy-mid:   #0d1b3e;
  --navy-light: #162550;
  --gold:       #C8921A;
  --gold-light: #E8B830;
  --gold-dim:   #A07010;
  --cream:      #F0DFA0;
  --white:      #FDFAF4;
  --text-muted: rgba(200,146,26,0.55);
  --serif:      Georgia, 'Times New Roman', serif;
  --sans:       -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gurmukhi:   'Noto Sans Gurmukhi', 'Mukta Mahee', serif;
  --gurmukhi-display: 'Noto Serif Gurmukhi', 'Noto Sans Gurmukhi', serif;
  --transition: 0.35s cubic-bezier(0.22,1,0.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--serif);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--cream); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: 2px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: 1px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { line-height: 1.75; color: rgba(240,223,160,0.8); font-size: 1rem; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.gurmukhi { font-family: var(--gurmukhi); letter-spacing: 0; color: var(--gold); opacity: 0.8; }

/* ---- LAYOUT ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { color: var(--cream); margin-bottom: 0.4rem; }
.section-header .gurmukhi { font-size: 1.1rem; display: block; margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }

.gold-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
  opacity: 0.5;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,146,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(200,146,26,0.1);
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8,18,45,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(200,146,26,0.2);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 2rem;
  font-family: var(--gurmukhi);
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(200,146,26,0.4));
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
}
.nav-logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,223,160,0.75);
  transition: color var(--transition);
  font-family: var(--sans);
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.3);
  border-radius: 2px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-lang-toggle:hover { background: rgba(200,146,26,0.2); }
.nav-lang-toggle span { font-size: 0.75rem; letter-spacing: 1px; color: var(--gold); font-family: var(--sans); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8,18,45,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.3);
  border-radius: 4px;
  z-index: 1101;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,146,26,0.07) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(13,27,62,0.8) 0%, transparent 60%),
    linear-gradient(180deg, #070e22 0%, #0d1b3e 50%, #08122D 100%);
}

.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,146,26,0.08);
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: 500px; height: 500px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 700px; height: 700px; animation-delay: 1.5s; border-color: rgba(200,146,26,0.05); }
.hero-ring:nth-child(3) { width: 900px; height: 900px; animation-delay: 3s; border-color: rgba(200,146,26,0.03); }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.04); opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  animation: drift var(--d) ease-in-out var(--dl) infinite;
  opacity: 0;
}
@keyframes drift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  20%  { opacity: var(--op); }
  80%  { opacity: var(--op); }
  100% { transform: translateY(-100px) translateX(var(--dx)); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-ikonkar {
  font-size: clamp(6rem, 15vw, 11rem);
  font-family: var(--gurmukhi);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  animation: glow-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(200,146,26,0.3));
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(200,146,26,0.3)); }
  50%       { filter: drop-shadow(0 0 60px rgba(200,146,26,0.6)); }
}

.hero-mool-mantar {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-family: var(--gurmukhi);
  color: var(--gold);
  letter-spacing: 0;
  word-spacing: 0.6em;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.hero-title-gu {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--gurmukhi);
  color: var(--gold);
  letter-spacing: 0;
  opacity: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.hero-tagline {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 5px;
  color: rgba(200,146,26,0.5);
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.hero-scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: rgba(200,146,26,0.06);
  border-top: 1px solid rgba(200,146,26,0.15);
  border-bottom: 1px solid rgba(200,146,26,0.15);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: rgba(240,223,160,0.5);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* =====================
   VIDEOS SECTION
   ===================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,146,26,0.12);
  border-radius: 3px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(200,146,26,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-light);
  overflow: hidden;
}
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}
.video-play-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(200,146,26,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all var(--transition);
}
.video-card:hover .video-play-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

.video-info { padding: 1.1rem; }
.video-info h3 { font-size: 0.95rem; color: var(--cream); margin-bottom: 0.4rem; line-height: 1.4; }
.video-info p  { font-size: 0.8rem; color: var(--text-muted); }

.yt-channel-link {
  text-align: center;
  margin-top: 3rem;
}

/* =====================
   PHOTO GALLERY
   ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

.gallery-item {
  aspect-ratio: 1;
  background: var(--navy-light);
  border: 1px solid rgba(200,146,26,0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item.wide { aspect-ratio: 2/1; }
.gallery-item.tall { aspect-ratio: 1/2; }

.gallery-item-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gurmukhi);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-inner { opacity: 0.5; transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,45,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--cream);
  letter-spacing: 2px;
}

/* =====================
   BOOKS / WORKSHEETS / AUDIO
   ===================== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,146,26,0.12);
  border-radius: 3px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.resource-card:hover {
  border-color: rgba(200,146,26,0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
.resource-card:hover::before { opacity: 1; }

.resource-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.resource-card h3 { font-size: 1rem; color: var(--cream); }
.resource-card p  { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.resource-card .btn { align-self: flex-start; font-size: 0.72rem; padding: 0.5rem 1.2rem; }

/* Dual-button layout for Read + Download */
.resource-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.resource-btns .btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
  font-size: 0.7rem;
  padding: 0.5rem 0.8rem;
  letter-spacing: 1px;
}

/* ---- AUDIO PLAYER ---- */
.audio-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,146,26,0.12);
  border-radius: 3px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all var(--transition);
}
.audio-card:hover {
  border-color: rgba(200,146,26,0.35);
  background: rgba(13,27,62,0.8);
}

.audio-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,146,26,0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.audio-play-btn:hover { background: var(--gold); color: var(--navy); }

.audio-info { flex: 1; min-width: 0; }
.audio-info h4 { font-size: 0.9rem; color: var(--cream); margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-info span { font-size: 0.75rem; color: var(--text-muted); }

.audio-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.audio-progress {
  width: 100%;
  height: 2px;
  background: rgba(200,146,26,0.15);
  border-radius: 1px;
  margin-top: 0.6rem;
}
.audio-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  width: 0%;
  transition: width 0.3s;
}

.audio-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* =====================
   ART GALLERY
   ===================== */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.art-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  border: 1px solid rgba(200,146,26,0.12);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.art-card:hover {
  border-color: rgba(200,146,26,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}

.art-card-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gurmukhi);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,45,0.95) 0%, rgba(8,18,45,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.art-card:hover .art-card-overlay { opacity: 1; }
.art-card-overlay h3 { font-size: 1rem; color: var(--cream); margin-bottom: 0.3rem; }
.art-card-overlay span { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; }

/* =====================
   SOCIAL FEED
   ===================== */
.social-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(200,146,26,0.2);
  border-radius: 2px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.social-tab {
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,146,26,0.6);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: transparent;
  font-family: var(--sans);
}
.social-tab.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.social-tab:hover:not(.active) { background: rgba(200,146,26,0.1); color: var(--gold); }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.social-post {
  background: var(--navy-mid);
  border: 1px solid rgba(200,146,26,0.12);
  border-radius: 3px;
  overflow: hidden;
  transition: all var(--transition);
}
.social-post:hover {
  border-color: rgba(200,146,26,0.35);
  transform: translateY(-3px);
}

.social-post-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(200,146,26,0.08);
}
.social-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,146,26,0.15);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.social-post-meta { flex: 1; }
.social-post-meta strong { display: block; font-size: 0.82rem; color: var(--cream); }
.social-post-meta span { font-size: 0.72rem; color: var(--text-muted); }

.social-post-img {
  aspect-ratio: 1;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.15;
}
.social-post-body {
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(240,223,160,0.7);
  line-height: 1.6;
}
.social-post-footer {
  padding: 0.7rem 1.2rem;
  border-top: 1px solid rgba(200,146,26,0.08);
  display: flex;
  gap: 1.2rem;
}
.social-post-footer span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Live social embed panels */
.social-embed-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 2rem;
}
.social-embed-wrap .fb-page,
.social-embed-wrap iframe.lightwidget-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  max-width: 500px;
  width: 100%;
}

.social-embed-note {
  background: rgba(200,146,26,0.05);
  border: 1px dashed rgba(200,146,26,0.2);
  border-radius: 3px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.social-embed-note p { font-size: 0.85rem; color: var(--text-muted); }
.social-embed-note a { color: var(--gold); }

/* =====================
   ABOUT SECTION
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-symbol {
  text-align: center;
  font-size: clamp(8rem, 20vw, 14rem);
  font-family: var(--gurmukhi);
  color: var(--gold);
  filter: drop-shadow(0 0 40px rgba(200,146,26,0.3));
  animation: glow-pulse 4s ease-in-out infinite;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { margin-bottom: 1.2rem; }
.about-verse {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-verse .gurmukhi { font-size: 1.2rem; display: block; margin-bottom: 0.4rem; }
.about-verse p { font-size: 0.85rem; font-style: italic; color: rgba(240,223,160,0.6); }

/* =====================
   CONTACT SECTION
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(200,146,26,0.05);
  border: 1px solid rgba(200,146,26,0.15);
  border-radius: 3px;
  transition: all var(--transition);
  color: var(--cream);
  text-decoration: none;
}
.contact-link:hover {
  background: rgba(200,146,26,0.1);
  border-color: rgba(200,146,26,0.35);
  color: var(--cream);
}
.contact-link-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-link-text strong { display: block; font-size: 0.85rem; color: var(--cream); }
.contact-link-text span { font-size: 0.75rem; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,146,26,0.2);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(200,146,26,0.6); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--navy-mid); }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #050c1e;
  border-top: 1px solid rgba(200,146,26,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(240,223,160,0.5); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,146,26,0.08);
  border: 1px solid rgba(200,146,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.83rem; color: rgba(240,223,160,0.55); }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(200,146,26,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(240,223,160,0.35); }
.footer-bottom .gurmukhi { font-size: 0.85rem; opacity: 0.5; }

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,12,30,0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-content {
  width: 80vw;
  height: 60vh;
  background: var(--navy-light);
  border: 1px solid rgba(200,146,26,0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
}
.lightbox iframe {
  width: 80vw;
  height: 45vw;
  max-height: 70vh;
  border: none;
  border-radius: 3px;
}

/* =====================
   UTILITIES
   ===================== */
.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================
   SECTION BACKGROUNDS
   ===================== */
.bg-alt { background: rgba(13,27,62,0.5); }
.bg-dark { background: #060e1f; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; text-align: center; }
  .about-symbol { font-size: 8rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-grid .tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-lang-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
}

/* =====================
   LANG TOGGLE
   ===================== */
[data-lang="pu"] { display: none; }
body.lang-pu [data-lang="en"] { display: none; }
body.lang-pu [data-lang="pu"] { display: block; }
body.lang-pu span[data-lang="pu"] { display: inline; }
body.lang-pu span[data-lang="en"] { display: none; }

/* =====================
   SUB-PAGE HERO BANNER
   ===================== */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 60%, rgba(200,146,26,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #070e22 0%, #0d1b3e 60%, #08122D 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,26,0.35), transparent);
}
.page-hero-ikonkar {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: var(--gurmukhi);
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(200,146,26,0.35));
  animation: glow-pulse 4s ease-in-out infinite;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.page-hero .gurmukhi {
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
  color: rgba(200,146,26,0.6);
}
.page-hero-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 1rem auto 0;
  display: block;
}
.page-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: rgba(200,146,26,0.45);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}
.page-breadcrumb a { color: rgba(200,146,26,0.55); }
.page-breadcrumb a:hover { color: var(--gold); }

/* =====================
   PAGE TABS (sub-sections)
   ===================== */
.page-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.page-tabs {
  display: flex;
  border: 1px solid rgba(200,146,26,0.22);
  border-radius: 2px;
  overflow: hidden;
}
.page-tab {
  padding: 0.7rem 2rem;
  font-size: 0.76rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,146,26,0.6);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
}
.page-tab + .page-tab { border-left: 1px solid rgba(200,146,26,0.22); }
.page-tab.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.page-tab:hover:not(.active) {
  background: rgba(200,146,26,0.1);
  color: var(--gold);
}

.page-panel { display: none; }
.page-panel.active { display: block; }

/* =====================
   GALLERY FULL PAGE
   ===================== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-masonry .span2 { grid-column: span 2; }
.gallery-masonry .span2v { grid-row: span 2; }
.gallery-item-lg {
  aspect-ratio: 1;
  background: var(--navy-light);
  border: 1px solid rgba(200,146,26,0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item-lg.span2  { aspect-ratio: 2/1; }
.gallery-item-lg.span2v { aspect-ratio: 1/2; }
.gallery-item-lg:hover  { border-color: rgba(200,146,26,0.4); transform: scale(1.01); }
.gallery-item-lg:hover .gallery-overlay { opacity: 1; }
.gallery-item-lg:hover .gallery-item-inner { opacity: 0.5; transform: scale(1.04); }

/* =====================
   IMAGE LIGHTBOX
   ===================== */
.img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,12,30,0.97);
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.img-lightbox.open { display: flex; }
.img-lightbox-body {
  font-size: clamp(6rem, 20vw, 14rem);
  color: var(--gold);
  opacity: 0.6;
  filter: drop-shadow(0 0 40px rgba(200,146,26,0.4));
  line-height: 1;
}
.img-lightbox-title {
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 3px;
  text-align: center;
}
.img-lightbox .lightbox-close {
  position: fixed;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* =====================
   AUDIO PAGE
   ===================== */
.audio-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(200,146,26,0.15);
}
.audio-category-title:first-child { margin-top: 0; }
.audio-category-title h3 {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.audio-category-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,146,26,0.12);
  border: 1px solid rgba(200,146,26,0.3);
  font-family: var(--gurmukhi);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =====================
   ART PAGE FILTERS
   ===================== */
.art-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.art-filter-btn {
  padding: 0.4rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(200,146,26,0.25);
  border-radius: 2px;
  background: transparent;
  color: rgba(200,146,26,0.65);
  cursor: pointer;
  font-family: var(--sans);
  transition: all var(--transition);
}
.art-filter-btn.active,
.art-filter-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}

/* =====================
   VIDEO LIGHTBOX (sub-pages)
   ===================== */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,12,30,0.96);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.video-lightbox.open { display: flex; }
.video-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.video-lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none; border: none;
  color: var(--gold); font-size: 1.5rem;
  cursor: pointer;
}
.video-lightbox-inner iframe {
  width: 80vw; height: 45vw;
  max-height: 70vh;
  border: none; border-radius: 3px;
}

/* =====================
   SUB-PAGE RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry .span2 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .page-tabs { flex-wrap: wrap; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .span2,
  .gallery-masonry .span2v { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .page-tab { padding: 0.6rem 1rem; font-size: 0.68rem; }
}

/* ===================== DONATE NAV BUTTON ===================== */
.nav-donate-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 2px;
  padding: 0.38rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--sans);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-donate-btn:hover {
  background: var(--gold-light, #e0a830);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,146,26,0.4);
}

/* ===================== DONATE SECTION ===================== */
.donate-section { background: rgba(200,146,26,0.03); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* Impact list */
.donate-impact h3 {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.donate-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.donate-impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.donate-impact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.donate-impact-list strong {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.donate-impact-list p {
  font-size: 0.82rem;
  color: rgba(240,223,160,0.55);
  line-height: 1.6;
  margin: 0;
}

/* Donation card */
.donate-card {
  background: rgba(8,18,45,0.6);
  border: 1px solid rgba(200,146,26,0.2);
  border-radius: 4px;
  padding: 2.5rem;
}
.donate-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.donate-card-icon { font-size: 1.6rem; }
.donate-card-header h3 {
  font-size: 1.15rem;
  color: var(--cream);
}
.donate-note {
  font-size: 0.87rem;
  color: rgba(240,223,160,0.65);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.donate-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.donate-btn-main {
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.85rem 1.5rem;
  letter-spacing: 1.5px;
}
.donate-btn-alt {
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
}
.donate-methods {
  border-top: 1px solid rgba(200,146,26,0.12);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(240,223,160,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.donate-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 1rem;
}
.donate-tag {
  background: rgba(200,146,26,0.08);
  border: 1px solid rgba(200,146,26,0.2);
  border-radius: 2px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.donate-contact {
  font-size: 0.82rem;
  color: rgba(240,223,160,0.55);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
}
.donate-contact a { color: var(--gold); }
.donate-contact a:hover { color: var(--gold-light, #e0a830); }

@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-donate-btn { display: none; }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .nav-inner { padding: 0 1rem; }
  .nav-donate-btn { padding: 0.32rem 0.6rem; font-size: 0.65rem; letter-spacing: 1px; }
  .nav-links a { padding: 0.5rem 0.45rem; font-size: 0.7rem; letter-spacing: 0.8px; }
}

/* =============================================
   LIGHT MODE THEME
   Parchment #F5EDD8 | Navy text | Gold accents
   ============================================= */

body.light-mode {
  --navy:       #F5EDD8;
  --navy-mid:   #EDE0C4;
  --navy-light: #E4D3AE;
  --cream:      #08122D;
  --white:      #08122D;
  --gold:       #9A6E0E;
  --gold-light: #B88A18;
  --gold-dim:   #7A5608;
  --text-muted: rgba(8,18,45,0.5);
  background: #F5EDD8;
  color: #08122D;
}

/* Navbar */
body.light-mode .navbar {
  background: rgba(245,237,216,0.97);
  border-bottom: 1px solid rgba(8,18,45,0.1);
}
body.light-mode .navbar.scrolled {
  background: rgba(245,237,216,0.99);
  box-shadow: 0 2px 20px rgba(8,18,45,0.1);
}
body.light-mode .nav-links a { color: rgba(8,18,45,0.75); }
body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active { color: var(--gold); }
body.light-mode .nav-logo-text span:first-child { color: #08122D; }
body.light-mode .nav-logo-text span:last-child { color: rgba(8,18,45,0.5); }
body.light-mode .nav-lang-toggle {
  background: rgba(8,18,45,0.07);
  border-color: rgba(8,18,45,0.2);
}
body.light-mode .nav-lang-toggle span { color: #08122D; }
body.light-mode .nav-hamburger span { background: #08122D; }

/* Mobile nav */
body.light-mode .mobile-nav {
  background: rgba(245,237,216,0.99);
}
body.light-mode .mobile-nav a { color: #08122D; }
body.light-mode .mobile-nav-close {
  background: rgba(8,18,45,0.07);
  border-color: rgba(8,18,45,0.2);
  color: #08122D;
}

/* Hero */
body.light-mode .hero { background: #F5EDD8; }
body.light-mode .hero-bg { opacity: 0.04; }
body.light-mode .hero-rings .hero-ring { border-color: rgba(8,18,45,0.08); }
body.light-mode .hero-title { color: #08122D; }
body.light-mode .hero-tagline { color: rgba(8,18,45,0.55); }
body.light-mode .hero-rule { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
body.light-mode .hero-mool-mantar { color: var(--gold); }

/* Sections */
body.light-mode .section { background: #F5EDD8; }
body.light-mode .section:nth-child(even) { background: #EDE0C4; }
body.light-mode .section-header p { color: rgba(8,18,45,0.65); }
body.light-mode .gold-rule { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* Stats bar */
body.light-mode .stats-bar { background: #08122D; }

/* Cards */
body.light-mode .video-card,
body.light-mode .resource-card,
body.light-mode .audio-card,
body.light-mode .art-card {
  background: #FFFFFF;
  border-color: rgba(8,18,45,0.1);
}
body.light-mode .video-card:hover,
body.light-mode .resource-card:hover { border-color: var(--gold); }
body.light-mode .video-card-meta { color: rgba(8,18,45,0.55); }
body.light-mode .video-play-btn {
  background: rgba(8,18,45,0.08);
  border-color: rgba(8,18,45,0.15);
}
body.light-mode .resource-icon { color: var(--gold); }
body.light-mode .resource-card h3 { color: #08122D; }
body.light-mode .resource-card p { color: rgba(8,18,45,0.65); }

/* Gallery */
body.light-mode .gallery-item { border-color: rgba(8,18,45,0.1); }
body.light-mode .gallery-item-inner { background: linear-gradient(135deg, #EDE0C4, #E4D3AE); }

/* About */
body.light-mode .about-content h2 { color: #08122D; }
body.light-mode .about-content p { color: rgba(8,18,45,0.7); }
body.light-mode .about-verse {
  border-color: rgba(8,18,45,0.15);
  background: rgba(8,18,45,0.03);
}
body.light-mode .about-verse-text { color: rgba(8,18,45,0.6); }

/* Contact */
body.light-mode .contact-link {
  background: #FFFFFF;
  border-color: rgba(8,18,45,0.1);
}
body.light-mode .contact-link:hover { border-color: var(--gold); }
body.light-mode .contact-link-icon { background: rgba(8,18,45,0.06); color: var(--gold); }
body.light-mode .contact-link-text strong { color: #08122D; }
body.light-mode .contact-link-text span { color: rgba(8,18,45,0.55); }
body.light-mode .contact-form input,
body.light-mode .contact-form select,
body.light-mode .contact-form textarea {
  background: #FFFFFF;
  border-color: rgba(8,18,45,0.2);
  color: #08122D;
}
body.light-mode .contact-form input:focus,
body.light-mode .contact-form select:focus,
body.light-mode .contact-form textarea:focus {
  border-color: var(--gold);
}
body.light-mode label { color: rgba(8,18,45,0.7); }

/* Donate */
body.light-mode .donate-section { background: #EDE0C4; }
body.light-mode .donate-card {
  background: #FFFDF7;
  border-color: rgba(8,18,45,0.15);
}
body.light-mode .donate-card-header h3 { color: #08122D; }
body.light-mode .donate-note { color: rgba(8,18,45,0.6); }
body.light-mode .donate-impact-list strong { color: #08122D; }
body.light-mode .donate-impact-list p { color: rgba(8,18,45,0.55); }
body.light-mode .donate-impact h3 { color: var(--gold); }

/* Social */
body.light-mode .social-tab {
  background: rgba(8,18,45,0.06);
  border-color: rgba(8,18,45,0.15);
  color: rgba(8,18,45,0.7);
}
body.light-mode .social-tab.active,
body.light-mode .social-tab:hover {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}

/* Footer */
body.light-mode .footer {
  background: #08122D;
}

/* Buttons */
body.light-mode .btn-outline {
  border-color: #08122D;
  color: #08122D;
}
body.light-mode .btn-outline:hover {
  background: #08122D;
  color: #F5EDD8;
}

/* Page sub-pages hero */
body.light-mode .page-hero {
  background: linear-gradient(135deg, #EDE0C4 0%, #E4D3AE 100%);
}
body.light-mode .page-hero h1 { color: #08122D; }
body.light-mode .page-hero p { color: rgba(8,18,45,0.65); }
body.light-mode .page-breadcrumb a { color: rgba(8,18,45,0.55); }
body.light-mode .page-tab {
  background: rgba(8,18,45,0.06);
  border-color: rgba(8,18,45,0.15);
  color: rgba(8,18,45,0.65);
}
body.light-mode .page-tab.active,
body.light-mode .page-tab:hover {
  background: var(--gold);
  color: #FFFFFF;
}

/* Theme toggle button */
.nav-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.3);
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-theme-toggle:hover {
  background: rgba(200,146,26,0.2);
}
body.light-mode .nav-theme-toggle {
  background: rgba(8,18,45,0.07);
  border-color: rgba(8,18,45,0.2);
}
body.light-mode .nav-theme-toggle:hover {
  background: rgba(8,18,45,0.14);
}
