/* --- CSS Variables --- */
:root {
  --primary-red: #ff0d2b;
  --primary-red-hover: #e0001f;
  --red-glow: rgba(255, 13, 43, 0.5);
  --dark-bg: #050508;
  --dark-card: #0d0e15;
  --text-white: #ffffff;
  --text-muted: #aaaaaa;
  --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Brittany Signature', 'Alex Brush', cursive;
}

/* --- Global Resets & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  font-family: var(--font-heading);
  overflow-x: hidden;
}

/* --- Bootstrap Overrides --- */
.text-danger {
  color: var(--primary-red) !important;
}
.bg-danger {
  background-color: var(--primary-red) !important;
}
.btn-danger {
  background-color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
}
.btn-danger:hover {
  background-color: var(--primary-red-hover) !important;
  border-color: var(--primary-red-hover) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #08080c;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}

/* --- Navigation Header --- */
.header-navbar .navbar {
  background: transparent;
  transition: none;
  z-index: 1030;
}

/* Brand Logo & Equalizer Icon */
.navbar-brand {
  text-decoration: none;
  cursor: pointer;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-red);
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px rgba(255, 13, 43, 0.3);
}

/* Logo Equalizer Animated Soundwave */
.logo-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.logo-equalizer span {
  width: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
  animation: equalize 1.2s ease-in-out infinite alternate;
  box-shadow: 0 0 8px var(--primary-red);
}

.logo-equalizer span:nth-child(1) {
  height: 60%;
  animation-delay: -0.4s;
}

.logo-equalizer span:nth-child(2) {
  height: 100%;
  animation-delay: -0.2s;
}

.logo-equalizer span:nth-child(3) {
  height: 40%;
  animation-delay: -0.7s;
}

.logo-equalizer span:nth-child(4) {
  height: 80%;
  animation-delay: -0.1s;
}

.logo-equalizer span:nth-child(5) {
  height: 50%;
  animation-delay: -0.5s;
}

@keyframes equalize {
  0% {
    height: 25%;
  }

  50% {
    height: 100%;
  }

  100% {
    height: 45%;
  }
}

/* Social Media Icons */
.social-link {
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
}

.social-link:hover {
  color: var(--primary-red);
  transform: translateY(-2px);
  text-shadow: 0 0 12px var(--primary-red);
}

/* --- Hero Banner Section --- */
.hero-banner {
  background-image: url('../assets/dj_hero_bg.jpg');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

/* Background Soundwave Decorative Overlay */
.bg-soundwave-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 12px,
      rgba(255, 13, 43, 0.04) 12px,
      rgba(255, 13, 43, 0.04) 15px);
  pointer-events: none;
  z-index: 1;
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  user-select: none;
}

.hero-line {
  display: block;
}

.hero-line-white {
  color: var(--text-white);
}

.hero-line-red {
  color: var(--primary-red);
}

.red-dot {
  color: var(--primary-red);
}

.peach-dot {
  color: #fba99b;
}

/* Red Divider Bar */
.red-divider {
  width: 38px;
  height: 2.5px;
  background-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red);
  border-radius: 2px;
}

