/*
Theme Name: VDJ Jones
Theme URI: https://vdjjones.com
Author: VDJ Jones
Author URI: https://vdjjones.com
Description: A powerful, modern DJ theme for VDJ Jones. Features a full-screen image slider, Latest Mixes, Audio Mixes, Video Mixes, Events, and New Music sections — all customizable via the WordPress dashboard.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vdj-jones
Tags: music, dj, entertainment, dark, red, custom-colors, custom-menu, featured-images, full-width-template, custom-logo, theme-options
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --red:        #E50000;
  --red-dark:   #A30000;
  --red-glow:   rgba(229,0,0,0.35);
  --black:      #0A0A0A;
  --black-mid:  #111111;
  --black-card: #181818;
  --black-light:#222222;
  --white:      #FFFFFF;
  --grey:       #AAAAAA;
  --grey-dark:  #555555;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Barlow', 'Arial', sans-serif;
  --transition:   0.3s ease;
  --radius:       4px;
  --shadow:       0 4px 24px rgba(0,0,0,0.7);
  --shadow-red:   0 0 24px var(--red-glow);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 7vw, 6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--grey); line-height: 1.7; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--black-mid); }
.section-card { background: var(--black-card); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--red); color: var(--red);
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

/* SECTION HEADING */
.section-heading {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.section-heading h2 { color: var(--white); }
.section-heading .heading-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
}
.section-heading .heading-tag {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--red);
  border-radius: 2px; white-space: nowrap;
}

/* =============================================
   TOP BAR
   ============================================= */
#top-bar {
  background: var(--red-dark);
  padding: 8px 0;
  font-size: 0.8rem; letter-spacing: 0.08em;
}
#top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
#top-bar .social-links { display: flex; gap: 12px; }
#top-bar .social-links a { color: rgba(255,255,255,0.8); font-size: 1rem; }
#top-bar .social-links a:hover { color: var(--white); }
#top-bar .top-contact { color: rgba(255,255,255,0.8); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 32px rgba(229,0,0,0.2);
  transition: all var(--transition);
}
#site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.site-logo { display: flex; align-items: center; gap: 14px; }
.site-logo img { height: 52px; width: auto; }
.site-logo .logo-text { font-family: var(--font-display); }
.site-logo .logo-text .vdj { font-size: 2rem; color: var(--white); letter-spacing: 0.05em; }
.site-logo .logo-text .jones { font-size: 2rem; color: var(--red); letter-spacing: 0.05em; }
.site-logo .logo-text .tagline { font-size: 0.65rem; color: var(--grey); letter-spacing: 0.15em; text-transform: uppercase; }

/* NAV */
#site-nav ul { display: flex; gap: 4px; align-items: center; }
#site-nav ul li a {
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.1em;
  color: var(--grey); padding: 8px 14px;
  text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--transition); position: relative;
}
#site-nav ul li a:hover,
#site-nav ul li a.active { color: var(--white); }
#site-nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
#site-nav ul li a:hover::after { width: 70%; }
#site-nav .nav-book-btn {
  background: var(--red); color: var(--white) !important;
  padding: 8px 20px !important; margin-left: 8px;
  box-shadow: var(--shadow-red);
}
#site-nav .nav-book-btn::after { display: none; }
#site-nav .nav-book-btn:hover { background: var(--red-dark) !important; }

/* HAMBURGER */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO SLIDER
   ============================================= */
#hero-slider {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--black);
}
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.2) 100%);
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}
.slide-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 700px;
  animation: slideIn 0.8s ease both;
}
@keyframes slideIn { from { opacity:0; transform: translateX(-40px); } to { opacity:1; transform: none; } }
.slide-badge {
  display: inline-block; background: var(--red);
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 14px; margin-bottom: 16px; border-radius: 2px;
}
.slide-content h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.slide-content p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* SLIDER CONTROLS */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  background: rgba(229,0,0,0.9); color: var(--white);
  border-radius: 50%; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); box-shadow: var(--shadow-red);
}
.slider-btn:hover { background: var(--red); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--red); transform: scale(1.3); box-shadow: var(--shadow-red); }
.slider-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--red); z-index: 10;
  animation: progress 5s linear infinite;
}
@keyframes progress { from { width: 0; } to { width: 100%; } }

/* =============================================
   TICKER / NOW PLAYING
   ============================================= */
#now-playing {
  background: var(--red); padding: 12px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ticker-wrap { display: flex; align-items: center; gap: 0; overflow: hidden; }
.ticker-label {
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 0.12em; background: var(--red-dark);
  padding: 0 20px; white-space: nowrap; flex-shrink: 0;
  height: 100%; display: flex; align-items: center; margin-right: 24px;
}
.ticker-content {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-content span {
  font-size: 0.85rem; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.ticker-content span::before { content: '♪'; font-size: 1rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   LATEST MIXES SECTION
   ============================================= */
#latest-mixes { padding: 80px 0; background: var(--black); }
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.mix-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
}
.mix-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow-red), var(--shadow);
}
.mix-card-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--black-light);
}
.mix-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mix-card:hover .mix-card-thumb img { transform: scale(1.08); }
.mix-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; background: rgba(229,0,0,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); opacity: 0;
  transition: opacity var(--transition); box-shadow: var(--shadow-red);
}
.mix-card:hover .mix-play-btn { opacity: 1; }
.mix-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.12em; padding: 3px 10px; border-radius: 2px;
}
.mix-card-body { padding: 18px; }
.mix-card-body h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.mix-card-body p { font-size: 0.85rem; color: var(--grey); margin-bottom: 14px; }
.mix-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--grey-dark);
}
.mix-meta .duration { color: var(--red); font-family: var(--font-display); }

