/* =====================================================
   DJ THILAK — COMPLETE STYLESHEET
   ===================================================== */

/* ---------- CSS Variables (Dark Theme) ---------- */
:root {
  --bg-primary: #080810;
  --bg-secondary: #0e0e1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text-primary: #f0f0ff;
  --text-secondary: rgba(240, 240, 255, 0.55);
  --text-muted: rgba(240, 240, 255, 0.3);
  --accent-1: #00b4ff;
  --accent-2: #0057ff;
  --accent-3: #00d4ff;
  --accent-4: #00ff88;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(0, 87, 255, 0.25);
  --nav-bg: rgba(8, 8, 16, 0.85);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
  --bg-primary: #f5f4ff;
  --bg-secondary: #eeeeff;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --text-primary: #12112a;
  --text-secondary: rgba(18, 17, 42, 0.6);
  --text-muted: rgba(18, 17, 42, 0.35);
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(0, 87, 255, 0.15);
  --nav-bg: rgba(245, 244, 255, 0.88);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: inherit; border: none; background: none; }
select, input, textarea { font-family: inherit; }

/* ---------- Custom Cursor ---------- */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent-1);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,180,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--accent-1); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 40px;
}
.loader-bars span {
  display: block; width: 6px; background: var(--accent-1);
  border-radius: 3px;
  animation: loaderBar 0.8s ease-in-out infinite alternate;
}
.loader-bars span:nth-child(1) { height: 15px; animation-delay: 0s; }
.loader-bars span:nth-child(2) { height: 25px; animation-delay: 0.1s; background: var(--accent-2); }
.loader-bars span:nth-child(3) { height: 40px; animation-delay: 0.2s; }
.loader-bars span:nth-child(4) { height: 25px; animation-delay: 0.3s; background: var(--accent-2); }
.loader-bars span:nth-child(5) { height: 15px; animation-delay: 0.4s; }
@keyframes loaderBar {
  to { height: 40px; }
}
.loader p {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dots { animation: dots 1.2s infinite; }
@keyframes dots {
  0%,20% { content: '.'; }
  40% { content: '..'; }
  60%,100% { content: '...'; }
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-dj { color: var(--accent-1); }
.logo-name { color: var(--text-primary); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-1);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 20px !important;
  background: var(--accent-1) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.85; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}
.theme-toggle:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }
.theme-icon { transition: opacity 0.2s, transform 0.2s; }
[data-theme="dark"] .sun { opacity: 1; }
[data-theme="dark"] .moon { opacity: 0; position: absolute; }
[data-theme="light"] .sun { opacity: 0; position: absolute; }
[data-theme="light"] .moon { opacity: 1; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.particles {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease 0.5s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-4);
  box-shadow: 0 0 8px var(--accent-4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-4); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--accent-4); }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.title-line { display: block; }
.title-line.accent {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0,180,255,0.35));
}
.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroFadeIn 1.2s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6) translateY(0); }
  50% { opacity: 1; transform: scaleY(1) translateY(6px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  cursor: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,180,255,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 36px rgba(0,180,255,0.55); opacity: 0.95; }
.btn-ghost {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; padding: 16px; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.dark-section { background: var(--bg-secondary); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 520px; }
.section-header { margin-bottom: 60px; }
.section-header .section-title { margin-bottom: 12px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; display: inline-block; }
.about-img-placeholder {
  width: 380px; height: 380px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vinyl-record {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: conic-gradient(
    #111 0deg, #1a1a1a 30deg, #111 60deg, #222 90deg, #111 120deg,
    #1a1a1a 150deg, #111 180deg, #222 210deg, #111 240deg,
    #1a1a1a 270deg, #111 300deg, #222 330deg, #111 360deg
  );
  position: relative;
  animation: vinylSpin 4s linear infinite;
  box-shadow: 0 0 60px rgba(0,87,255,0.3), 0 0 120px rgba(0,180,255,0.1);
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.vinyl-inner {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #333 20%, #222 40%, #111 70%);
  border: 3px solid rgba(255,255,255,0.05);
}
.vinyl-label {
  position: absolute; inset: 37%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  gap: 2px;
}
.about-tag {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-tag-1 { top: -16px; right: -20px; }
.about-tag-2 { bottom: -16px; left: -20px; }
.tag-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-skills { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.skill-bar {}
.skill-label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
.skill-track {
  height: 4px; background: var(--border);
  border-radius: 4px; overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.skill-fill.animated { width: var(--pct); }

/* ---------- Stats ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-card { color: #fff; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
.stat-suffix { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.7); }
.stat-card p { margin-top: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(0,180,255,0.06), rgba(0,87,255,0.06));
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,180,255,0.12), rgba(0,87,255,0.12));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent-1); }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-price {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent-1);
  background: rgba(0,180,255,0.1);
  padding: 4px 12px; border-radius: 100px;
}

/* ---------- Tracks / Work ---------- */
.tracks-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.track-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: background var(--transition), border-color var(--transition), transform 0.25s;
}
.track-card:hover { transform: translateX(4px); border-color: var(--border-hover); }
.track-cover {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 12px;
  background: conic-gradient(
    hsl(var(--hue), 80%, 35%),
    hsl(var(--hue), 90%, 20%),
    hsl(var(--hue), 70%, 45%),
    hsl(var(--hue), 80%, 35%)
  );
  display: flex; align-items: flex-end; justify-content: center;
  padding: 10px;
  gap: 3px;
  overflow: hidden;
}
.track-bars {
  display: flex; align-items: flex-end; gap: 3px; height: 30px;
}
.track-bars span {
  display: block; width: 4px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: trackBar 1.2s ease-in-out infinite alternate;
}
.track-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.track-bars span:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.track-bars span:nth-child(3) { height: 60%; animation-delay: 0.4s; }
.track-bars span:nth-child(4) { height: 90%; animation-delay: 0.1s; }
.track-bars span:nth-child(5) { height: 50%; animation-delay: 0.3s; }
@keyframes trackBar {
  to { height: 100%; }
}
.track-info { flex: 1; min-width: 0; }
.track-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track-genre { font-size: 0.75rem; color: var(--accent-1); font-weight: 500; display: block; margin-bottom: 8px; }
.track-meta { display: flex; gap: 12px; }
.track-meta span { font-size: 0.75rem; color: var(--text-muted); }
.track-play {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,180,255,0.3);
}
.track-play:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,180,255,0.5); }
.track-play svg { width: 14px; height: 14px; color: #fff; margin-left: 2px; }

/* ---------- Gallery ---------- */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-1);
  color: #fff;
  border-color: var(--accent-1);
}
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gallery-item.hidden { display: none; }
.gallery-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.gallery-img.gallery-tall { height: 360px; }
.gallery-img.gallery-wide { height: 220px; }
.gallery-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img img { transform: scale(1.06); }
.gallery-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover .gallery-gradient { opacity: 1; }
.gallery-label {
  position: relative; z-index: 2;
  color: #fff; font-size: 0.8rem; font-weight: 500;
  padding: 14px 16px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 800px; max-height: 80vh;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lightbox-content-inner {
  width: 600px; height: 400px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.1rem; color: #fff;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 2rem; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: rgba(255,255,255,0.6);
  padding: 10px; transition: color 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #fff; }

/* ---------- Schedule / Calendar ---------- */
.schedule-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.cal-nav h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700;
}
.cal-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  font-size: 1.3rem;
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.cal-nav button:hover { border-color: var(--border-hover); }
.cal-days-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 12px;
}
.cal-days-header span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 0; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  transition: background 0.2s;
}
.cal-day.empty { }
.cal-day.available {
  background: rgba(0,255,136,0.1);
  color: var(--accent-4);
  border: 1px solid rgba(0,255,136,0.2);
}
.cal-day.available:hover { background: rgba(0,255,136,0.2); }
.cal-day.booked {
  background: rgba(0,180,255,0.1);
  color: var(--accent-1);
  border: 1px solid rgba(0,180,255,0.2);
  text-decoration: line-through;
  opacity: 0.6;
}
.cal-day.limited {
  background: rgba(255,149,0,0.1);
  color: #ff9500;
  border: 1px solid rgba(255,149,0,0.2);
}
.cal-day.today {
  border: 2px solid var(--accent-2) !important;
}
.cal-day.past { opacity: 0.3; }
.cal-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-secondary); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-available { background: var(--accent-4); }
.dot-booked { background: var(--accent-1); }
.dot-limited { background: #ff9500; }
.schedule-note { text-align: center; color: var(--text-secondary); font-size: 0.9rem; }
.schedule-note a { color: var(--accent-1); border-bottom: 1px solid rgba(0,180,255,0.3); }

/* ---------- Booking ---------- */
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.booking-info p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; font-size: 1rem; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-secondary);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--accent-1); }
.contact-link svg { width: 18px; height: 18px; stroke: var(--accent-1); flex-shrink: 0; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.75rem; color: var(--accent-1); min-height: 16px; display: block; }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--radius-sm);
  color: var(--accent-4);
  font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; stroke: var(--accent-4); flex-shrink: 0; }
.form-success.show { display: flex; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #fff;
}

/* ---------- Footer ---------- */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-links h4, .footer-social h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--text-muted);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-1); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}
.social-link:hover {
  background: var(--accent-1); border-color: var(--accent-1);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover svg { stroke: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .about-img-placeholder { width: 300px; height: 300px; }
  .vinyl-record { width: 180px; height: 180px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tracks-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; color: var(--text-primary); }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-placeholder { width: 280px; height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .gallery-grid { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

/* ---------- Light mode overrides ---------- */
[data-theme="light"] .dark-section { background: #ededfc; }
[data-theme="light"] .gallery-img img { filter: brightness(0.92) saturate(0.9); }
[data-theme="light"] .stats-section { background: linear-gradient(135deg, var(--accent-2), var(--accent-1)); }
[data-theme="light"] #heroCanvas { opacity: 0.3; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(0,87,255,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

/* ---------- Selection ---------- */
::selection { background: rgba(0,180,255,0.3); color: var(--text-primary); }


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

.facebook-float {
    position: fixed;
    bottom: 95px; /* Above WhatsApp */
    right: 25px;
    width: 60px;
    height: 60px;
    background: #1877F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 9998;
}

.facebook-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.facebook-float svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .facebook-float {
        width: 55px;
        height: 55px;
        right: 20px;
        bottom: 85px;
    }
}