/* ============================================================
   KALAVEDA AURA — Premium CSS
   Indian Classical Arts · Luxury Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --maroon:       #5C1629;
  --maroon-deep:  #3A0E1A;
  --maroon-light: #7A2040;
  --gold:         #C49A27;
  --gold-light:   #E4B84A;
  --gold-pale:    #F5E9C0;
  --gold-ultra:   #FDF3D6;
  --cream:        #FAF5EB;
  --cream-dark:   #EDE3CC;
  --dark:         #120810;
  --text:         #2A1218;
  --text-mid:     #5A3040;
  --text-muted:   #9A7080;
  --white:        #FFFFFF;
  --shadow-sm:    0 4px 20px rgba(58,14,26,.08);
  --shadow-md:    0 12px 40px rgba(58,14,26,.14);
  --shadow-lg:    0 24px 64px rgba(58,14,26,.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Playfair Display', serif;
  --font-body:    'Raleway', sans-serif;
  --nav-h:        84px;
  --max-w:        1200px;
  --radius:       6px;
  --radius-lg:    16px;
  --transition:   all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--maroon); }

.section-desc {
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px auto 28px;
  width: 180px;
}
.section-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider i { color: var(--gold); font-size: 14px; }

.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0;
}
.gold-rule--center { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,39,.35);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1ebe5b; }

/* ── AOS (simple reveal) ────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos][data-aos-delay="50"]  { transition-delay: .05s; }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="150"] { transition-delay: .15s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: var(--transition);
}
#navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: var(--max-w);
  margin-inline: auto;
}
#navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled::before {
  background: rgba(26, 4, 14, .96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(196,154,39,.25);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  color: var(--maroon-deep) !important;
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative; z-index: 1;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122,32,64,.45) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,154,39,.15) 0%, transparent 50%),
    linear-gradient(135deg, #3A0E1A 0%, #120810 50%, #1A080E 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(196,154,39,.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.0;
  margin-bottom: 20px;
  animation: fadeDown .9s .1s ease both;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}
.hero-title-italic {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 6px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  animation: fadeDown .9s .2s ease both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 28px;
  width: 200px;
  animation: fadeDown .9s .25s ease both;
}
.hero-divider span {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.hero-divider i { color: var(--gold); font-size: 20px; }

.hero-desc {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 44px;
  animation: fadeDown .9s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .9s .4s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeDown 1s .6s ease both;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin-inline: auto;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
}
.about-ornament {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold-light);
  border-style: solid;
}
.about-ornament--tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.about-ornament--br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

.about-inner { text-align: center; color: var(--white); padding: 20px; }
.about-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.about-years {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-years sup { font-size: 2rem; }
.about-years-label {
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

.about-stat-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--maroon-deep);
  padding: 20px;
  max-width: 380px;
  margin-inline: auto;
  margin-top: 20px;
}
.about-stat { text-align: center; }
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.about-stat-text {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.about-stat-sep { color: var(--gold); opacity: .4; }

.about-features { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold-ultra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  margin-top: 2px;
}
.about-feature strong { display: block; color: var(--maroon-deep); margin-bottom: 2px; }
.about-feature p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.7;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gold-ultra);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 20px;
}

/* ════════════════════════════════════════════════════════════
   COURSES
════════════════════════════════════════════════════════════ */
.courses-section {
  background: var(--cream);
  position: relative;
}
.courses-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,154,39,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.courses-category-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.courses-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.courses-grid--music {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform .4s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.course-card:hover::before { transform: scaleX(1); }

.course-icon {
  width: 52px; height: 52px;
  background: var(--gold-ultra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.course-card:hover .course-icon {
  background: var(--gold);
  color: var(--white);
}

.course-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 10px;
}

.course-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.course-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}
.course-link:hover { gap: 10px; }

.course-card--music .course-name { font-size: 1.55rem; }

/* ════════════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════════════ */
.team-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #1E0810 50%, var(--maroon-deep) 100%);
  position: relative;
}
.team-section .section-badge,
.team-section .section-divider i { color: var(--gold-light); }
.team-section .section-title { color: var(--white); }
.team-section .section-title em { color: var(--gold-light); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,154,39,.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.team-card:hover {
  background: rgba(196,154,39,.08);
  border-color: rgba(196,154,39,.5);
  transform: translateY(-4px);
}

.team-avatar {
  flex-shrink: 0;
}
.team-avatar-inner {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon-deep);
}

