/* ═══════════════════════════════════════════════
   Srj Music Academy — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dark:   #8B6914;
  --navy:        #0A1628;
  --navy-mid:    #0D1F3C;
  --navy-light:  #162848;
  --white:       #FDFAF3;
  --cream:       #F7F0DC;
  --blue-mid:    #1E3A6E;
  --text-dark:   #0A0A0A;
  --radius:      2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ─────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.center      { text-align: center; }
.left        { text-align: left; }

.section-label {
  font-size: .7rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  text-transform: none;
  font-variant: normal;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin-bottom: 2rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.gold { color: var(--gold-light); }
.highlight { color: var(--gold-light); }

/* ── BUTTONS ───────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.5);
}

.btn-secondary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .1em;
  border: 1px solid var(--gold);
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .3s, transform .3s;
}
.btn-secondary:hover {
  background: rgba(201,168,76,.12);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: relative !important;
  z-index: 100;
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.header-left { display: flex; align-items: center; gap: 1rem; }

.logo-img, .custom-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.site-branding .site-title-link { text-decoration: none; }
.site-name {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  font-variant: normal;
}
.site-tagline {
  display: block;
  font-size: .6rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 300;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links li a,
.main-nav > a {
  color: var(--cream);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  transition: color .3s;
}
.nav-links li a:hover,
.main-nav > a:hover { color: var(--gold); }

.btn-nav-enroll,
.btn-nav-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  padding: .5rem 1.4rem;
  border-radius: 20px;
  font-weight: 700 !important;
  transition: background .3s, transform .3s;
}
.btn-nav-whatsapp:hover { background: #1eba57 !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); transition: all .3s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover; background-position: center top;
  filter: brightness(.45) saturate(1.2);
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,.2)  0%,
    rgba(10,22,40,.05) 40%,
    rgba(10,22,40,.75) 80%,
    rgba(10,22,40,1)   100%
  );
}
.hero-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 120px,
    rgba(201,168,76,.04) 120px, rgba(201,168,76,.04) 121px
  );
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 2rem;
  animation: heroFade 1.8s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: .75rem; letter-spacing: .5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
  animation: heroFade 1.8s .2s ease both;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.1; color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,.8);
  margin-bottom: .5rem;
  text-transform: none;
  font-variant: normal;
  animation: heroFade 1.8s .4s ease both;
}
.hero-title .gold { color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic; color: var(--cream);
  margin-bottom: 1rem; opacity: .9;
  animation: heroFade 1.8s .6s ease both;
}
.hero-devanagari {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.1rem; color: var(--gold);
  letter-spacing: .2em; margin-bottom: 2rem;
  animation: heroFade 1.8s .7s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  animation: heroFade 1.8s .9s ease both;
}

.music-toggle {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--gold);
  color: var(--gold); padding: .6rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; letter-spacing: .1em;
  transition: background .3s;
  display: flex; align-items: center; gap: .5rem;
}
.music-toggle:hover { background: rgba(201,168,76,.15); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); opacity: .6;
  animation: bounce 2s ease-in-out infinite; font-size: 1.5rem;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.section-about {
  padding: 6rem 0;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.section-about::before {
  content: '𝄞';
  position: absolute; font-size: 20rem;
  color: rgba(201,168,76,.04);
  right: -2rem; top: -2rem; line-height: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text p {
  font-size: 1.1rem; line-height: 1.9;
  color: var(--cream); margin-bottom: 1.2rem; opacity: .9;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.stat-box {
  border: 1px solid rgba(201,168,76,.3);
  padding: 1.5rem; text-align: center;
  background: rgba(201,168,76,.04);
  transition: border-color .3s, transform .3s;
}
.stat-box:hover { border-color: var(--gold); transform: translateY(-3px); }
.stat-box .num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem; color: var(--gold); display: block;
}
.stat-box .lbl {
  font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--cream); opacity: .7;
}

/* ══════════════════════════════════════════════
   GURU
══════════════════════════════════════════════ */
.section-guru { padding: 6rem 0; background: var(--navy); }

.guru-card {
  max-width: 750px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(14,27,54,.9), rgba(22,40,72,.9));
  border: 1px solid rgba(201,168,76,.25);
  padding: 3.5rem; position: relative; text-align: center;
}
.guru-card::before, .guru-card::after {
  content: '';
  position: absolute; width: 40px; height: 40px;
  border-color: var(--gold); border-style: solid; opacity: .5;
}
.guru-card::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.guru-card::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.guru-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.8rem; color: var(--gold-light); margin-bottom: .3rem;
}
.guru-sub-title {
  font-style: italic; color: var(--cream); opacity: .8;
  margin-bottom: 1.5rem; font-size: 1.1rem;
}
.guru-desc {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--cream); opacity: .85; margin-bottom: 1.2rem;
}
.gharana-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: .4rem 1.2rem; font-size: .8rem;
  font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.expertise-list {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1rem;
}
.expertise-tag {
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: .3rem .9rem;
  font-size: .8rem; letter-spacing: .08em;
  background: rgba(201,168,76,.06);
}

