/* ===== GSB Mandal Thane - Master Stylesheet ===== */

/* --- Design Tokens --- */
@import url('design-tokens.css');

/* --- Google Fonts (loaded via <link> in HTML for performance) --- */

/* --- CSS Variables --- */
:root {
  --saffron: #E8762B;
  --saffron-light: #F5A623;
  --maroon: #7B1A2C;
  --maroon-deep: #5A0F1F;
  --gold: #C5993A;
  --gold-light: #E8C96A;
  --cream: #FFF9F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --border: #E8E0D4;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-deva: 'Noto Sans Devanagari', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

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

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-maroon { color: var(--maroon); }
.text-gold { color: var(--gold); }

/* --- Decorative Divider --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 32px;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

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

.section-header .subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--maroon);
  font-weight: 700;
  line-height: 1.2;
}

.section-header p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--gold-light);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ========== HEADER / NAVBAR ========== */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.nav-brand-text h1,
.nav-brand-text .nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--maroon);
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.nav-brand-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--maroon);
  background: rgba(123, 26, 44, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--maroon)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 118, 43, 0.4);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a10 0%, var(--maroon-deep) 30%, var(--maroon) 60%, #4a1520 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(232,118,43,0.15), transparent),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(197,153,58,0.1), transparent),
    radial-gradient(ellipse 400px 400px at 50% 80%, rgba(232,118,43,0.08), transparent);
  z-index: 1;
}

/* Mandala Background Pattern */
.hero-mandala {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(197,153,58,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-mandala::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(197,153,58,0.1);
}

.hero-mandala::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(197,153,58,0.12);
}

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

.hero-sanskrit {
  font-family: var(--font-deva);
  font-size: 1.3rem;
  color: var(--gold-light);
  opacity: 0.9;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-motto {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.hero h1,
.hero h2 {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E8C96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,153,58,0.15);
  border: 1px solid rgba(197,153,58,0.25);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  z-index: 1;
  opacity: 0.06;
  font-size: 120px;
  color: var(--gold);
}

.hero-float-1 { top: 10%; left: 5%; }
.hero-float-2 { bottom: 10%; right: 5%; }

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

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #D4681E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,118,43,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232,118,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(123,26,44,0.3);
}

.btn-maroon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123,26,44,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197,153,58,0.4);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 40px;
  line-height: 1.2;
}

.about-image-placeholder span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 12px;
  opacity: 0.7;
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(197,153,58,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,118,43,0.1), rgba(123,26,44,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197,153,58,0.08), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== HERITAGE / SPIRITUAL ========== */
.heritage-section {
  background: var(--white);
}

.heritage-card {
  background: linear-gradient(160deg, #FFF9F0, #FFF5E8);
  border: 1px solid rgba(197,153,58,0.15);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.heritage-emblem {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(197,153,58,0.2);
}

.heritage-emblem-inner {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.heritage-emblem-inner .icon {
  font-size: 2.5rem;
  margin-bottom: 6px;
}

.heritage-emblem-inner p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 600;
  line-height: 1.3;
}

.heritage-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 16px;
}

.heritage-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 1rem;
}

.heritage-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* ========== EVENTS SECTION ========== */
.events-section {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.event-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card-header {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-date-box {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
  color: var(--white);
}

.event-date-box .day {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.event-card-header h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-card-body {
  padding: 24px;
}

.event-card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.event-meta-item .icon {
  color: var(--saffron);
  width: 18px;
  text-align: center;
}

.event-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

.event-tag.upcoming {
  background: rgba(232,118,43,0.1);
  color: var(--saffron);
}

.event-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.event-tag.past {
  background: rgba(107,107,107,0.1);
  color: var(--text-light);
}

/* ========== ACTIVITIES SECTION ========== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.activity-card:hover::before {
  transform: scaleX(1);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.activity-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,118,43,0.08), rgba(123,26,44,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.activity-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.activity-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== COMMITTEE SECTION ========== */
.committee-section {
  background: var(--white);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.committee-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.committee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.committee-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(232,118,43,0.2);
}

.committee-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.committee-card .role {
  font-size: 0.82rem;
  color: var(--saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.committee-card .phone {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.committee-card .phone a {
  color: var(--maroon);
  font-weight: 500;
}

.committee-card .phone a:hover {
  color: var(--saffron);
}

/* ========== GALLERY SECTION ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ========== VIDEO GRID ========== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-grid > div {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
  padding: 20px;
}

.gallery-item-inner .icon {
  font-size: 2rem;
  opacity: 0.8;
}

.gallery-item:nth-child(1) .gallery-item-inner { background: linear-gradient(135deg, #7B1A2C, #5A0F1F); }
.gallery-item:nth-child(2) .gallery-item-inner { background: linear-gradient(135deg, #E8762B, #C4601F); }
.gallery-item:nth-child(3) .gallery-item-inner { background: linear-gradient(135deg, #C5993A, #A07C2E); }
.gallery-item:nth-child(4) .gallery-item-inner { background: linear-gradient(135deg, #5A0F1F, #3D0915); }
.gallery-item:nth-child(5) .gallery-item-inner { background: linear-gradient(135deg, #A07C2E, #7B5F1F); }
.gallery-item:nth-child(6) .gallery-item-inner { background: linear-gradient(135deg, #C4601F, #E8762B); }
.gallery-item:nth-child(7) .gallery-item-inner { background: linear-gradient(135deg, #3D0915, #7B1A2C); }

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(232,118,43,0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(232,118,43,0.1), rgba(123,26,44,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-card a {
  color: var(--saffron);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--maroon);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(160deg, var(--maroon-deep), var(--maroon), #4a1520);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,118,43,0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ========== TIMELINE (Events page) ========== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--saffron), var(--maroon));
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.timeline-content .date {
  font-size: 0.8rem;
  color: var(--saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========== PAGE BANNER (Inner pages) ========== */
.page-banner {
  background: linear-gradient(160deg, var(--maroon-deep), var(--maroon));
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(197,153,58,0.08), transparent);
}

.page-banner h1,
.page-banner h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .motto {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: var(--saffron);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--saffron);
  color: var(--white);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1,
  .hero h2 { font-size: 3rem; }
  .section-header h2 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .heritage-card { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .section-padding { padding: 70px 0; }

  .top-bar { display: none; }

  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .nav-inner { height: 68px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    background: var(--white);
    position: relative;
    z-index: 1;
  }

  .hero { min-height: 80vh; }
  .hero h1,
  .hero h2 { font-size: 2.4rem; }
  .hero h3 { font-size: 1.2rem; }
  .hero-mandala { width: 400px; height: 400px; }

  .about-highlights { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-featured { grid-column: span 1; grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
    flex-direction: row;
  }
  .timeline-dot { left: 20px; }

  .page-banner { padding: 100px 0 50px; }
  .page-banner h1,
  .page-banner h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero h1,
  .hero h2 { font-size: 1.9rem; }
  .section-header h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 2.2rem; }
  .committee-grid { grid-template-columns: 1fr; }
  .heritage-card { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item[style*="span 2"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* Force inline 3-col grids to 1 column on mobile */
  .activities-grid[style*="repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Force inline 2-col video grids to 1 column */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Buttons stack vertically */
  .hero-actions,
  .cta-content > div[style*="display:flex"],
  .cta-content > div[style*="display: flex"] {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }
  .nav-cta { width: auto; }
}

/* ========== SKIP TO CONTENT ========== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--maroon);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 8px;
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ========== FOCUS & ACCESSIBILITY ========== */
*:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.nav-links a:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.event-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ========== NAV LOGO IMAGE ========== */
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ========== GALLERY/CONTENT IMAGES ========== */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-emblem-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ========== BLOG ARCHIVE STYLES ========== */
.blog-post-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 24px;
}

.blog-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-date-strip {
  background: linear-gradient(180deg, var(--maroon), var(--maroon-deep));
  color: var(--white);
  padding: 20px 16px;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date-strip .day {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.blog-date-strip .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.blog-date-strip .year {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 4px;
}

.blog-post-content {
  padding: 24px;
  flex: 1;
}

.blog-post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.blog-post-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.blog-post-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.blog-post-images img {
  max-height: 160px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.blog-post-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.year-header {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 24px;
  margin-top: 48px;
}

.year-header:first-of-type {
  margin-top: 0;
}

/* ========== DOWNLOAD DOCUMENT CARDS ========== */
.download-card {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.download-card:hover {
  transform: translateY(-4px);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero-mandala { display: none; }
}

/* ========== PRINT STYLES ========== */
@media print {
  .top-bar,
  .navbar,
  .nav-toggle,
  .hero-mandala,
  .hero-float,
  .cta-section,
  #backToTop,
  .footer-social,
  .skip-to-content {
    display: none !important;
  }

  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

@media (max-width: 768px) {
  .blog-post-card {
    flex-direction: column;
  }

  .blog-date-strip {
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
    min-width: auto;
  }

  .blog-post-images img {
    max-height: 120px;
  }
}