/* =============================================
   AUDIO MIXES SECTION
   ============================================= */
#audio-mixes { padding: 80px 0; background: var(--black-mid); }
.audio-list { display: flex; flex-direction: column; gap: 12px; }
.audio-track {
  display: flex; align-items: center; gap: 20px;
  background: var(--black-card); border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.audio-track:hover { border-color: var(--red); box-shadow: 0 0 16px rgba(229,0,0,0.15); }
.audio-track-num {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--grey-dark); min-width: 32px; text-align: center;
}
.audio-track:hover .audio-track-num { color: var(--red); }
.audio-play {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  transition: all var(--transition); box-shadow: var(--shadow-red);
}
.audio-play:hover { background: var(--red-dark); transform: scale(1.1); }
.audio-thumb {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--black-light);
}
.audio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.audio-info { flex: 1; min-width: 0; }
.audio-info h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-info p { font-size: 0.8rem; color: var(--grey); }
.audio-waveform {
  flex: 2; min-width: 0; height: 40px;
  display: flex; align-items: flex-end; gap: 2px; overflow: hidden;
}
.waveform-bar {
  flex: 1; background: var(--grey-dark); border-radius: 1px;
  transition: background var(--transition);
  min-width: 3px;
}
.audio-track:hover .waveform-bar { background: var(--red); opacity: 0.6; }
.waveform-bar:nth-child(odd) { animation: wave 1.5s ease infinite; }
.waveform-bar:nth-child(even) { animation: wave 1.5s ease infinite 0.3s; }
@keyframes wave { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.audio-duration {
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--grey-dark); min-width: 48px; text-align: right;
}
.audio-genre {
  font-size: 0.72rem; color: var(--red);
  border: 1px solid var(--red); padding: 2px 8px;
  border-radius: 2px; white-space: nowrap;
  font-family: var(--font-display); letter-spacing: 0.1em;
}

/* =============================================
   VIDEO MIXES SECTION
   ============================================= */
#video-mixes { padding: 80px 0; background: var(--black); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--black-card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid transparent;
  transition: all var(--transition);
}
.video-card:hover { border-color: var(--red); box-shadow: var(--shadow-red), var(--shadow); transform: translateY(-4px); }
.video-thumb {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: var(--black-light);
  cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity var(--transition);
}
.video-card:hover .video-play-overlay { opacity: 1; }
.video-play-icon {
  width: 64px; height: 64px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); box-shadow: var(--shadow-red);
  transform: scale(0.9); transition: transform var(--transition);
}
.video-card:hover .video-play-icon { transform: scale(1); }
.video-card-time {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.85); color: var(--white);
  font-family: var(--font-display); font-size: 0.8rem;
  padding: 3px 8px; border-radius: 2px;
}
.video-card-body { padding: 16px; }
.video-card-body h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.video-card-body p { font-size: 0.82rem; color: var(--grey); margin-bottom: 12px; }
.video-stats { display: flex; gap: 16px; font-size: 0.78rem; color: var(--grey-dark); }
.video-stats span { display: flex; align-items: center; gap: 4px; }

/* =============================================
   EVENTS SECTION
   ============================================= */
