/* ============================================================
   Yogi Ramsuratkumar Website - Main Stylesheet (Green Theme)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green: #1A6B2E;
  --green-light: #2D9148;
  --green-dark: #0F4520;
  --gold: #FFD700;
  --gold-dark: #CCA800;
  --dark: #061A0E;
  --cream: #F0FFF4;
  --light-bg: #D8F3DC;
  --card-bg: #F5FFFA;
  --text-dark: #071A0E;
  --text-body: #1B4332;
  --text-light: #3D7A57;
  --border: rgba(26, 107, 46, 0.22);
  --shadow: 0 4px 20px rgba(15, 69, 32, 0.09);
  --shadow-hover: 0 8px 30px rgba(15, 69, 32, 0.18);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cinzel', 'Georgia', serif; color: var(--text-dark); line-height: 1.3; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(240, 255, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 107, 46, 0.18);
  box-shadow: 0 2px 20px rgba(15, 69, 32, 0.1);
  transition: var(--transition);
}
.header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--green) 50%, var(--gold) 80%, transparent);
  opacity: 0.55;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(15, 69, 32, 0.15); }

.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px; max-width: 1200px; margin: 0 auto;
}
.nav-left-group { display: flex; align-items: center; gap: 14px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(26, 107, 46, 0.35);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--green-dark); line-height: 1.2; }
.nav-logo-subtitle { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-weight: 600; font-size: 0.92rem;
  color: var(--text-dark); border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--green); border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.nav-link:hover::after { left: 14px; right: 14px; opacity: 1; }
.nav-link.active {
  color: var(--green-dark);
}
.nav-link.active::after { left: 14px; right: 14px; opacity: 1; }
.nav-link:hover { color: var(--green); background: rgba(26, 107, 46, 0.07); }
.nav-link .arrow { font-size: 0.65rem; transition: transform 0.3s ease; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 150px; background: #fff;
  border: 1px solid rgba(26, 107, 46, 0.15); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(15, 69, 32, 0.15); opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.25s ease; z-index: 200;
  padding: 6px;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 9px 14px; color: var(--text-body);
  font-size: 0.88rem; transition: var(--transition); border-radius: 5px; font-weight: 500;
}
.dropdown li a:hover { color: var(--green); background: rgba(26, 107, 46, 0.07); padding-left: 18px; }
.dropdown li a::before { content: ''; }

/* Sub-dropdown (nested inside Gallery dropdown) */
.nav-has-sub { position: relative; }
.sub-arrow { font-size: 0.65rem; margin-left: 4px; display: inline-block; transition: transform 0.25s ease; }
.nav-has-sub:hover .sub-arrow { transform: rotate(90deg); }
.sub-dropdown {
  position: absolute; left: 100%; top: -6px;
  min-width: 130px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hover); opacity: 0; visibility: hidden;
  transform: translateX(-6px); transition: all 0.22s ease; z-index: 300;
  padding: 6px;
}
.nav-has-sub:hover .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.sub-dropdown li a {
  display: block; padding: 9px 14px; color: var(--text-body);
  font-size: 0.88rem; transition: var(--transition); border-radius: 5px;
}
.sub-dropdown li a:hover { color: var(--green); background: rgba(26, 107, 46, 0.07); }

/* Nav Share Button */
.nav-share-btn {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-family: inherit; font-weight: 600;
  white-space: nowrap; padding: 7px 16px; border-radius: 50px;
  box-shadow: 0 3px 10px rgba(26, 107, 46, 0.3);
  transition: var(--transition);
  justify-content: flex-start !important;
}
.nav-share-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(26, 107, 46, 0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; padding: 5px; gap: 5px; background: none; border: none; z-index: 1002; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; display: none; }
.menu-overlay.active { display: block; }

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 80px 16px 24px; gap: 0; z-index: 999;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15); transition: right 0.22s ease;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; }
  .nav-link { padding: 13px 16px; width: 100%; justify-content: space-between; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border: none; background: rgba(26,107,46,0.04); opacity: 1; visibility: visible; transform: none; display: none; padding: 0; }
  .nav-item.open .dropdown { display: block; }
  .dropdown li a { padding-left: 32px; }
  .dropdown li a::before { content: ''; }
  /* Sub-dropdown on mobile */
  .sub-arrow { font-size: 0.65rem; transition: transform 0.25s ease; }
  .nav-has-sub.open .sub-arrow { transform: rotate(90deg); }
  .sub-dropdown {
    position: static; box-shadow: none; border: none;
    background: rgba(26,107,46,0.06); opacity: 1; visibility: visible;
    transform: none; display: none; padding: 0;
  }
  .nav-has-sub.open .sub-dropdown { display: block; }
  .sub-dropdown li a { padding-left: 48px; }
}