/* Subtitle Bio */
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Spotify Custom CTA Button */
.btn-spotify-custom {
  background: transparent;
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  color: var(--primary-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 6px 8px 6px 16px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(255, 13, 43, 0.15);
  cursor: pointer;
}

.btn-spotify-custom .spotify-badge {
  background-color: var(--primary-red);
  color: #000000;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.35s ease;
}

.btn-spotify-custom:hover {
  background-color: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 0 25px rgba(255, 13, 43, 0.6);
  transform: translateY(-2px);
}

.btn-spotify-custom:hover .spotify-badge {
  background-color: #ffffff;
  color: var(--primary-red);
  transform: scale(1.1);
}

/* --- Signature Script Text (Bottom Right) --- */
.signature-wrapper {
  bottom: 8%;
  right: 6%;
  z-index: 2;
  pointer-events: none;
}

.signature-text {
  font-family: var(--font-signature);
  font-size: clamp(4.8rem, 9vw, 8rem);
  color: var(--primary-red);
  font-weight: 500;
  letter-spacing: 2px;
  /* text-shadow: 0 0 10px rgba(255, 13, 43, 0.8), 0 0 22px rgba(255, 13, 43, 0.4); */
  display: inline-block;
  transform: rotate(-3deg);
  opacity: 0.98;
  user-select: none;
}

/* --- Music & Latest Releases Section --- */
.music-section {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.music-label {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
}

.music-title {
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.spotify-embed-card,
.spotify-custom-card {
  background: #241315;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.spotify-header-banner {
  background: linear-gradient(135deg, #b05c61 0%, #6d3338 50%, #3b191c 100%);
}

.spotify-controls-bar {
  background-color: #2b1618;
}

.spotify-tracks-body {
  background-color: #241315;
}

.btn-spotify-green {
  background-color: #1db954;
  color: #000000;
  width: 48px;
  height: 48px;
  transition: all 0.25s ease;
}

.btn-spotify-green:hover {
  background-color: #1ed760;
  transform: scale(1.05);
}

.text-spotify-green {
  color: #1db954;
}

.track-item {
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.track-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.hover-white:hover {
  color: #ffffff !important;
}

/* --- Events & Behind the Decks Section --- */
.events-section {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.events-label {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
}

.events-title {
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.event-card {
  background-color: #0d0e15;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  aspect-ratio: 5/5;
}

.event-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-red) !important;
  box-shadow: 0 15px 35px rgba(255, 13, 43, 0.25) !important;
}

.event-img {
  transition: transform 0.4s ease;
}

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

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.4) 50%, rgba(5, 5, 8, 0) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.spotify-all-tracks-link {
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.spotify-all-tracks-link:hover {
  color: var(--text-white) !important;
  transform: translateX(4px);
}

.spotify-bottom-player i {
  transition: color 0.2s ease;
  cursor: pointer;
}

.spotify-bottom-player i:hover {
  color: var(--text-white) !important;
}

/* --- Modal & Audio Player Styling --- */
.bg-dark-card {
  background-color: var(--dark-card);
  border-radius: 20px;
}

.border-red {
  border: 1px solid rgba(255, 13, 43, 0.3) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.bg-dark-glass {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.small-eq span {
  width: 2px;
  background-color: var(--primary-red);
}

.audio-player-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Responsive Media Queries --- */
@media (max-width: 991.98px) {
  .hero-banner {
    background-position: center center;
  }

  .signature-wrapper {
    bottom: 5%;
    right: 5%;
  }

  .signature-text {
    font-size: 4rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .signature-wrapper {
    bottom: -5px;
    right: 15px;
  }

  .signature-text {
    font-size: 2.2rem;
  }
}

/* --- Bottom Sections (Stream & Booking) --- */
.stream-logo {
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.stream-logo:hover {
  transform: translateY(-3px);
  color: var(--primary-red) !important;
}

.stream-logo:hover svg {
  fill: var(--primary-red) !important;
  transition: fill 0.3s ease;
}

.hover-red:hover {
  color: var(--primary-red) !important;
}

/* --- Extracted Inline Styles --- */
.spotify-iframe {
  border-radius: 16px;
}

.btn-play-bottom {
  width: 34px;
  height: 34px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.play-icon-offset {
  margin-left: 2px;
}

.bottom-player-controls {
  max-width: 480px;
}

.time-text {
  font-size: 0.75rem;
}

.scrubber-track {
  height: 4px;
  border-radius: 2px;
}

.border-glass {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

@keyframes shootingCometRight {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

@keyframes shootingCometLeft {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.gradient-line-right {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255, 13, 43, 0.2) 75%, var(--primary-red) 100%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: shootingCometRight 8s linear infinite;
  filter: drop-shadow(0 0 6px var(--primary-red));
}

.gradient-line-left {
  height: 2px;
  background: linear-gradient(-90deg, transparent 0%, transparent 30%, rgba(255, 13, 43, 0.2) 75%, var(--primary-red) 100%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: shootingCometLeft 8s linear infinite;
  filter: drop-shadow(0 0 6px var(--primary-red));
}

.stream-title {
  letter-spacing: 3px;
  font-size: 0.85rem;
}

/* .booking-overlay { background: linear-gradient(90deg, rgba(5,5,8,1) 0%, rgba(5,5,8,0.7) 50%, rgba(5,5,8,1) 100%); } */
.transition-color {
  transition: color 0.3s ease;
}

.follow-vibe-title {
  letter-spacing: 3px;
  font-size: 0.8rem;
}

.social-btn {
  width: 40px;
  height: 40px;
}

.footer-text {
  font-size: 0.9rem;
}

.modal-progress {
  height: 6px;
}