@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ═══════════════════ RESET & BASE ═══════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond',
    serif;
  background: #0a0604;
  color: #f1e5c0;
  overflow-x: hidden;
}

/* ═══════════════════ CSS VARIABLES ═══════════════════ */
:root {
  --gold: #d4af37;
  --gold-light: #f8e6a0;
  --gold-dark: #a8872b;
  --bg-dark: #0a0604;
  --bg-section: #110b07;
  --bg-card: rgba(20, 12, 6, 0.85);
  --text-cream: #f1e5c0;
  --text-gold: #f5d76e;
  --maroon: #6e1d12;
  --maroon-light: #a8321e;
  --navy: #1f3a5f;
  --navy-dark: #0f1f33;
}

/* ═══════════════════ UTILITY ═══════════════════ */
.gold-text {
  background: linear-gradient(135deg, #d4af37, #f8e6a0, #d4af37, #f8e6a0, #d4af37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.section-pad {
  padding: 100px 20px;
}

/* ═══════════════════ SCROLL ANIMATIONS ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 6, 4, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  padding: 12px 50px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.08)
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 4, 0.5) 0%, rgba(10, 6, 4, 0.75) 40%, rgba(10, 6, 4, 0.95) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 20px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.15);
}

.hero-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: 12px;
  margin-top: 8px;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text-gold);
  margin: 20px 0;
  text-shadow: 0 2px 20px rgba(245, 215, 110, 0.2);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-cream);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

.hero-ornament {
  width: min(400px, 70vw);
  margin: 25px auto;
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-ornament::before,
.hero-ornament::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 12px;
}

.hero-ornament::before {
  left: -20px;
}

.hero-ornament::after {
  right: -20px;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 35px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left .5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(110, 29, 18, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(110, 29, 18, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(15, 31, 51, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(15, 31, 51, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ═══════════════════ SECTION HEADERS ═══════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 4px;
}

.section-header .subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-gold);
  margin-top: 8px;
}

.divider {
  width: 200px;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-sm {
  width: 120px;
}

/* ═══════════════════ ABOUT SECTION ═══════════════════ */
.about-section {
  background: var(--bg-section);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform .6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 70%, rgba(10, 6, 4, 0.4));
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-text .highlight-quote {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: var(--text-gold);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 25px 0;
  text-shadow: 0 0 20px rgba(245, 215, 110, 0.15);
}

/* ═══════════════════ SERVICES / ICONS ═══════════════════ */
.services-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/image2.png') center/cover no-repeat;
  opacity: 0.08;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(145deg, rgba(20, 12, 6, 0.9), rgba(30, 18, 10, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 45px 28px;
  text-align: center;
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
}

.service-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  transition: transform .4s;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.service-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74%) sepia(42%) saturate(500%) hue-rotate(10deg);
  transition: filter .4s;
}

.service-card:hover .card-icon img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(50%) saturate(600%) hue-rotate(10deg);
}

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
}

/* ═══════════════════ PERFORMANCES VIDEO ═══════════════════ */
.performances-section {
  background: var(--bg-section);
  position: relative;
}

.performances-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.video-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  background: #000;
}

.featured-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  cursor: pointer;
  transition: all .4s ease;
  aspect-ratio: 16/9;
  background: #000;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .3s;
}

.video-card:hover .play-overlay {
  opacity: 0.6;
}

.play-btn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #0a0604;
  margin-left: 4px;
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.video-label span {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-light);
}

/* ═══════════════════ GLOBAL PRESENCE ═══════════════════ */
.global-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.global-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.world-map-container {
  margin: 40px auto;
  max-width: 900px;
  position: relative;
}

.world-map-container img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 25px 35px;
  background: rgba(20, 12, 6, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  transition: all .3s;
}

.stat-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  display: block;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-cream);
  opacity: 0.6;
  margin-top: 8px;
}

/* ═══════════════════ GALLERY ═══════════════════ */
.gallery-section {
  background: var(--bg-section);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all .4s ease;
}

.gallery-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-more {
  text-align: center;
  margin-top: 40px;
}

.gallery-hidden {
  display: none;
}

.gallery-hidden.show {
  display: block;
  animation: fadeInGallery .6s ease forwards;
}

@keyframes fadeInGallery {
  from {
    opacity: 0;
    transform: scale(0.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

/* ═══════════════════ INSTRUMENTS ═══════════════════ */
.instruments-section {
  background: var(--bg-dark);
  position: relative;
}

.instruments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.instruments-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.instruments-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.instruments-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.instrument-list {
  list-style: none;
  margin-top: 20px;
}

.instrument-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.instrument-list li::before {
  content: '♪';
  color: var(--gold);
  font-size: 18px;
}

/* ═══════════════════ BOOKING / CONTACT ═══════════════════ */
.booking-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/palace.png') center/cover no-repeat;
  opacity: 0.1;
}

.booking-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 30px 40px;
  backdrop-filter: blur(10px);
  transition: all .3s;
  min-width: 250px;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.contact-card .contact-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 16px;
  opacity: 0.9;
}

.booking-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px 20px 25px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  color: var(--text-gold);
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all .3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 20px;
}

/* ═══════════════════ PARTICLES ═══════════════════ */
.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s infinite;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0)
  }

  20% {
    opacity: 0.7
  }

  50% {
    opacity: 0.4
  }

  80% {
    opacity: 0.2
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1.2)
  }
}

/* ═══════════════════ SCROLL PROGRESS BAR ═══════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 9999;
  transition: width .1s;
  width: 0;
}

/* ═══════════════════ GLOW LINE BETWEEN SECTIONS ═══════════════════ */
.section-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(212, 175, 55, 0.4) 50%, transparent 90%);
  position: relative;
}

.section-glow::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media(max-width:1024px) {

  .about-grid,
  .instruments-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media(max-width:768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 6, 4, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .section-pad {
    padding: 60px 15px;
  }

  .stats-row {
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
}