/* ============================================
   TAPPER ENTERTAINMENT — Global Styles
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --black-hover: #1a1a1a;
  --white: #ffffff;
  --white-muted: #b0b0b0;
  --white-dim: #888888;
  --gold: #e63946;
  --gold-light: #ff6b6b;
  --gold-dark: #b5222e;
  --gold-glow: rgba(230, 57, 70, 0.3);
  --font-display: 'Rajdhani', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text { color: var(--gold); }
.gold { color: var(--gold); }

/* ============================================
   PRELOADER
   ============================================ */

#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-bars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
  height: 50px;
  align-items: flex-end;
}

.loader-bars span {
  width: 6px;
  background: var(--gold);
  border-radius: 3px;
  animation: loaderPulse 1s ease-in-out infinite;
}

.loader-bars span:nth-child(1) { height: 20px; animation-delay: 0s; }
.loader-bars span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.loader-bars span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.loader-bars span:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.loader-bars span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes loaderPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 8px;
  color: var(--gold);
  animation: textFade 1.5s ease-in-out infinite;
  text-transform: uppercase;
}

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

/* ============================================
   NAVIGATION — Floating Glass Pill
   ============================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 24px;
  transition: var(--transition);
  animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* The floating pill wrapper */
.nav-pill {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 60px;
  padding: 2px; /* space for animated border */
}

/* Animated gradient border */
.nav-pill-border {
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    var(--gold) 10%,
    var(--gold-light) 20%,
    transparent 30%,
    transparent 70%,
    var(--gold-dark) 80%,
    var(--gold) 90%,
    transparent 100%
  );
  opacity: 0.7;
  animation: rotateBorder 4s linear infinite;
  transition: opacity var(--transition);
  filter: blur(0.5px);
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

.nav-pill:hover .nav-pill-border,
#navbar.scrolled .nav-pill-border {
  opacity: 1;
  filter: blur(0px);
}

/* Inner glass surface */
.nav-pill-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 58px;
  padding: 14px 32px;
  transition: var(--transition);
  box-shadow:
    inset 0 1px 0 0 rgba(230, 57, 70, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(230, 57, 70, 0.08);
}

/* Scrolled state — wider, more opaque */
#navbar.scrolled {
  padding: 10px 24px;
}

#navbar.scrolled .nav-pill {
  max-width: 960px;
}

#navbar.scrolled .nav-pill-inner {
  background: rgba(10, 10, 10, 0.92);
  padding: 12px 36px;
  box-shadow:
    inset 0 1px 0 0 rgba(230, 57, 70, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(230, 57, 70, 0.06);
}

/* ---- Logo (centered) ---- */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
  margin: 0 28px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
}

/* Mini animated equalizer bars next to logo */
.logo-icon {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.logo-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: logoPulse 1.2s ease-in-out infinite;
}

.logo-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
.logo-bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.logo-bar:nth-child(3) { height: 10px; animation-delay: 0.3s; }

@keyframes logoPulse {
  0%, 100% { transform: scaleY(0.6); }
  50%      { transform: scaleY(1); }
}

/* ---- Nav Links ---- */
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links--left {
  justify-content: flex-end;
}

.nav-links--right {
  justify-content: flex-start;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 14px;
  border-radius: 30px;
  transition: all var(--transition-fast);
  overflow: hidden;
}

/* Glow background on hover */
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.35s ease;
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Active indicator dot */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--transition);
  box-shadow: 0 0 8px var(--gold), 0 0 16px var(--gold-glow);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

/* Stagger entrance for links */
.nav-link {
  animation: linkFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nav-links--left .nav-link:nth-child(1) { animation-delay: 0.5s; }
.nav-links--left .nav-link:nth-child(2) { animation-delay: 0.6s; }
.nav-links--left .nav-link:nth-child(3) { animation-delay: 0.7s; }
.nav-links--right .nav-link:nth-child(1) { animation-delay: 0.8s; }
.nav-links--right .nav-link:nth-child(2) { animation-delay: 0.9s; }
.nav-links--right .nav-link:nth-child(3) { animation-delay: 1.0s; }

@keyframes linkFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--gold);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  text-align: center;
}

.mobile-links li {
  margin: 24px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.mobile-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--transition);
}

.mobile-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.mobile-links a:hover::after {
  width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
    var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.4) 100%);
}

/* Animated Bars */
.animated-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 200px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-bars {
  height: 300px;
  opacity: 0.08;
}

.animated-bars .bar {
  width: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  animation: barPulse 2s ease-in-out infinite;
}

.animated-bars .bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.animated-bars .bar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.animated-bars .bar:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.animated-bars .bar:nth-child(4) { height: 80%; animation-delay: 0.6s; }
.animated-bars .bar:nth-child(5) { height: 35%; animation-delay: 0.8s; }
.animated-bars .bar:nth-child(6) { height: 60%; animation-delay: 1.0s; }
.animated-bars .bar:nth-child(7) { height: 90%; animation-delay: 0.3s; }
.animated-bars .bar:nth-child(8) { height: 45%; animation-delay: 0.5s; }
.animated-bars .bar:nth-child(9) { height: 75%; animation-delay: 0.7s; }
.animated-bars .bar:nth-child(10) { height: 55%; animation-delay: 0.9s; }
.animated-bars .bar:nth-child(11) { height: 65%; animation-delay: 0.1s; }
.animated-bars .bar:nth-child(12) { height: 85%; animation-delay: 1.1s; }

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

.section-bars {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0.03;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title .line {
  display: block;
}

.cursor {
  animation: blink 1s step-end infinite;
  color: var(--gold);
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: floatUp 2s ease-in-out infinite;
}

.scroll-indicator p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--white-dim);
  margin-top: 8px;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

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

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 2;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(230, 57, 70, 0.15);
}

.stat {
  padding: 28px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   SECTIONS — Shared
   ============================================ */

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 3px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  background: var(--black-light);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(230, 57, 70, 0.05);
  border: 1px solid rgba(230, 57, 70, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.value i {
  color: var(--gold);
  font-size: 1.1rem;
}

.about-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 4/3;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-dim);
}

.image-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
}

.image-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Team Grid */
.team-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(230, 57, 70, 0.2);
}

.team-photo i {
  font-size: 2rem;
  color: var(--gold);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.team-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.team-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================
   ARTISTS SECTION
   ============================================ */

.artists-section {
  background: var(--black);
}

.artist-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: var(--white-muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.3);
}

.artist-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--black-hover) 100%);
}

.artist-img i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.2;
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.artist-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.artist-info span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-overlay p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.artist-card.hidden {
  display: none;
}

.load-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
  background: var(--black-light);
}

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  align-items: center;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-date {
  min-width: 120px;
  padding: 28px;
  text-align: center;
  background: rgba(230, 57, 70, 0.08);
  border-right: 2px solid var(--gold);
}

.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 4px;
}

.event-date .year {
  display: block;
  font-size: 0.7rem;
  color: var(--white-dim);
  margin-top: 2px;
}

.event-details {
  flex: 1;
  padding: 24px 32px;
}

.event-type {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(230, 57, 70, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  font-weight: 600;
}

.event-details h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.event-details p {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 4px;
}

.event-details p i {
  color: var(--gold);
  margin-right: 8px;
  width: 16px;
}

.event-action {
  padding: 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.event-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================
   BOOKINGS SECTION
   ============================================ */

.bookings-section {
  background: var(--black);
}

/* Marquee */
.clients-marquee {
  overflow: hidden;
  margin-bottom: 64px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--white-dim);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.client-logo:hover {
  color: var(--gold);
}

.client-logo i {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
}

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

/* Booking Types */
.booking-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.booking-card {
  padding: 36px 28px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: var(--transition);
}

.booking-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-6px);
}

.booking-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.booking-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.booking-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.booking-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.link-gold {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

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

.link-gold i {
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.link-gold:hover i {
  transform: translateX(4px);
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 180px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 24px;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
  background: var(--black-light);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.gallery-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
}

.gallery-placeholder span {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-item:hover .gallery-placeholder {
  border-color: rgba(230, 57, 70, 0.3);
}

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
}

.gallery-caption p {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: var(--black);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.info-card > i {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-dim);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--black-card);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  background: var(--black-light);
  border-top: 1px solid rgba(230, 57, 70, 0.1);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer-bars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  height: 100%;
  opacity: 0.02;
  pointer-events: none;
}

.footer-bars .bar {
  width: 2px;
  background: var(--gold);
  animation: barPulse 3s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color var(--transition-fast);
}

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

.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px 0 0 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--white-dim);
  position: relative;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-types { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-pill { max-width: 260px; }
  .nav-pill-inner { padding: 10px 20px; justify-content: space-between; }
  .nav-logo { margin: 0; font-size: 1rem; letter-spacing: 3px; }
  #navbar.scrolled .nav-pill { max-width: 280px; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 50%;
    padding: 20px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-types { grid-template-columns: 1fr; }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    min-width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--gold);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .event-date .day,
  .event-date .month,
  .event-date .year {
    display: inline;
  }

  .event-date .day { font-size: 1.4rem; }

  .event-action {
    padding: 16px 24px;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .scroll-indicator { bottom: 140px; }

  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .about-values { grid-template-columns: 1fr; }
}