/* ============================================================
   SHARE MODAL
   ============================================================ */
.share-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.share-modal-overlay.active { opacity: 1; visibility: visible; }
.share-modal {
  background: #fff; border-radius: 20px; padding: 32px 28px 26px;
  width: min(420px, 92vw); position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  transform: scale(0.88) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  opacity: 0;
}
.share-modal-overlay.active .share-modal { transform: scale(1) translateY(0); opacity: 1; }
.share-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: #f0f0f0; color: #888;
  font-size: 1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s;
}
.share-modal-close:hover { background: #e0e0e0; color: #333; }
.share-modal-header { text-align: center; margin-bottom: 20px; }
.share-modal-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  box-shadow: 0 6px 20px rgba(26,107,46,0.3);
}
.share-modal-header h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--text-dark); }
.share-modal-header p { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.share-url-box {
  display: flex; align-items: center; gap: 8px;
  background: #f7fdf9; border: 1.5px solid rgba(26,107,46,0.2);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 20px;
}
.share-url-box span { flex: 1; font-size: 0.78rem; color: var(--text-light); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.share-url-copy-btn {
  background: var(--green); color: #fff; border: none; border-radius: 7px;
  padding: 5px 12px; font-size: 0.75rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.2s; flex-shrink: 0;
}
.share-url-copy-btn:hover { background: var(--green-dark); }
.share-platforms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px;
}
.share-plat-btn {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 13px 8px; border-radius: 12px; border: 1.5px solid #eee;
  background: #fff; cursor: pointer; font-size: 0.72rem; font-weight: 600;
  font-family: inherit; color: #555; transition: all 0.22s;
}
.share-plat-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); border-color: var(--plat-color, #ccc); color: var(--plat-color, #333); }
.share-plat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.share-modal-footer { text-align: center; font-size: 0.72rem; color: #ccc; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(6, 26, 14, 0.90) 0%, rgba(15, 69, 32, 0.86) 50%, rgba(26, 107, 46, 0.84) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3) 100%);
}
.hero-content { max-width: 820px; color: white; position: relative; z-index: 1; }

.hero-om { font-size: 3.5rem; margin-bottom: 8px; animation: float 4s ease-in-out infinite; display: block; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.3); padding: 5px 18px;
  border-radius: 50px; margin-bottom: 16px;
}
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 700; color: white; text-shadow: 2px 4px 12px rgba(0,0,0,0.4); margin-bottom: 6px; }
.hero-title-sub { font-family: 'Cinzel', serif; font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.hero-dates { font-size: 0.9rem; color: rgba(255,215,0,0.85); letter-spacing: 0.15em; margin-bottom: 28px; }

.hero-quote {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-lg);
  padding: 22px 32px; margin: 0 auto 28px; max-width: 680px;
  font-size: clamp(0.95rem, 2vw, 1.1rem); line-height: 1.75;
  color: rgba(255,255,255,0.95); font-style: italic;
}
.hero-chant { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 30px; opacity: 0.9; }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; letter-spacing: 0.03em; }
.btn-primary { background: white; color: var(--green-dark); border-color: white; }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; transform: translateY(-3px); }
.btn-saffron { background: var(--green); color: white; border-color: var(--green); }
.btn-saffron:hover { background: var(--green-dark); border-color: var(--green-dark); color: white; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,107,46,0.4); }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--green);
  background: rgba(26, 107, 46, 0.08); padding: 4px 16px; border-radius: 50px; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--text-dark); margin-bottom: 14px; }