#events { padding: 80px 0; background: var(--black-mid); }
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 24px;
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.event-card::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 0; background: rgba(229,0,0,0.05);
  transition: width 0.4s ease;
}
.event-card:hover::before { width: 100%; }
.event-card:hover { box-shadow: var(--shadow-red), var(--shadow); transform: translateX(4px); }
.event-date {
  text-align: center; position: relative; z-index: 1;
  border-right: 1px solid var(--black-light); padding-right: 24px;
}
.event-date .day {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--red); line-height: 1;
}
.event-date .month {
  font-family: var(--font-display); font-size: 0.9rem;
  letter-spacing: 0.12em; color: var(--grey);
  text-transform: uppercase;
}
.event-date .year { font-size: 0.75rem; color: var(--grey-dark); }
.event-info { position: relative; z-index: 1; }
.event-info h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.event-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--grey);
}
.event-meta span { display: flex; align-items: center; gap: 6px; }
.event-meta .icon { color: var(--red); font-size: 0.9rem; }
.event-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.event-tag {
  font-size: 0.7rem; font-family: var(--font-display); letter-spacing: 0.1em;
  padding: 2px 8px; border-radius: 2px; border: 1px solid var(--grey-dark);
  color: var(--grey);
}
.event-action { position: relative; z-index: 1; flex-shrink: 0; }
.event-status {
  font-size: 0.72rem; font-family: var(--font-display); letter-spacing: 0.1em;
  text-align: center; margin-bottom: 10px; text-transform: uppercase;
}
.event-status.upcoming { color: #00cc66; }
.event-status.soldout { color: var(--red); }

/* =============================================
   NEW MUSIC SECTION
   ============================================= */
#new-music { padding: 80px 0; background: var(--black); }
.music-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--black-card);
  border-radius: 8px; overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--black-light);
}
.music-feature-art {
  position: relative; aspect-ratio: 1;
  overflow: hidden;
}
.music-feature-art img { width: 100%; height: 100%; object-fit: cover; }
.music-feature-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black-card) 100%);
}
.music-feature-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--red); font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.15em;
  padding: 5px 14px; border-radius: 2px;
  box-shadow: var(--shadow-red);
}
.music-feature-info { padding: 40px 48px 40px 0; }
.music-feature-info .label { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.music-feature-info h2 { color: var(--white); margin-bottom: 8px; }
.music-feature-info .artist { font-family: var(--font-display); font-size: 1.2rem; color: var(--grey); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.music-feature-info p { margin-bottom: 28px; }
.music-feature-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.music-releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.release-card {
  background: var(--black-card); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.release-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.release-art {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--black-light);
}
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.release-card:hover .release-art img { transform: scale(1.07); }
.release-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,0,0,0.75); opacity: 0; transition: opacity var(--transition);
  font-size: 2rem; color: var(--white);
}
.release-card:hover .release-play { opacity: 1; }
.release-info { padding: 14px; }
.release-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.release-info .release-type {
  font-size: 0.72rem; color: var(--red); font-family: var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.release-info .release-date { font-size: 0.72rem; color: var(--grey-dark); margin-top: 4px; }

/* =============================================
   PROMO BANNER
   ============================================= */
#promo-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--black) 60%);
  position: relative; overflow: hidden;
}
#promo-banner::before {
  content: 'VDJ JONES';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 20vw; color: rgba(255,255,255,0.03);
  white-space: nowrap; letter-spacing: 0.1em; pointer-events: none;
}
#promo-banner .container {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  position: relative; z-index: 1;
}
#promo-banner h2 { color: var(--white); margin-bottom: 12px; }
#promo-banner p { font-size: 1.1rem; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: var(--black-mid); border-top: 2px solid var(--red); }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text .vdj { font-size: 2.5rem; color: var(--white); }
.footer-brand .logo-text .jones { font-size: 2.5rem; color: var(--red); }
.footer-brand p { margin: 16px 0 24px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--black-light); border: 1px solid var(--black-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.9rem; transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red); border-color: var(--red);
  color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-red);
}
.footer-widget h4 {
  color: var(--white); font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--red);
}
.footer-widget ul { display: flex; flex-direction: column; gap: 10px; }
.footer-widget ul li a {
  font-size: 0.88rem; color: var(--grey);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.footer-widget ul li a::before { content: '›'; color: var(--red); }
.footer-widget ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-newsletter input[type="email"] {
  width: 100%; background: var(--black-light);
  border: 1px solid var(--black-light); border-radius: var(--radius);
  padding: 10px 14px; color: var(--white); font-size: 0.85rem;
  margin-bottom: 10px; transition: border-color var(--transition);
}
.footer-newsletter input[type="email"]:focus { outline: none; border-color: var(--red); }
.footer-newsletter input::placeholder { color: var(--grey-dark); }
.footer-newsletter .btn { width: 100%; justify-content: center; }
.footer-bottom {
  border-top: 1px solid var(--black-light);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey-dark); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--grey-dark); }
.footer-bottom-links a:hover { color: var(--red); }

/* =============================================
   VIDEO LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner { width: 90%; max-width: 960px; position: relative; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--red-dark); }
.lightbox-video { aspect-ratio: 16/9; background: var(--black); border-radius: var(--radius); overflow: hidden; }
.lightbox-video iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 46px; height: 46px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  box-shadow: var(--shadow-red);
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition); pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .music-feature { grid-template-columns: 1fr; }
  .music-feature-info { padding: 32px; }
  .music-feature-art::after { display: none; }
  .event-card { grid-template-columns: 80px 1fr auto; gap: 16px; padding: 20px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  #site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(12px);
    padding: 20px; display: none;
    border-top: 1px solid var(--red);
  }
  #site-nav.open { display: block; }
  #site-nav ul { flex-direction: column; gap: 4px; }
  #site-nav ul li a { display: block; padding: 12px 16px; }
  .slide-content { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-date { border-right: none; padding-right: 0; border-bottom: 1px solid var(--black-light); padding-bottom: 16px; }
  .event-meta { justify-content: center; }
  #promo-banner .container { grid-template-columns: 1fr; text-align: center; }
  .audio-waveform { display: none; }
  .audio-track { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .mixes-grid,
  .video-grid,
  .music-releases-grid { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
}

/* =============================================
   WP ALIGNMENT HELPERS
   ============================================= */
.alignleft  { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--grey); text-align: center; }

/* =============================================
   ADMIN BAR OFFSET
   ============================================= */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }
