/* ─────────────────────────────────────────────────────────────
   Octaves — VNIT Nagpur Music Club
   Design System: Warm Dark Premium
   ───────────────────────────────────────────────────────────── */

/* ── Design Tokens ── */
:root {
  --clr-bg:          #0a0a08;
  --clr-bg-2:        #111109;
  --clr-surface:     #161613;
  --clr-surface-2:   #1d1d19;
  --clr-border:      rgba(201, 169, 110, 0.12);
  --clr-border-mid:  rgba(201, 169, 110, 0.22);

  --clr-gold:        #c9a96e;
  --clr-gold-light:  #e8d5a3;
  --clr-gold-dim:    rgba(201, 169, 110, 0.30);

  /* Orange accent for tagline */
  --clr-orange:      #e8762a;
  --clr-orange-glow: rgba(232, 118, 42, 0.28);

  --clr-text:        #f0ebe0;
  --clr-text-muted:  #9e9a8e;
  --clr-text-faint:  #5c5950;

  /* Typography */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  --fs-xs:     0.72rem;
  --fs-sm:     0.85rem;
  --fs-base:   1rem;
  --fs-lg:     1.15rem;
  --fs-xl:     1.4rem;
  --fs-2xl:    1.85rem;
  --fs-3xl:    2.6rem;
  --fs-4xl:    3.5rem;
  --fs-hero:   clamp(4.8rem, 11vw, 10rem);

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.75rem;
  --sp-lg:  3rem;
  --sp-xl:  5rem;
  --sp-2xl: 8rem;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold-dim) transparent;
}

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Section Base ── */
.section { padding-block: var(--sp-2xl); }

/* ── Section Labels ── */
.section-label {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-4xl));
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-md);
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}

.body-text {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 60ch;
}

.body-text + .body-text { margin-top: var(--sp-sm); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover::after { opacity: 0.08; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3); }

.btn-ghost {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border-mid);
}

.btn-ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 8, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--clr-border);
}

/* ── Top Announcement Marquee Banner ── */
.top-marquee-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  background: rgba(14, 10, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.28);
  padding: 0.45rem 0;
  text-decoration: none;
  position: relative;
  z-index: 10;
  cursor: pointer;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.top-marquee-banner:hover {
  background: rgba(22, 14, 38, 0.96);
  border-bottom-color: rgba(168, 85, 247, 0.55);
}

.top-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: topMarqueeLoop 30s linear infinite;
}

.top-marquee-banner:hover .top-marquee-track {
  animation-play-state: paused;
}

.top-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.top-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #e9d5ff;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.top-marquee-item::after {
  content: '✦';
  font-size: 0.62rem;
  color: #c084fc;
  opacity: 0.7;
}

.top-marquee-banner:hover .top-marquee-item {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(168, 85, 247, 0.6);
}

@keyframes topMarqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .top-marquee-banner {
    padding: 0.38rem 0;
  }
  .top-marquee-item {
    font-size: 0.72rem;
    gap: 1.1rem;
    padding: 0 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-marquee-track {
    animation-play-state: paused;
  }
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1160px;
  margin-inline: auto;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
}

.nav-spacer {
  /* takes up the left column so the center logo stays truly centered */
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.2s;
  text-decoration: none;
}

.nav-logo:hover { opacity: 0.85; }

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--clr-border-mid);
}

.nav-brand {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Right side: Register + Hamburger ── */

.nav-register-btn {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3e8ff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
  border: 1px solid rgba(168, 85, 247, 0.55);
  border-radius: 3px;
  padding: 0.45rem 1.15rem;
  transition: all 0.22s ease;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
}

.nav-register-btn:hover {
  background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
  border-color: #c084fc;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.55), 0 0 35px rgba(59, 130, 246, 0.35);
  transform: translateY(-1px);
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--clr-border-mid);
  border-radius: 2px;
  cursor: pointer;
  padding: 0 8px;
  transition: border-color 0.18s;
}

.nav-hamburger:hover {
  border-color: var(--clr-gold);
}