.section-divider { width: 56px; height: 4px; background: linear-gradient(to right, var(--green), var(--gold)); margin: 0 auto 14px; border-radius: 2px; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   HOME - ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-hover); aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(26,107,46,0.15), rgba(255,215,0,0.18));
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-content p { font-size: 1rem; line-height: 1.85; color: var(--text-body); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.stat-item { text-align: center; padding: 14px 8px; background: white; border-radius: var(--radius); border: 1px solid var(--border); }
.stat-number { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--green); display: block; }
.stat-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   HOME - HIGHLIGHTS GRID
   ============================================================ */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.highlight-card {
  text-align: center; padding: 32px 22px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition);
  box-shadow: var(--shadow); cursor: pointer;
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(26,107,46,0.4); }
.highlight-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; }
.highlight-card h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; }
.highlight-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 55%, var(--green) 100%);
  padding: 80px 0; text-align: center;
}
.quote-banner blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-style: italic; color: rgba(255,255,255,0.95);
  max-width: 780px; margin: 0 auto 20px; line-height: 1.65;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.25);
}
.quote-banner cite { font-size: 0.88rem; color: var(--gold); letter-spacing: 0.12em; display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); padding-top: 32px; padding-bottom: 60px; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 10px; }
.filter-btn {
  padding: 8px 22px; border: 2px solid var(--border); border-radius: 50px;
  background: white; color: var(--text-body); cursor: pointer;
  font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: white; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(26,107,46,0.12), rgba(255,215,0,0.13));
  box-shadow: var(--shadow); transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, rgba(26,107,46,0.1), rgba(255,215,0,0.13));
  color: rgba(26,107,46,0.5);
}
.gallery-placeholder .ph-icon { font-size: 2.5rem; }
.gallery-placeholder .ph-text { font-size: 0.78rem; color: rgba(26,107,46,0.4); letter-spacing: 0.05em; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,26,14,0.78) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 14px 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 0; }
.gallery-caption { color: white; font-size: 0.88rem; font-weight: 600; line-height: 1.3; }


/* ---- Serial Number Badge ---- */
.serial-badge {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  background: rgba(15, 69, 32, 0.88); color: #FFD700;
  font-size: 0.7rem; font-weight: 700; padding: 3px 9px;
  border-radius: 50px; letter-spacing: 0.06em;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,215,0,0.3);
  pointer-events: none;
}
.video-serial { top: 8px; left: 8px; }

.pdf-serial-inline {
  display: inline-block; background: var(--green); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 1px 8px;
  border-radius: 50px; margin-right: 6px; vertical-align: middle;
}

/* ---- Gallery counter / desc ---- */
.gallery-counter { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.gallery-desc { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.72); margin-top: 3px; line-height: 1.4; }
.gallery-loading { text-align: center; color: var(--text-light); padding: 40px; font-size: 1rem; grid-column: 1 / -1; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); cursor: pointer; }
.lb-body { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-body img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 12px 60px rgba(0,0,0,0.5); }
.lb-caption { color: rgba(255,255,255,0.82); font-size: 0.9rem; text-align: center; }
.lb-counter { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

.lb-close {
  position: fixed; top: 18px; right: 18px; width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%; color: white; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%;
  color: white; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
}
.lb-btn:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* ============================================================
   VIDEO GALLERY
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.video-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #061A0E, #1A6B2E); overflow: hidden; cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb iframe { width: 100%; height: 100%; border: none; display: block; }

.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; background: rgba(255,255,255,0.92);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--green); transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); padding-left: 4px;
}
.video-thumb:hover .video-play-btn { background: white; transform: translate(-50%, -50%) scale(1.1); }
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); color: white; font-size: 0.75rem;
  padding: 2px 8px; border-radius: 4px;
}

.video-info { padding: 18px; }
.video-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; line-height: 1.4; }
.video-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }
.video-meta { display: flex; gap: 14px; margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }
.yt-open-link { display: inline-block; margin-top: 10px; font-size: 0.78rem; font-weight: 600; color: #c00; text-decoration: none; letter-spacing: 0.01em; }
.yt-open-link:hover { text-decoration: underline; color: #e00; }
.yt-only-badge { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.75); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; pointer-events: none; letter-spacing: 0.04em; }

/* ============================================================
   NAV MINI PLAYER
   ============================================================ */
.nmp-logo-wrap { display: flex; align-items: center; margin-left: 12px; }

/* Single-row pill */
.nmp {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2a7a45 0%, #3da664 100%);
  border-radius: 50px; padding: 3px 8px 3px 3px;
  border: 1px solid rgba(116,198,157,0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  overflow: visible;
  user-select: none; transition: box-shadow 0.3s;
}
.nmp.nmp-playing { box-shadow: 0 0 0 1px rgba(116,198,157,0.5), 0 4px 16px rgba(116,198,157,0.15); }

/* Play button */
.nmp-btn {
  width: 20px; height: 20px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #0F4520; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(255,215,0,0.35);
}
.nmp-btn:hover { transform: scale(1.1); }
.nmp-btn:active { transform: scale(0.95); }

/* Middle area — fixed size, never changes height */
.nmp-middle { flex: 0 0 80px; height: 20px; min-width: 0; position: relative; overflow: hidden; }

/* Title — absolute fill, flex-centered */
.nmp-title-wrap {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nmp-title {
  font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em; white-space: nowrap; display: inline-block; line-height: 1;
  font-family: 'Cinzel', Georgia, serif; text-align: center;
}
.nmp-title.nmp-marquee { animation: nmpMarquee 12s linear infinite; }
@keyframes nmpMarquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* Volume button */
.nmp-vol-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  color: rgba(116,198,157,0.75); display: flex; align-items: center; flex-shrink: 0;
  transition: color 0.2s;
}
.nmp-vol-btn:hover { color: #74C69D; }

/* Inline volume slider */
.nmp-vol-slider {
  -webkit-appearance: none; appearance: none;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; height: 4px; border-radius: 4px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, #74C69D 80%, rgba(255,255,255,0.12) 80%);
}
.nmp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: #FFD700;
  cursor: pointer; border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.nmp-vol-slider::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; border: none;
  background: #FFD700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .nmp-logo-wrap { margin-left: 6px; }
  .nmp { padding: 3px 6px 3px 3px; gap: 4px; }
  .nmp-btn { width: 20px; height: 20px; }
  .nmp-title { font-size: 0.55rem; }
  .nmp-middle { flex: 0 0 60px; }
  .nmp-vol-btn svg { width: 11px; height: 11px; }
}

/* ============================================================
   PDF GALLERY
   ============================================================ */
.pdf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.pdf-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition); box-shadow: var(--shadow);
}
.pdf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(26,107,46,0.35); }
.pdf-icon-wrap {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.7rem; color: white;
  box-shadow: 0 3px 10px rgba(26,107,46,0.3);
}
.pdf-info { flex: 1; min-width: 0; }
.pdf-title { font-family: 'Cinzel', serif; font-size: 0.93rem; color: var(--text-dark); margin-bottom: 5px; line-height: 1.45; }
.pdf-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.pdf-download {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: var(--green); color: white;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
}
.pdf-download:hover { background: var(--green-dark); color: white; transform: translateX(3px); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bio-section { background: var(--light-bg); }
.bio-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.bio-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(26,107,46,0.15), rgba(255,215,0,0.18));
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  position: sticky; top: 90px;
}
.bio-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bio-text { display: flex; flex-direction: column; gap: 18px; }
.bio-text p { font-size: 1rem; line-height: 1.9; color: var(--text-body); }

/* Timeline */
.timeline-wrap { max-width: 780px; margin: 0 auto; position: relative; padding-left: 16px; }
.timeline-wrap::before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green), var(--gold), transparent); }
.timeline-item { display: flex; gap: 22px; margin-bottom: 30px; position: relative; }
.t-dot {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white; z-index: 1;
  box-shadow: 0 3px 12px rgba(26,107,46,0.35); text-align: center; line-height: 1.1;
}
.t-content { flex: 1; padding: 16px 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.t-year { font-size: 0.78rem; font-weight: 700; color: var(--green); letter-spacing: 0.1em; margin-bottom: 4px; }
.t-title { font-size: 1rem; color: var(--text-dark); font-weight: 700; margin-bottom: 6px; }
.t-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Teachings */
.teachings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.teaching-card {
  padding: 24px; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); border-top: 4px solid var(--green);
  box-shadow: var(--shadow); transition: var(--transition);
}
.teaching-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.teaching-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.teaching-card h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 10px; }
.teaching-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 110px 0 52px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 100%);
  text-align: center; color: white;
}
.page-header h1 { font-family: 'Cinzel', serif; font-size: clamp(1.7rem, 4vw, 2.6rem); color: white; margin-bottom: 10px; }
.page-header p { font-size: 0.95rem; color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto; line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { padding: 28px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-card h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.contact-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-ico { width: 42px; height: 42px; background: linear-gradient(135deg, var(--green), var(--gold)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: white; }
.contact-info h4 { font-size: 0.78rem; font-weight: 700; color: var(--green); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

.map-placeholder {
  aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(26,107,46,0.08), rgba(255,215,0,0.1));
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(26,107,46,0.4); gap: 10px;
}
.map-placeholder p { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 36px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem; font-family: inherit;
  color: var(--text-body); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,46,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 36px; background: var(--green); color: white; border: none;
  border-radius: 50px; font-family: inherit; font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; transition: var(--transition);
}
.btn-submit:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,46,0.35); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.cf-status { padding: 12px 16px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 16px; }
.cf-status.success { background: rgba(26,107,46,0.1); color: var(--green-dark); border: 1px solid rgba(26,107,46,0.3); }
.cf-status.error   { background: rgba(200,50,50,0.08); color: #b91c1c; border: 1px solid rgba(200,50,50,0.25); }
@media (max-width: 640px) {
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   RANDOM QUOTE CARD
   ============================================================ */
#randomQuoteSection { padding-left: 0; padding-right: 0; }
#randomQuoteSection .container { max-width: 100%; padding: 0; }
#randomQuoteSection .section-header { padding: 0 60px; }
.rq-card {
  display: flex; align-items: stretch; gap: 0;
  background: #fff;
  box-shadow: 0 0 0 1px #90c9a6, 0 8px 32px rgba(0,0,0,0.10);
  overflow: hidden; margin: 0 60px; border-radius: 28px;
}
.rq-img-wrap {
  flex: 0 0 38%; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  background: #111; overflow: hidden;
}
.rq-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.rq-divider {
  width: 2px; align-self: stretch; flex-shrink: 0; margin: 40px 0;
  background: linear-gradient(180deg, transparent 0%, #2d8a47 25%, #1a6b2e 50%, #2d8a47 75%, transparent 100%);
  position: relative;
}
.rq-divider::before {
  content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; color: #1a6b2e; font-size: 0.75rem;
  padding: 8px 0; line-height: 1;
}
.rq-body {
  flex: 1; min-width: 0; padding: 60px 64px; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; overflow-wrap: break-word; word-break: normal;
}
.rq-quote-icon {
  font-family: 'Cinzel', Georgia, serif; font-size: 8rem; line-height: 0.6;
  color: var(--green-light); opacity: 0.25; position: absolute; top: 32px; left: 40px;
  pointer-events: none; user-select: none;
}
.rq-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.45rem; line-height: 1.9; color: var(--text-dark);
  font-style: italic; margin-bottom: 12px; position: relative; z-index: 1;
}
.rq-ta {
  font-size: 1.1rem; color: var(--text-light); margin-top: 8px; line-height: 1.75;
}
.rq-source {
  display: block; margin-top: 24px; font-size: 0.85rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 900px) {
  #randomQuoteSection .section-header { padding: 0 20px; }
  .rq-card { flex-direction: column; margin: 0 20px; }
  .rq-img-wrap { flex: none; width: 100%; min-height: 260px; }
  .rq-divider { width: auto; height: 2px; align-self: auto; margin: 0 40px;
    background: linear-gradient(90deg, transparent 0%, #2d8a47 25%, #1a6b2e 50%, #2d8a47 75%, transparent 100%); }
  .rq-divider::before { top: 50%; left: 50%; padding: 0 8px; }
  .rq-body { padding: 32px 28px 36px; }
  .rq-quote-icon { font-size: 4rem; top: 16px; left: 16px; }
  .rq-text { font-size: 1.15rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #030E06 0%, #061A0E 100%);
  color: rgba(255,255,255,0.65); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-bottom: 14px; }
.footer-chant { font-family: 'Cinzel', serif; font-size: 0.78rem; color: #74C69D; font-style: italic; line-height: 1.6; }

/* Social media icons */
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.soc-link {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: white;
  border: 1px solid rgba(255,255,255,0.15);
}
.soc-link:hover { transform: translateY(-3px); color: white; }
.soc-fb { background: #1877f2; }  .soc-fb:hover  { background: #0d65d9; }
.soc-yt { background: #ff0000; }  .soc-yt:hover  { background: #cc0000; }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-ig:hover { opacity: 0.85; }
.soc-wa { background: #25d366; }  .soc-wa:hover  { background: #1da851; }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.84rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #74C69D; }
.footer-col ul li a::before { content: '› '; color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: #74C69D; }

/* ============================================================
   UTILITIES & SCROLL-TOP
   ============================================================ */
.bg-light { background: var(--light-bg); }
.text-center { text-align: center; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--green); color: white;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(26,107,46,0.45); opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { max-width: 360px; margin: 0 auto; }
  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .bio-img-wrap { max-width: 360px; margin: 0 auto; aspect-ratio: 3/2; position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .video-grid { grid-template-columns: 1fr; }
  .pdf-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .timeline-wrap::before { left: 40px; }
}

/* ============================================================
   Language Switcher (nav dropdown)
   ============================================================ */
.lang-dropdown li button {
  display: block; width: 100%; padding: 9px 14px;
  color: var(--text-body); font-size: 0.88rem;
  transition: var(--transition); border-radius: 5px;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; font-weight: 500;
}
.lang-dropdown li button:hover { color: var(--green); background: rgba(26,107,46,0.07); }
.lang-dropdown li button.active { color: var(--green); font-weight: 700; }