/* ══════════════════════════════════════════════
   COURSES
══════════════════════════════════════════════ */
.section-courses { padding: 6rem 0; background: linear-gradient(180deg, var(--navy-mid), var(--navy)); }

.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.course-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.2);
  padding: 2.2rem 1.8rem; position: relative;
  transition: border-color .4s, transform .4s;
}
.course-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
  opacity: 0; transition: opacity .4s;
}
.course-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.course-card:hover::before { opacity: 1; }

.course-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.course-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem; color: var(--gold-light); margin-bottom: .8rem; line-height: 1.3;
}
.course-desc { font-size: .95rem; color: var(--cream); opacity: .75; line-height: 1.7; }
.course-link {
  display: inline-block; margin-top: 1rem;
  color: var(--gold); font-size: .85rem; letter-spacing: .1em;
  transition: letter-spacing .3s;
}
.course-link:hover { letter-spacing: .2em; }

/* ══════════════════════════════════════════════
   CERTIFICATION
══════════════════════════════════════════════ */
.section-certification { padding: 6rem 0; background: var(--navy-mid); text-align: center; }
.cert-container { max-width: 820px; margin: 0 auto; }
.cert-body {
  border: 2px solid rgba(201,168,76,.3);
  padding: 3rem; background: rgba(201,168,76,.03);
}
.cert-uni {
  font-size: .8rem; letter-spacing: .3em;
  color: var(--gold); margin-bottom: .5rem; text-transform: uppercase;
}
.cert-intro { color: var(--cream); opacity: .8; font-size: 1rem; margin-top: .5rem; }
.cert-levels {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem;
}
.cert-level {
  border: 1px solid rgba(201,168,76,.3); padding: 1rem .5rem;
  transition: all .3s;
}
.cert-level:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }
.lvl-name { font-weight: 600; display: block; color: var(--gold); margin-bottom: .3rem; font-size: .9rem; }
.lvl-desc { color: var(--cream); opacity: .7; font-size: .8rem; }
.cert-note { color: var(--gold); font-style: italic; font-size: .9rem; margin-top: 1.5rem; }

/* ══════════════════════════════════════════════
   ENROLL FORM
══════════════════════════════════════════════ */
.section-enroll {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  position: relative;
}
.section-enroll::after {
  content: 'ॐ';
  font-family: 'Noto Serif Devanagari', serif;
  position: absolute; font-size: 16rem;
  color: rgba(201,168,76,.04);
  bottom: -2rem; left: -2rem;
  pointer-events: none; line-height: 1;
}

.form-container {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.25);
  padding: 3.5rem; position: relative;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.req { color: #ff6b6b; }

input, select, textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--white);
  padding: .75rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; outline: none;
  transition: border-color .3s; width: 100%;
  border-radius: var(--radius);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy); border: none;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  letter-spacing: .1em; transition: transform .3s, box-shadow .3s;
  margin-top: .8rem;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }

.form-feedback {
  margin-top: 1rem; padding: 1rem; text-align: center;
  font-size: 1.05rem; display: none; border-radius: var(--radius);
}
.form-feedback.success {
  display: block;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold); color: var(--gold);
}
.form-feedback.error {
  display: block;
  background: rgba(255,60,60,.1);
  border: 1px solid #ff6b6b; color: #ff9999;
}

.upi-section {
  margin-top: 2rem;
  border-top: 1px solid rgba(201,168,76,.2);
  padding-top: 2rem; text-align: center;
}
.upi-label {
  font-size: .75rem; letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1rem;
}
.upi-box {
  display: inline-block;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  padding: 1rem 2rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem; color: var(--gold-light); letter-spacing: .05em;
}
.upi-note { font-size: .8rem; color: var(--cream); opacity: .6; margin-top: .5rem; font-style: italic; }

.wa-section { margin-top: 1.5rem; text-align: center; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  padding: .85rem 2rem; border-radius: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600;
  transition: background .3s, transform .3s;
}
.btn-whatsapp:hover { background: #1eba57; transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  background: #25D366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .3s, background .3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 35px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.1); }
}
.whatsapp-float:hover { transform: scale(1.12); background: #20BA5A; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #070F1C;
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 3rem 2rem; text-align: center;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem;
}
.footer-nav {
  display: flex; gap: 2rem; justify-content: center;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.footer-nav a {
  color: var(--cream); font-size: .85rem;
  opacity: .7; transition: opacity .3s, color .3s;
}
.footer-nav a:hover { opacity: 1; color: var(--gold); }
.footer-copy {
  font-size: .75rem; color: var(--cream); opacity: .4; letter-spacing: .1em;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,.3);
  }
  .main-nav.open { display: flex; }
  .nav-links { flex-direction: column; gap: 1.2rem; }
  .hamburger { display: flex; }
  .header-inner { padding: .8rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .courses-grid { grid-template-columns: 1fr; }
  .cert-levels { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cert-levels { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-container { padding: 2rem 1.5rem; }
  .guru-card { padding: 2rem 1.5rem; }
  .section-about,
  .section-guru,
  .section-courses,
  .section-certification,
  .section-videos,
  .section-enroll { padding: 4rem 0; }
}

/* ═══════════════════════════════════════════════
   ADDITIONS v1.1 — Guru Photo, Social Links, etc.
   ═══════════════════════════════════════════════ */

/* Guru photo */
.guru-photo-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px rgba(201,168,76,.15);
}
.guru-photo { width: 100%; height: 100%; object-fit: cover; }

/* Social icons in footer */
.footer-social {
  display: flex; gap: 1rem;
  justify-content: center; margin-bottom: 1.2rem;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem;
  transition: background .3s, border-color .3s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(201,168,76,.15); border-color: var(--gold); }

/* Footer contact row */
.footer-contact {
  font-size: .8rem; color: var(--cream);
  opacity: .55; margin-bottom: .8rem;
  letter-spacing: .05em;
}
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* Font-scale smoothing */
html { transition: font-size .3s; }

/* Music button: hide when off */
.music-toggle[style*="none"] { display: none !important; }

/* ═══════════════════════════════════════════════
   GALLERY SECTIONS v1.3
   ═══════════════════════════════════════════════ */

/* ── Shared gallery styles ── */
.gallery-desc {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: var(--cream);
  opacity: .75;
  font-size: 1.05rem;
  line-height: 1.8;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gallery-tab {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--cream);
  padding: .45rem 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: .82rem;
  letter-spacing: .08em;
  transition: all .3s;
  font-family: inherit;
}
.gallery-tab:hover  { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.07); }
.gallery-tab.active { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); border-color: transparent; font-weight: 700; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(201,168,76,.15);
  transition: transform .3s, border-color .3s;
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--gold); z-index: 2; }

.gallery-thumb {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
  position: relative;
}
.video-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  padding: .8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-icon {
  font-size: 1.8rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
  margin-bottom: auto;
  margin-top: .5rem;
  color: var(--gold-light);
}
.play-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: rgba(0,0,0,.5);
  color: var(--gold);
  transition: background .3s;
}
.gallery-item:hover .play-icon { background: var(--gold); color: var(--navy); }

.gallery-info {
  width: 100%;
  margin-top: auto;
}
.gallery-name {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: .2rem;
  font-variant: normal;
  text-transform: none;
}
.gallery-caption {
  display: block;
  font-size: .72rem;
  color: var(--cream);
  opacity: .8;
  line-height: 1.3;
}

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  border: 2px dashed rgba(201,168,76,.3);
  color: var(--cream);
  opacity: .6;
  font-size: .95rem;
}
.gallery-empty strong { color: var(--gold); }

/* ── Guru Gallery Section ── */
.section-guru-gallery {
  padding: 6rem 0;
  background: var(--navy);
}

/* Awards strip */
.awards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.award-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  padding: .55rem 1.1rem;
  border-radius: 30px;
  transition: border-color .3s;
}
.award-item:hover { border-color: var(--gold); }
.award-icon { font-size: 1.1rem; }
.award-text { font-size: .82rem; color: var(--cream); opacity: .85; letter-spacing: .05em; }

/* ── Students Gallery Section ── */
.section-students-gallery {
  padding: 6rem 0;
  background: var(--navy-mid);
}

/* Testimonials */
.testimonials-wrap { margin-top: 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.2);
  padding: 1.8rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--cream);
  opacity: .85;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author { display: flex; flex-direction: column; gap: .2rem; }
.t-name { font-weight: 700; color: var(--gold-light); font-size: .9rem; }
.t-loc  { font-size: .75rem; color: var(--cream); opacity: .55; }

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.srj-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: lbFadeIn .25s ease;
}
.srj-lightbox.active { display: flex; }

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

.lb-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-media {
  max-width: 88vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-media img {
  max-width: 100%; max-height: 78vh;
  border: 2px solid rgba(201,168,76,.3);
  border-radius: 2px;
  object-fit: contain;
}
.lb-media video {
  max-width: 88vw; max-height: 78vh;
  border: 2px solid rgba(201,168,76,.3);
  border-radius: 2px;
}
.lb-media iframe {
  width: min(860px, 88vw);
  height: min(490px, 55vw);
  border: 2px solid rgba(201,168,76,.3);
  border-radius: 2px;
}
.lb-caption {
  color: var(--cream);
  font-size: .9rem;
  text-align: center;
  opacity: .8;
  max-width: 640px;
}
.lb-counter {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .2em;
  opacity: .7;
}

.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); width: 42px; height: 42px;
  border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 100001;
}
.lb-close:hover { background: var(--gold); color: var(--navy); }

.lb-prev, .lb-next {
  position: fixed; top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 2.5rem; width: 52px; height: 72px;
  border-radius: 4px;
  cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 100001;
  line-height: 1;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(201,168,76,.3); border-color: var(--gold); }


/* ── VIDEO POSTER THUMBNAIL ── */
.video-thumb-wrap {
  position: relative;
  width: 100%; height: 100%;
  background: var(--navy-mid);
  overflow: hidden;
}
.vid-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-prev { left: .3rem; }
  .lb-next { right: .3rem; }
}


/* ═══════════════════════════════════════════════
   HEADER NAV — ADJUSTED FOR 7 LINKS + BLOG
   ═══════════════════════════════════════════════ */

/* Tighter gaps so 7 links + CTA all fit */
.main-nav             { display: flex; align-items: center; gap: 0; }
.nav-links            { list-style: none; display: flex; gap: 0; align-items: center; flex-wrap: nowrap; }
.nav-links li a       {
  color: var(--cream);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  padding: .5rem .75rem;
  display: block;
  transition: color .25s;
  white-space: nowrap;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 1px;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-links li a:hover       { color: var(--gold-light); }
.nav-links li a:hover::after{ transform: translateX(-50%) scaleX(1); }
.nav-links li.current-menu-item > a  { color: var(--gold-light); }
.nav-links li.current-menu-item > a::after { transform: translateX(-50%) scaleX(1); }

/* Blog link — subtle highlight */
.nav-blog > a,
.nav-links li.nav-blog > a {
  color: var(--gold) !important;
}
.nav-blog > a:hover,
.nav-links li.nav-blog > a:hover { color: var(--gold-light) !important; }

/* WhatsApp CTA button */
.btn-nav-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: .4rem;
  background: #25D366 !important;
  color: #fff !important;
  padding: .42rem 1rem !important;
  border-radius: 20px;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: .8rem;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(37,211,102,.25);
}
.btn-nav-whatsapp:hover {
  background: #1eba57 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
}

/* Site name smaller to give nav more room */
.site-name   { font-size: 1rem; }
.site-tagline{ font-size: .55rem; }

/* ═══════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════ */

/* Blog hero banner */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '🎵';
  position: absolute;
  font-size: 14rem;
  opacity: .04;
  right: 5%;
  top: -1rem;
  pointer-events: none;
}
.blog-page-title { margin-bottom: 0; }
.blog-hero-sub {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--cream);
  opacity: .7;
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
}

/* Blog container */
.blog-container { padding: 4rem 2rem; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog card */
.blog-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.blog-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

/* Thumbnail */
.blog-thumb-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-thumb { width: 100%; height: 100%; overflow: hidden; aspect-ratio: 16/9; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue-mid, #1e3a6e));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* Card body */
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .6rem;
}

/* Meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--cream);
  opacity: .6;
  flex-wrap: wrap;
}
.blog-sep    { opacity: .4; }
.blog-cat    { color: var(--gold); text-decoration: none; font-weight: 600; }
.blog-cat:hover { color: var(--gold-light); }
.blog-date   { letter-spacing: .04em; }

/* Card title */
.blog-card-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: .95rem;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
  text-transform: none;
  font-variant: normal;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold-light); }

/* Excerpt */
.blog-excerpt {
  font-size: .9rem;
  color: var(--cream);
  opacity: .72;
  line-height: 1.7;
  flex: 1;
}

/* Read more */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  transition: gap .25s, color .25s;
}
.blog-read-more:hover { color: var(--gold-light); gap: .6rem; }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--cream); font-size: .85rem;
  text-decoration: none; border-radius: 3px;
  transition: all .25s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.blog-pagination .prev, .blog-pagination .next {
  width: auto; padding: 0 1rem; font-size: .8rem; letter-spacing: .08em;
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 6rem 2rem;
}
.blog-empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: .5; }
.blog-empty h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem;
  text-transform: none; font-variant: normal;
}
.blog-empty p { color: var(--cream); opacity: .7; margin-bottom: 2rem; }

/* ─── SINGLE POST ─── */
.blog-single-wrap  { padding-top: 0; }
.blog-single-container { max-width: 820px; margin: 0 auto; padding: 4rem 2rem; }

.blog-back {
  margin-bottom: 2rem;
}
.blog-back a {
  color: var(--gold); font-size: .82rem;
  letter-spacing: .1em; text-decoration: none;
  transition: color .25s;
}
.blog-back a:hover { color: var(--gold-light); }

.blog-post-header { margin-bottom: 2rem; }
.blog-post-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--white); line-height: 1.2;
  margin-top: .8rem;
  text-transform: none; font-variant: normal;
}

.blog-featured-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201,168,76,.2);
}
.blog-featured-img img { width: 100%; height: auto; display: block; }

.blog-post-content {
  color: var(--cream);
  opacity: .9;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.blog-post-content h2,
.blog-post-content h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold-light);
  margin: 1.8rem 0 .8rem;
  text-transform: none; font-variant: normal;
}
.blog-post-content a { color: var(--gold); }
.blog-post-content a:hover { color: var(--gold-light); }
.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: .8rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(201,168,76,.06);
  font-style: italic;
  color: var(--cream);
}

/* Tags */
.blog-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  align-items: center; margin-bottom: 2rem;
}
.blog-tags-label { font-size: .75rem; color: var(--cream); opacity: .6; margin-right: .4rem; }
.blog-tag {
  padding: .25rem .7rem;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 30px;
  color: var(--gold); font-size: .72rem;
  text-decoration: none;
  transition: all .25s;
}
.blog-tag:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }

/* Author box */
.blog-author-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.18);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.author-avatar { border-radius: 50%; border: 2px solid var(--gold); flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; gap: .3rem; }
.author-name { font-weight: 700; color: var(--gold-light); font-size: .95rem; }
.author-bio  { color: var(--cream); opacity: .7; font-size: .88rem; line-height: 1.6; }

/* Post nav */
.blog-post-nav {
  display: flex; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 1.5rem;
}
.blog-nav-prev, .blog-nav-next {
  flex: 1; min-width: 200px;
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .3s, background .3s;
}
.blog-nav-next { align-items: flex-end; text-align: right; }
.blog-nav-prev:hover, .blog-nav-next:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.blog-nav-prev span:first-child,
.blog-nav-next span:first-child { font-size: .72rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.blog-nav-title { font-size: .9rem; color: var(--cream); line-height: 1.4; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .nav-links li a  { padding: .5rem .55rem; font-size: .7rem; }
  .site-name       { font-size: .9rem; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,.99);
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,.25);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-links      { flex-direction: column; gap: 0; width: 100%; }
  .nav-links li a { padding: .8rem 0; font-size: .85rem; border-bottom: 1px solid rgba(201,168,76,.08); }
  .nav-links li a::after { display: none; }
  .btn-nav-whatsapp { margin: 1.2rem 0 0; width: 100%; justify-content: center; padding: .75rem 1rem !important; font-size: .8rem !important; }
  .hamburger { display: flex; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-nav { flex-direction: column; }
}

/* ===== FEATURED POST ===== */
.srj-featured-post {
  position: relative;
  margin-bottom: 40px;
}

.srj-featured-post img {
  width: 100%;
  border-radius: 14px;
}

.featured-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  max-width: 600px;
}

.featured-label {
  background: var(--gold);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.featured-content h1 {
  font-size: 32px;
  margin: 10px 0;
}

/* ===== BLOG LAYOUT ===== */
.srj-blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

/* ===== GRID ===== */
.srj-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.srj-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.srj-blog-card:hover {
  transform: translateY(-6px);
}

.srj-card-img img {
  width: 100%;
  height: auto;
}

.srj-card-content {
  padding: 18px;
}

.srj-card-content h2 {
  font-size: 18px;
}

.srj-meta {
  font-size: 12px;
  color: gray;
  margin: 8px 0;
}

.srj-read-more {
  color: var(--gold);
  font-weight: bold;
}

/* ===== SIDEBAR ===== */
.srj-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== PAGINATION ===== */
.srj-pagination {
  margin-top: 40px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .srj-blog-layout {
    grid-template-columns: 1fr;
  }

  .srj-blog-grid {
    grid-template-columns: 1fr;
  }
}