.ham-bar {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--clr-text-muted);
  transition: background 0.18s;
}

.nav-hamburger:hover .ham-bar {
  background: var(--clr-gold);
}

/* ── Drawer Overlay ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(10, 10, 8, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out);
}

.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer Panel ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 85vw);
  z-index: 300;
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s var(--ease-out);
  will-change: transform;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.drawer-brand {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--clr-text-muted);
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--clr-text-faint);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.18s;
}

.drawer-close:hover {
  color: var(--clr-gold);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex: 1;
}

.drawer-link {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s, padding-left 0.22s;
}

.drawer-link:hover {
  color: var(--clr-text);
  padding-left: 2rem;
  border-bottom-color: var(--clr-border);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--clr-border);
}

.drawer-register-btn {
  display: block;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #9333ea 0%, #6366f1 50%, #3b82f6 100%);
  border: 1px solid rgba(192, 132, 252, 0.45);
  border-radius: 4px;
  padding: 0.85rem 1.5rem;
  margin-top: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(147, 51, 234, 0.4);
  transition: all 0.25s ease;
}

.drawer-register-btn:hover {
  background: linear-gradient(135deg, #a855f7 0%, #818cf8 50%, #60a5fa 100%);
  box-shadow: 0 6px 28px rgba(147, 51, 234, 0.6);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════
   HERO — Fully centered
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  text-align: center;
}

/* ── Hero video background ── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Multi-layer dark overlay: base dark + vignette + gold radial tint */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* top + bottom gradient for nav/scroll blending */
    linear-gradient(to bottom, rgba(10,10,8,0.72) 0%, rgba(10,10,8,0.0) 25%, rgba(10,10,8,0.0) 70%, rgba(10,10,8,0.9) 100%),
    /* solid dark base at 62% opacity */
    rgba(10, 10, 8, 0.62);
  pointer-events: none;
}

/* Grid pattern sits on top of overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201, 169, 110, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* Main hero title — dominant centerpiece */
.hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--clr-text);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(201, 169, 110, 0.08);
}

.hero-title em {
  font-style: italic;
  color: var(--clr-gold-light);
  display: block;
}

/* Tagline — Playfair Display italic, luxury gold, clean glow */
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(245, 158, 11, 0.88);
  text-shadow:
    0 0 28px rgba(245, 158, 11, 0.30),
    0 0  8px rgba(245, 158, 11, 0.15);
  min-height: 2.4rem;
  margin-bottom: 2.4rem;
  line-height: 1.2;
}

/* Blinking cursor appended by JS */
.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: rgba(245, 158, 11, 0.85);
  vertical-align: middle;
  margin-left: 3px;
  animation: cursorBlink 0.9s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

/* Scroll indicator removed */

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
/* hover hint under section subtitle */
.hover-hint {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
  font-style: italic;
}

.about {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about .section-label {
  justify-content: center;
  text-align: center;
  margin-inline: auto;
}

.about .section-label::before {
  display: none;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}

.about .section-title {
  text-align: center;
  margin-inline: auto;
  margin-bottom: var(--sp-md);
}

.about .body-text {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.85;
  color: #ded9cd;
  font-weight: 300;
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}

.about .body-text + .body-text {
  margin-top: 1.25rem;
}

/* ════════════════════════════════════════════
   EXPLORE HUB — Navigation Card Grid
════════════════════════════════════════════ */
.explore-hub {
  background: #0b0c10;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.explore-label {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.6rem;
}

/* 3-column grid — stacks to 1 on mobile */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Individual card ── */
.explore-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  background: #111114;
  transition:
    transform    0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    box-shadow   0.38s ease;
}

.explore-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(245, 158, 11, 0.08);
}

/* Background image layer */
.explore-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.0);
}

.explore-card:hover .explore-card-bg {
  opacity: 0.55;
  transform: scale(1.04);
}

/* Bottom vignette — keeps text always readable */
.explore-card-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    transparent 100%
  );
  pointer-events: none;
}

