/* ===================================
   NRITYASHALA - School of Odissi Dance
   Main Stylesheet
   Author: Roshni Stephen / Loka AI
=================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== 1. CSS VARIABLES & RESET ===== */
:root {
  --maroon: #2C3E50;
  --maroon-light: #34495E;
  --maroon-dark: #1B2838;
  --gold: #C9A84C;
  --gold-light: #D4B85C;
  --gold-dark: #A88B3D;
  --ivory: #FAFAFA;
  --ivory-dark: #F5F5F0;
  --charcoal: #1A1A2E;
  --charcoal-light: #4A4A5A;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', Arial, sans-serif;

  --nav-height: 80px;
  --transition: all 0.35s ease;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --border-gold: 1px solid rgba(201,168,76,0.4);
  --radius: 3px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== 2. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--maroon);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); }

p { margin-bottom: 1rem; color: var(--charcoal-light); }
p:last-child { margin-bottom: 0; }

/* ===== 3. LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-alt { background-color: var(--ivory-dark); }
.section-dark {
  background-color: var(--maroon-dark);
  color: var(--ivory);
}
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--gold); }
.section-dark p { color: rgba(250,247,242,0.82); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 0.5rem; }

.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-dark .section-subtitle { color: var(--gold-light); }

/* Dividers */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 280px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.divider-dark::before,.divider-dark::after {
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5), transparent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--maroon);
  color: var(--gold);
  border: 1px solid var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.7);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== 4. NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(27,40,56,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.navbar-solid {
  background: rgba(27,40,56,0.97) !important;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.7);
  flex-shrink: 0;
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.navbar-brand-tagline {
  font-size: 0.62rem;
  color: rgba(212,175,55,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.88);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.3s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 60%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 5. HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gallery/whatsapp%20image%202026-05-31%20at%207.32.37%20pm.jpg');
  background-size: cover;
  background-position: center 15%;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74,21,21,0.82) 0%,
    rgba(34,10,10,0.6) 45%,
    rgba(74,21,21,0.88) 100%
  );
}
.hero-decorative {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(212,175,55,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 85% 30%, rgba(212,175,55,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.4);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold); display: block; }
.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(250,247,242,0.82);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.75);
  margin-bottom: 3rem;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(212,175,55,0.5);
}
.hero-divider-icon { color: var(--gold); font-size: 0.85rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212,175,55,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(212,175,55,0.5);
  border-bottom: 1px solid rgba(212,175,55,0.5);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ===== 6. PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 4.5rem);
  padding-bottom: 4rem;
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.page-header::before {
  display: none;
}
.page-header-pattern {
  display: none;
}
.page-header h1 {
  color: var(--charcoal);
  position: relative;
  margin-bottom: 0.75rem;
}
.page-header .page-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
}
.page-header .breadcrumb {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  position: relative;
}
.page-header .breadcrumb a { color: var(--gold-dark); }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header .breadcrumb span { margin: 0 0.5rem; }

/* ===== 7. WELCOME SECTION ===== */
.welcome-section { padding: 7rem 0; background: var(--ivory); }
.welcome-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6rem;
  align-items: center;
}
.welcome-text h2 { margin-bottom: 1.5rem; }
.welcome-text p { font-size: 1rem; line-height: 1.85; }
.welcome-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(212,175,55,0.05);
}
.welcome-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--maroon);
  margin: 0;
  line-height: 1.6;
}
.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  border: var(--border-gold);
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--ivory);
  border-right: var(--border-gold);
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212,175,55,0.05); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.welcome-image { position: relative; }
.welcome-image-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.welcome-image-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 8px; bottom: 8px;
  border: 1px solid rgba(212,175,55,0.3);
  pointer-events: none;
  z-index: -1;
}
.welcome-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.welcome-image-caption {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ===== 8. ODISSI INTRO ===== */
.odissi-section { padding: 7rem 0; background: var(--maroon-dark); color: rgba(255,255,255,0.88); position: relative; overflow: hidden; }
.odissi-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,175,55,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.odissi-content { text-align: center; max-width: 820px; margin: 0 auto; position: relative; }
.odissi-content h2 { color: var(--gold); margin-bottom: 1.5rem; }
.odissi-content p { font-size: 1.02rem; line-height: 1.9; margin-bottom: 1.25rem; color: rgba(250,247,242,0.88); }
.odissi-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}
.odissi-feature {
  padding: 2.25rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: var(--transition);
}
.odissi-feature:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
  transform: translateY(-5px);
}
.odissi-feature-icon { font-size: 2.75rem; margin-bottom: 1rem; display: block; }
.odissi-feature h4 { color: var(--gold); margin-bottom: 0.75rem; }
.odissi-feature p { font-size: 0.875rem; color: rgba(250,247,242,0.82); margin: 0; }

/* ===== 9. GURU PREVIEW ===== */
.guru-preview { padding: 7rem 0; background: var(--ivory); }
.guru-preview-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}
.guru-preview-image { position: relative; }
.guru-preview-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: 0;
}
.guru-preview-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}
.guru-preview-text .section-subtitle { display: block; margin-bottom: 0.5rem; }
.guru-preview-text h2 { margin-bottom: 0.5rem; }
.guru-preview-text > h3 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}
.guru-preview-text p { line-height: 1.88; }
.guru-award-box {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border: var(--border-gold);
  background: rgba(107,31,31,0.04);
}
.guru-award-box h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.award-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin-bottom: 0.65rem;
  align-items: flex-start;
}
.award-item:last-child { margin-bottom: 0; }
.award-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ===== 10. GALLERY HIGHLIGHTS (HOME) ===== */
.gallery-highlights { padding: 7rem 0; background: var(--ivory-dark); }
.gallery-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.6rem;
  margin-top: 1rem;
}
.gallery-highlights-grid .g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-highlights-grid .g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-highlights-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.55s ease;
}
.gallery-highlights-grid .g-item:nth-child(1) img { min-height: 380px; }
.gallery-highlights-grid .g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,31,31,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-icon { color: var(--gold); font-size: 1.5rem; }

/* ===== 11. EVENTS HIGHLIGHTS (HOME) ===== */
.events-highlights { padding: 7rem 0; background: var(--ivory); }
.events-hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-hl-card {
  border: var(--border-gold);
  padding: 2rem;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.event-hl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}
.event-hl-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.event-hl-card:hover::before { height: 100%; }
.event-hl-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.event-hl-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.event-hl-card p { font-size: 0.875rem; line-height: 1.7; }
.event-hl-date {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== 12. CONTACT PREVIEW ===== */
.contact-preview { padding: 7rem 0; background: var(--maroon); }
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-preview h2 { color: var(--gold); margin-bottom: 1rem; }
.contact-preview p { font-size: 1.02rem; margin-bottom: 2rem; }
.contact-detail-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(250,247,242,0.82);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-row a { color: rgba(250,247,242,0.82); }
.contact-detail-row a:hover { color: var(--gold); }
.contact-right-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 3rem;
  text-align: center;
}
.contact-right-box h3 { color: var(--gold); margin-bottom: 1rem; }
.contact-right-box p { margin-bottom: 2rem; }

/* ===== 13. ABOUT GURU PAGE ===== */
.about-bio { padding: 6rem 0; background: var(--ivory); }
.about-bio-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}
.about-portrait { position: sticky; top: calc(var(--nav-height) + 2rem); }
.about-portrait-frame {
  border: 2px solid var(--gold);
  padding: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-portrait-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 8px; bottom: 8px;
  border: 1px solid rgba(212,175,55,0.3);
  pointer-events: none;
  z-index: -1;
}
.about-portrait-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.about-portrait-caption {
  text-align: center;
  padding: 1rem 0.5rem 0.25rem;
}
.about-portrait-caption h3 { font-size: 1.15rem; color: var(--maroon); margin-bottom: 0.2rem; }
.about-portrait-caption p {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.about-bio-content .section-subtitle { display: block; margin-bottom: 0.5rem; }
.about-bio-content h2 { margin-bottom: 0.5rem; }
.about-bio-content .lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--maroon-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about-bio-content p { font-size: 0.975rem; line-height: 1.9; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.highlight-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: var(--border-gold);
  background: rgba(212,175,55,0.04);
  font-size: 0.875rem;
  color: var(--charcoal-light);
  align-items: flex-start;
  transition: var(--transition);
}
.highlight-item:hover { background: rgba(212,175,55,0.09); }
.highlight-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.performances-box {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.04);
}
.performances-box h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.performances-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.performances-list li {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  padding-left: 1rem;
  position: relative;
}
.performances-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* Guru extra images */
.guru-gallery { padding: 5rem 0; background: var(--ivory-dark); }
.guru-imgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.guru-img-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.guru-img-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.guru-img-item:hover img { transform: scale(1.06); }
.guru-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,31,31,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.5rem;
}
.guru-img-item:hover .guru-img-overlay { opacity: 1; }

/* ===== 14. CLASSES PAGE ===== */
.classes-intro { padding: 6rem 0; background: var(--ivory); }
.dance-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.dance-info-card {
  background: var(--white);
  border: var(--border-gold);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.dance-info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.dance-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.dance-info-card:hover::after { transform: scaleX(1); }
.dance-info-icon { font-size: 3rem; margin-bottom: 1.25rem; display: none; }
.dance-info-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.dance-info-card p { font-size: 0.9rem; }
.dance-info-value {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(107,31,31,0.08);
  color: var(--maroon);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: var(--border-gold);
}

.schedule-section { padding: 6rem 0; background: var(--ivory-dark); }
.schedule-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.schedule-card {
  background: var(--white);
  border: var(--border-gold);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.schedule-card:hover { box-shadow: var(--shadow-lg); }
.schedule-card-header {
  background: var(--maroon);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.schedule-card-header h3 { color: var(--gold); margin: 0; font-size: 1.1rem; }
.sch-icon { font-size: 1.5rem; }
.schedule-card-body { padding: 2rem; }
.schedule-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.schedule-row:last-child { border-bottom: none; padding-bottom: 0; }
.sch-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  min-width: 75px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.sch-value { font-size: 0.9rem; color: var(--charcoal); }

.mode-section { padding: 6rem 0; background: var(--maroon); }
.mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.mode-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.mode-card:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-5px);
}
.mode-card-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.mode-card h3 { color: var(--gold); margin-bottom: 1rem; }
.mode-card p { color: rgba(250,247,242,0.78); font-size: 0.9rem; }

.enroll-section { padding: 5rem 0; background: var(--ivory); text-align: center; }

/* ===== 15. GALLERY PAGE ===== */
.gallery-page { padding: 5rem 0; background: var(--ivory); }
.masonry-grid {
  columns: 4;
  column-gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,31,31,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.75rem;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ===== 16. LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(212,175,55,0.15);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--ivory);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: var(--maroon); border-color: var(--gold); color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--ivory);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,.lightbox-next:hover { background: var(--maroon); border-color: var(--gold); color: var(--gold); }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}

/* ===== 17. EVENTS PAGE ===== */
.events-page { padding: 5rem 0; background: var(--ivory); }
.events-category { margin-bottom: 5rem; }
.events-category:last-child { margin-bottom: 0; }
.events-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.events-category-header h3 { font-size: 1.5rem; white-space: nowrap; }
.events-category-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212,175,55,0.5), transparent);
}
.events-category-icon { font-size: 1.5rem; flex-shrink: 0; }
.events-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-card-full {
  background: var(--white);
  border: var(--border-gold);
  overflow: hidden;
  transition: var(--transition);
}
.event-card-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.event-card-banner {
  height: 150px;
  background: var(--maroon-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.event-banner-bg-text {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212,175,55,0.08);
  font-weight: 700;
  position: absolute;
  user-select: none;
}
.event-banner-main-icon {
  font-size: 2.75rem;
  position: relative;
  z-index: 1;
}
.event-card-body { padding: 1.75rem; }
.event-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.event-card-body h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.event-card-body p { font-size: 0.875rem; line-height: 1.7; }
.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: var(--border-gold);
  font-size: 0.75rem;
  color: var(--charcoal-light);
}
.event-card-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ===== 18. CONTACT PAGE ===== */
.contact-page { padding: 5rem 0; background: var(--ivory); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
}
.contact-info-section h3 { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.contact-item-text p, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
  line-height: 1.55;
}
.contact-item-text a:hover { color: var(--maroon); }
.social-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--border-gold);
}
.social-contact h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}
.social-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.social-btn:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.contact-form-section {}
.contact-form-section h3 { margin-bottom: 2rem; }
.map-wrapper {
  border: var(--border-gold);
  overflow: hidden;
  margin-top: 3rem;
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: none; }
.map-label {
  padding: 1rem 1.5rem;
  background: var(--maroon);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250,247,242,0.8);
  font-size: 0.825rem;
}
.map-label-icon { color: var(--gold); }

/* ===== 19. FOOTER ===== */
.footer {
  background: #0F1923;
  color: rgba(250,247,242,0.75);
  padding: 5rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--maroon), var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.75fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.6);
  margin-bottom: 1.25rem;
  object-fit: cover;
}
.footer-brand h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.footer-brand .footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.55);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(250,247,242,0.55); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,175,55,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: #1a1010;
  border-color: var(--gold);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-nav-col h4, .footer-contact-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(250,247,242,0.55);
  transition: var(--transition);
}
.footer-nav-col a:hover { color: var(--gold); padding-left: 0.25rem; }
.footer-contact-col .fc-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}
.fc-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-col p, .footer-contact-col a {
  font-size: 0.875rem;
  color: rgba(250,247,242,0.55);
  margin: 0;
  line-height: 1.6;
}
.footer-contact-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(250,247,242,0.35); margin: 0; }
.footer-bottom a { color: rgba(212,175,55,0.7); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== 20. WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ===== KALLOL FESTIVAL ===== */
.kallol-content { max-width: 800px; margin: 0 auto 4rem; }
.kallol-content h2 { text-align: center; margin-bottom: 0.5rem; }
.kallol-subtitle {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.kallol-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.kallol-gallery { margin-top: 3rem; }
.kallol-gallery h3 { text-align: center; margin-bottom: 0.5rem; }
.kallol-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.kallol-img-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.kallol-img-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kallol-img-item:hover img { transform: scale(1.06); }

/* ===== 21. RESPONSIVE ===== */
@media (max-width: 1100px) {
  .gallery-highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-highlights-grid .g-item:nth-child(1) { grid-column: span 2; }
  .masonry-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 900px) {
  .events-cards, .events-hl-grid { grid-template-columns: 1fr 1fr; }
  .dance-info-grid { grid-template-columns: 1fr 1fr; }
  .performances-list { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section { padding: 4.5rem 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(74,21,21,0.98);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 0.9rem 2rem; font-size: 0.85rem; border-radius: 0; }
  .nav-menu a::after { display: none; }
  .welcome-grid, .guru-preview-grid, .about-bio-grid,
  .contact-preview-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { position: static; }
  .odissi-features { grid-template-columns: 1fr; }
  .events-cards, .events-hl-grid { grid-template-columns: 1fr; }
  .dance-info-grid { grid-template-columns: 1fr; }
  .schedule-cards, .mode-cards { grid-template-columns: 1fr; }
  .gallery-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-highlights-grid .g-item:nth-child(1) { grid-column: span 2; }
  .masonry-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .welcome-stats { grid-template-columns: repeat(3, 1fr); }
  .guru-imgs-grid { grid-template-columns: 1fr 1fr; }
  .contact-preview-grid { gap: 3rem; }
  .hero-title { font-size: 2.5rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .social-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .masonry-grid { columns: 1; }
  .gallery-highlights-grid { grid-template-columns: 1fr; }
  .gallery-highlights-grid .g-item:nth-child(1) { grid-column: span 1; }
  .guru-imgs-grid { grid-template-columns: 1fr; }
  .welcome-stats { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .schedule-row { flex-direction: column; gap: 0.25rem; }
}