.team-role {
  font-size: .73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin: 8px 0 0;
  line-height: 1.2;
}

.team-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-top: 14px;
}
.team-desc strong { color: var(--gold-light); font-weight: 600; }

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.team-tags span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(196,154,39,.35);
  border-radius: 2px;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   BRANCHES
════════════════════════════════════════════════════════════ */
.branches-section { background: var(--white); }

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin-inline: auto;
}

.branch-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform .4s;
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.branch-card:hover::before { transform: scaleX(1); }

.branch-icon {
  width: 64px; height: 64px;
  background: var(--gold-ultra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.5rem;
}
.branch-city {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 4px;
}
.branch-state {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════════════════════
   EVENTS
════════════════════════════════════════════════════════════ */
.events-section { background: var(--cream); }

.events-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 40px;
}
.events-tab {
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.events-tab:hover { color: var(--maroon); }
.events-tab.active {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}

.tab-badge {
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.events-panel { animation: fadeIn .4s ease; }
.events-panel.hidden { display: none; }

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

.events-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.events-empty i { font-size: 3rem; color: var(--cream-dark); margin-bottom: 16px; }
.events-empty p { font-size: 1.1rem; }

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

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.event-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--maroon-deep);
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.event-card:hover .event-img img { transform: scale(1.06); }
.event-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,14,26,.4), transparent 60%);
}
.event-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.15);
  font-size: 3rem;
}

.event-body { padding: 24px; }

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.event-date, .event-time {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.event-venue {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.event-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-completed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a6e3e;
  background: #e6f4ed;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #1E0810 100%);
  position: relative;
}
.contact-section .section-badge,
.contact-section .section-divider i  { color: var(--gold-light); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-title em  { color: var(--gold-light); }
.contact-section .section-desc { color: rgba(255,255,255,.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(196,154,39,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: color .3s;
}
.contact-item a:hover { color: var(--gold-light); }

.contact-cta-box {
  background: rgba(196,154,39,.1);
  border: 1px solid rgba(196,154,39,.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}
.contact-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 6px; }
.contact-cta-box p strong { color: var(--gold-light); }
.contact-cta-box .btn { margin-top: 16px; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,154,39,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--maroon-deep); color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: #0A0408;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 10px 0 16px;
}
.footer-copy { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.7; }

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-contact-col p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-col i { color: var(--gold); width: 16px; }
.footer-contact-col a { color: rgba(255,255,255,.5); transition: color .3s; }
.footer-contact-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}
.footer-admin-link {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.15);
  transition: color .3s;
}
.footer-admin-link:hover { color: var(--gold); }

/* ── Back to Top ────────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(196,154,39,.4);
}
#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}
#backToTop:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-frame  { max-width: 280px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .section { padding: 80px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--maroon-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.77,0,0.175,1);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; color: var(--white) !important; }
  .nav-cta { color: var(--maroon-deep) !important; }

  .team-grid      { grid-template-columns: 1fr; }
  .team-card      { flex-direction: column; }
  .branches-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .courses-grid--music { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .events-tabs    { flex-direction: column; border-bottom: none; gap: 8px; }
  .events-tab     { border: 1px solid var(--cream-dark); border-radius: var(--radius); border-bottom: 1px solid var(--cream-dark) !important; }
  .events-tab.active { border-color: var(--gold); }
  .hero-actions   { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px; }
}

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

/* ════════════════════════════════════════════════════════════
   EVENT IMAGE SLIDER
════════════════════════════════════════════════════════════ */
.event-slider {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--maroon-deep);
}
.event-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.event-slide.active { opacity: 1; }
.event-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.event-card:hover .event-slide.active img { transform: scale(1.05); }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(0,0,0,.5);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  z-index: 3;
  backdrop-filter: blur(4px);
  transition: background .25s;
}
.slider-btn:hover { background: var(--gold); color: var(--maroon-deep); }
.slider-btn--prev { left: 8px; }
.slider-btn--next { right: 8px; }

.slider-dots {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .3s, transform .3s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ════════════════════════════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--maroon-deep);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,14,26,.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  padding: 0 16px;
}

/* ── Lightbox ────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

#lightboxImg {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
}
#lightboxCaption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .25s;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--gold); color: var(--maroon-deep); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .25s;
  cursor: pointer;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--maroon-deep); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