/* Text block pinned to bottom */
.explore-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.explore-card-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.explore-card:hover .explore-card-title {
  transform: translateY(-2px);
}

.explore-card-sub {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
  max-width: 28ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transform: translateY(8px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s ease, margin-top 0.4s ease;
}

.explore-card:hover .explore-card-sub {
  opacity: 1;
  max-height: 80px;
  margin-top: 0.4rem;
  transform: translateY(0);
}

/* Arrow icon */
.explore-card-arrow {
  display: inline-flex;
  color: rgba(245, 158, 11, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transform: translateY(8px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s ease, margin-top 0.4s ease, color 0.25s ease;
}

.explore-card:hover .explore-card-arrow {
  opacity: 1;
  max-height: 30px;
  margin-top: 0.6rem;
  transform: translate(6px, 0);
  color: rgba(245, 158, 11, 1);
}

/* Responsive */
@media (max-width: 860px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-card {
    aspect-ratio: 16 / 9; /* wider, shorter on mobile */
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════
   COUNCIL
════════════════════════════════════════════ */
.council {
  background: var(--clr-bg);
}

/* ── President row — single centered featured card ── */
.council-president-row {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}

/* ── Core members: 4-column grid ── */
.council-grid--core {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: var(--sp-lg);
}

/* ── Representatives: 3-column grid ── */
.council-grid--reps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ════════════ MEMBER CARD BASE ════════════ */
.member-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease-out),
    transform    0.35s var(--ease-out),
    box-shadow   0.35s var(--ease-out);
  cursor: default;
}

/* Ambient glow blob that intensifies on hover */
.card-glow-bg {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.member-card:hover .card-glow-bg { opacity: 1; }

/* Gold top shimmer on hover */
.member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.member-card:hover {
  border-color: var(--clr-border-mid);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 110, 0.08);
}

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

/* ════════ Avatar ════════ */
.member-avatar-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold-dim);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.member-card:hover .avatar-ring {
  border-color: var(--clr-gold);
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.22);
}

.avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--clr-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-initial {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--clr-gold);
  line-height: 1;
}

/* Instrument emoji badge — bottom right of avatar */
.instrument-badge {
  position: absolute;
  bottom: -2px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
}

/* ════════ Member Info ════════ */
.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.member-year-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 0.15rem 0.65rem;
  margin-bottom: 0.3rem;
}

.member-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.member-role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.member-instrument {
  font-size: var(--fs-sm);
  color: var(--clr-text-faint);
  font-style: italic;
  font-family: var(--ff-serif);
  margin-top: 0.1rem;
}

/* ── Instagram link ── */
.member-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}

.insta-icon {
  display: flex;
  align-items: center;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.member-insta:hover {
  color: var(--clr-gold-light);
  border-color: var(--clr-gold-dim);
  background: rgba(201, 169, 110, 0.06);
}

/* ════════ Photo Card — replaces circular avatar ════════ */
.member-card {
  padding: 0;          /* photo fills the top edge-to-edge */
  align-items: stretch;
  text-align: center;
}

/* Wrapper keeps badge positioned relative to photo */
.member-photo-wrap {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

/* The photo frame — 4:5 portrait, rounded top corners only */
.member-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(201,169,110,0.12), rgba(10,10,8,0.8));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,158,11,0.18);
  border-bottom: none;
  box-shadow: 0 0 18px rgba(245,158,11,0.08);
  transition:
    border-color 0.4s var(--ease-out),
    box-shadow   0.4s var(--ease-out);
}

.member-card:hover .member-photo {
  border-color: rgba(245,158,11,0.45);
  box-shadow: 0 0 26px rgba(245,158,11,0.18);
}

/* Photo img injected by JS */
.member-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.member-card:hover .member-photo img {
  transform: scale(1.06);
}

/* Fallback initial when no photo loaded */
.photo-initial {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--clr-gold);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

/* Instrument badge — bottom-right of photo frame */
.member-photo-wrap .instrument-badge {
  position: absolute;
  bottom: -2px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

/* Member info section has padding since card padding is 0 */
.member-card .member-info {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(245,158,11,0.12);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--clr-surface);
}
/* ════════ President card — VIP gold glow ════════ */
.member-card--president {
  width: min(360px, 100%);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow:
    0 0 30px -5px rgba(245, 158, 11, 0.20),
    0 8px 32px rgba(0, 0, 0, 0.4);
  transition:
    border-color 0.4s var(--ease-out),
    box-shadow   0.4s var(--ease-out),
    transform    0.35s var(--ease-out);
}

.member-card--president:hover {
  border-color: rgba(245, 158, 11, 0.75);
  box-shadow:
    0 0 48px -2px rgba(245, 158, 11, 0.35),
    0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

/* Gold tinted info panel for president */
.member-card--president .member-info {
  background: linear-gradient(160deg, rgba(245,158,11,0.07) 0%, var(--clr-surface) 60%);
  border-color: rgba(245,158,11,0.28);
}

.member-card--president .member-name { font-size: var(--fs-2xl); }
.member-card--president .member-role { font-size: var(--fs-sm); letter-spacing: 0.18em; }
.member-card--president .member-year-tag { font-size: 0.7rem; }
.member-card--president .member-photo { aspect-ratio: 3 / 4; }

/* Floating crown badge */
.president-crown {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: var(--clr-gold);
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.6));
  z-index: 5;
  pointer-events: none;
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-3px); }
}

/* President row needs padding-top for floating crown */
.council-president-row {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  padding-top: 1rem;
}



/* ════════════════════════════════════════════
   PROFILE PIC — injected into .member-photo by JS
════════════════════════════════════════════ */
/* Base styles for injected img are defined in .member-photo img above */

/* Per-member orientation fixes on the new photo card */
/* Suhana: default — no rotation override */

/* Aarushi: landscape shot — rotate +90° */
#member-2yr-girls .member-photo img {
  transform: rotate(90deg) scale(1.55);
  object-position: center;
}
#member-2yr-girls:hover .member-photo img {
  transform: rotate(90deg) scale(1.62);
}

/* Shreyansh: portrait, face at top */
#member-vp .member-photo img {
  object-position: center 15%;
}

/* Prajjwal: portrait, face at top */
#member-treasurer .member-photo img {
  object-position: center 12%;
}

/* Pratham: face upper center */
#member-tech .member-photo img {
  object-position: center 10%;
}

/* Harikrishna: face center-right */
#member-2yr-boys .member-photo img {
  object-position: 55% 20%;
}

/* Shreyansh: portrait, upper half is face — pull up slightly */
#member-vp .avatar-profpic {
  object-position: center 15%;
}

/* Prajjwal: tall shot, crop to upper body / face */
#member-treasurer .avatar-profpic {
  object-position: center 18%;
}

/* Harikrishna: face is center-right */
#member-2yr-boys .avatar-profpic {
  object-position: 60% 25%;
}

/* Pratham: face centered, slight crop top */
#member-tech .avatar-profpic {
  object-position: center 12%;
}

/* ════════════════════════════════════════════
   GALLERY POPUP — compact floating tooltip
════════════════════════════════════════════ */
.gallery-overlay {
  position: fixed;
  z-index: 600;
  width: 276px;               /* ~1/4 of typical 1080p width */
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-mid);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 169, 110, 0.07);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  transform: scale(0.94);
  transform-origin: top left;
}

.gallery-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Arrow indicator pointing toward card */
.gallery-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border: 6px solid transparent;
}

.gallery-overlay.arrow-left::before {
  right: 100%;
  border-right-color: var(--clr-border-mid);
}

.gallery-overlay.arrow-right::before {
  left: 100%;
  border-left-color: var(--clr-border-mid);
}

/* Top shimmer */
.gallery-panel {
  position: relative;
}

.gallery-panel::before {
  content: '';
  position: absolute;
  top: -0.9rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  border-radius: 1px;
  pointer-events: none;
}

.gallery-header {
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--clr-border);
}

.gallery-year {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  display: block;
  margin-bottom: 0.15rem;
}

.gallery-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.2;
}

.gallery-role {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 0.1rem;
  display: block;
}

.gallery-instrument {
  font-size: 0.75rem;
  color: var(--clr-text-faint);
  font-style: italic;
  font-family: var(--ff-serif);
  display: block;
  margin-top: 0.05rem;
}

/* 2×2 compact photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.gallery-photo-slot {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  position: relative;
  transition: border-color 0.2s;
}

.gallery-photo-slot:hover { border-color: var(--clr-gold-dim); }

.gallery-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.gallery-photo-slot:hover img { transform: scale(1.06); }

/* Placeholder shown when image missing */
.gallery-photo-slot .slot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--clr-text-faint);
}

.gallery-photo-slot .slot-placeholder .slot-icon {
  font-size: 1.3rem;
  opacity: 0.3;
}

.gallery-photo-slot .slot-placeholder .slot-label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.35;
}

.gallery-hint {
  font-size: 0.58rem;
  color: var(--clr-text-faint);
  opacity: 0.5;
  text-align: center;
  line-height: 1.4;
}

.gallery-hint code {
  font-family: monospace;
  color: var(--clr-gold);
  opacity: 0.65;
  font-size: 0.56rem;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.contact .section-label { justify-content: center; }
.contact .section-label::before { display: none; }
.contact .section-subtitle { margin-inline: auto; }

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition: all 0.28s var(--ease-out);
  background: var(--clr-surface);
}

.contact-icon {
  font-size: var(--fs-lg);
  color: var(--clr-gold);
}

.contact-item:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.12);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-xl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.6;
}

.footer-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  letter-spacing: 0.14em;
  color: var(--clr-text-muted);
}

.footer-tagline {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}




/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .council-grid--core {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .council-grid--core {
    grid-template-columns: 1fr 1fr;
  }

  .council-grid--reps {
    grid-template-columns: 1fr;
  }

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

  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }
}

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

/* ════════════════════════════════════════════
   GIG VAULT
════════════════════════════════════════════ */
.gig-vault {
  background: #09090b;   /* near-black, slightly cooler than hero */
}

/* Event meta bar */
.gig-event-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
}

.gig-recorded-badge {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.7);
  white-space: nowrap;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 999px;
}

.gig-event-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.01em;
}

.gig-event-date {
  font-size: var(--fs-sm);
  color: var(--clr-text-faint);
  margin-top: 0.1rem;
}

/* ── Main split layout ── */
.gig-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Left side ── */
.gig-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 16:9 video container */
.gig-video-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245,158,11,0.18);
  box-shadow:
    0 0 40px rgba(0,0,0,0.7),
    0 0 0 1px rgba(245,158,11,0.06);
}

.gig-video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;  /* 16:9 */
  background: #000;
}

.gig-video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* On Stage section */
.gig-onstage {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}

.gig-onstage-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
  margin-right: 0.4rem;
}

.gig-onstage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gig-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.22);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: rgba(245,158,11,0.85);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.gig-pill:hover {
  background: rgba(245,158,11,0.14);
  border-color: rgba(245,158,11,0.4);
}

/* ── Right side ── */
.gig-right {
  position: sticky;
  top: 5.5rem;   /* below the header */
}

.gig-setlist-panel {
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gig-setlist-header {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding: 1rem 1.2rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gig-setlist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,158,11,0.2) transparent;
}

/* Setlist item */
.gig-setlist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.gig-setlist-item:last-child {
  border-bottom: none;
}

.gig-setlist-item:hover {
  background: rgba(255,255,255,0.04);
}

/* Active / currently playing item */
.gig-setlist-item.active {
  background: rgba(245,158,11,0.08);
}

.gig-setlist-item.active .gig-song-title {
  color: rgba(245,158,11,0.95);
}

.gig-setlist-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(245,158,11,0.9), rgba(245,158,11,0.4));
  border-radius: 0 2px 2px 0;
}

/* Track number */
.gig-track-num {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  color: var(--clr-text-faint);
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

.gig-setlist-item.active .gig-track-num {
  color: rgba(245,158,11,0.7);
}

/* Song info */
.gig-song-info {
  flex: 1;
  min-width: 0;
}

.gig-song-title {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.gig-song-artist {
  font-size: 0.73rem;
  color: var(--clr-text-faint);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gig-song-time {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  color: var(--clr-text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Play icon */
.gig-play-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,158,11,0.0);
  border: 1px solid rgba(245,158,11,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  color: var(--clr-text-faint);
  font-size: 0.7rem;
}

.gig-setlist-item:hover .gig-play-btn,
.gig-setlist-item.active .gig-play-btn {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.35);
  color: rgba(245,158,11,0.85);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .gig-layout {
    grid-template-columns: 1fr;
  }
  .gig-right {
    position: static;
  }
  .gig-setlist {
    max-height: 300px;
  }
}


/* ════════════════════════════════════════════════════════════
   SCROLL-SNAP SPLIT SECTIONS
   Four full-screen sections: Archives, Gallery, Members, Merch
════════════════════════════════════════════════════════════ */

/* ── Wrapper: establishes the snap scroll container ── */
.snap-sections-wrapper {
  /* Scroll snapping is handled per-section via scroll-snap-align
     on the page's natural scroll, not a sub-container —
     this keeps the nav and rest of page usable */
  position: relative;
}

/* ── Each 100vh section ── */
.snap-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: grid;
  /* image: 38%, text: 62% */
  grid-template-columns: 38% 62%;
  overflow: hidden;
  scroll-snap-align: start;
}

/* Reversed layout: image on right, text on left */
.snap-section--reverse {
  grid-template-columns: 62% 38%;
}

.snap-section--reverse .snap-image-panel {
  order: 2;
}
.snap-section--reverse .snap-text-panel {
  order: 1;
}

/* ── Left Panel: Background Image ── */
.snap-image-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible; /* let the curve clip-path bleed out */
  /* Convex curve on the right edge — clips the image into a curved shape
     that "bulges" into the text panel */
  clip-path: ellipse(110% 55% at 10% 50%);
  transition: clip-path 0.6s var(--ease-out);
  z-index: 1;
}

/* Reverse: curve goes the other way */
.snap-section--reverse .snap-image-panel {
  clip-path: ellipse(110% 55% at 90% 50%);
}

/* Subtle dark overlay on image so text doesn't fight it */
.snap-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 8, 0.1) 0%,
    rgba(10, 10, 8, 0.55) 100%
  );
}

.snap-section--reverse .snap-image-overlay {
  background: linear-gradient(
    to left,
    rgba(10, 10, 8, 0.1) 0%,
    rgba(10, 10, 8, 0.55) 100%
  );
}

/* ── Right Panel: Dark Text Side ── */
.snap-text-panel {
  position: relative;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  z-index: 2;
  /* Subtle warm glow bleeding in from image side */
  box-shadow: inset 6px 0 48px rgba(201, 169, 110, 0.04);
}

.snap-section--reverse .snap-text-panel {
  box-shadow: inset -6px 0 48px rgba(201, 169, 110, 0.04);
}

/* ── Text Content ── */
.snap-text-inner {
  max-width: 520px;
}


.snap-eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.snap-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

.snap-heading {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  /* Staggered delay for sequential feel */
  transition-delay: 0.08s;
}

.snap-desc {
  font-family: var(--ff-sans);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-text-muted);
  max-width: 46ch;
  margin-bottom: 2.5rem;
  transition-delay: 0.16s;
}

/* ── CTA Button ── */
.snap-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold-light);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
  transition-delay: 0.24s;
}

/* Gold fill sweep on hover */
.snap-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  transform: translateX(-105%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.snap-cta span,
.snap-cta svg {
  position: relative;
  z-index: 1;
}

.snap-cta:hover::before {
  transform: translateX(0);
}

.snap-cta:hover {
  color: var(--clr-bg);
  box-shadow: 0 8px 28px var(--clr-gold-dim);
  transform: translateY(-2px);
}

.snap-cta svg {
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.snap-cta:hover svg {
  transform: translateX(4px);
}

/* ── Section divider line on image panel (decorative) ── */
.snap-section::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-border-mid), transparent);
  z-index: 3;
  pointer-events: none;
}

.snap-section--reverse::after {
  left: auto;
  right: 38%;
}

/* ── Scroll-snap: scoped to the 4-section wrapper only ──
   Using proximity so the user can still scroll past freely.
   The wrapper itself becomes the scroll container. ── */
.snap-sections-wrapper {
  /* Keep position: relative from above, add snap container */
  scroll-snap-type: y proximity;
  /* Note: snap container must have a defined height/overflow
     to scroll independently — but here we use the page scroll
     with snap-align on children, which works in modern browsers
     when the root also has scroll-snap-type set to proximity. */
}

html {
  /* proximity = only snaps when close to a snap point;
     user can scroll right past them to reach content below */
  scroll-snap-type: y proximity;
}

.snap-section {
  scroll-snap-align: start;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .snap-section,
  .snap-section--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh 55vh;
    height: auto;
    min-height: 100vh;
  }

  .snap-image-panel {
    clip-path: ellipse(110% 110% at 50% 10%);
    height: 100%;
  }

  .snap-section--reverse .snap-image-panel {
    clip-path: ellipse(110% 110% at 50% 10%);
    order: 1;
  }

  .snap-section--reverse .snap-text-panel {
    order: 2;
  }

  .snap-section::after {
    display: none;
  }

  .snap-text-inner {
    text-align: center;
    padding: 1rem;
  }

  .snap-eyebrow {
    justify-content: center;
  }

  .snap-eyebrow::before {
    display: none;
  }

  .snap-desc {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  html {
    /* Softer snap on small screens */
    scroll-snap-type: y proximity;
  }

  .snap-heading {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }
}

/* ── ON AIR Neon Sign & Marquee (inspired by on air.jpg) ── */
.on-air-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 2.2rem;
  border: 3.5px solid #ff1e2e;
  border-radius: 9999px;
  background: radial-gradient(ellipse at center, rgba(35, 2, 6, 0.95) 0%, rgba(8, 0, 2, 0.98) 100%);
  box-shadow:
    0 0 14px rgba(255, 30, 46, 0.9),
    0 0 32px rgba(255, 30, 46, 0.65),
    0 0 60px rgba(255, 30, 46, 0.4),
    inset 0 0 16px rgba(255, 30, 46, 0.55);
  animation: neonFlicker 3s ease-in-out infinite alternate;
}

.on-air-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #ff3344;
  text-transform: uppercase;
  margin-left: 0.28em;
  text-shadow:
    0 0 8px #ff1e2e,
    0 0 22px #ff1e2e,
    0 0 40px rgba(255, 30, 46, 0.9),
    0 0 60px rgba(255, 30, 46, 0.6);
}

@keyframes neonFlicker {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(255, 30, 46, 0.9),
      0 0 32px rgba(255, 30, 46, 0.65),
      0 0 60px rgba(255, 30, 46, 0.4),
      inset 0 0 16px rgba(255, 30, 46, 0.55);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 30, 46, 1),
      0 0 45px rgba(255, 30, 46, 0.85),
      0 0 75px rgba(255, 30, 46, 0.55),
      inset 0 0 22px rgba(255, 30, 46, 0.7);
    filter: brightness(1.15);
  }
}

.merch-marquee-strip {
  width: 100%;
  overflow: hidden;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 30, 46, 0.35);
  border-bottom: 1px solid rgba(255, 30, 46, 0.35);
  background: rgba(255, 20, 40, 0.04);
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.merch-marquee-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeRun 16s linear infinite;
}

.merch-marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff3b4b;
  text-shadow: 0 0 10px rgba(255, 40, 60, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.merch-marquee-item::after {
  content: '✦';
  font-size: 0.6rem;
  color: #ff6b7b;
  opacity: 0.8;
}

@keyframes marqueeRun {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

