/* Import Punkrock Font */
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Roboto:wght@400;700&display=swap');

/* Base and Layout */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* Animated Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/foggy-birds.png') repeat;
  background-size: auto;
  z-index: -1;
  animation: slide 60s linear infinite;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Navbar Styles */
.navbar {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.navbar-nav {
  display: flex;
  gap: 1.5rem;
}
.nav-link {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff !important;
}
.nav-link:hover {
  color: #f39c12 !important;
}

/* Album Banner */
.album-banner {
  margin-top: 80px;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.album-banner h1 {
  font-family: 'Rock Salt', cursive;
  font-size: 2.5rem;
  color: #e74c3c;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
  transform: rotate(-2deg);
  margin: 0;
}

/* Social / Streaming Sidebar */
.social-bar {
  z-index: 1000;
  left: 0;
}

.social-bar li {
  list-style: none;
}

.social-bar a {
  display: inline-block;
  font-size: 1.5rem;
  transition: transform 0.2s, color 0.2s;
}

.social-bar a:hover {
  color: #f39c12;
  transform: scale(1.2);
}

#hero-audio {
  background: linear-gradient(to right, #111, #222);
  padding: 60px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  border-top: 2px solid #f39c12;
  border-bottom: 2px solid #f39c12;
  position: relative;
  z-index: 1;
}

#hero-audio h2 {
  font-size: 2.5rem;
  color: #f39c12;
  text-shadow: 0 0 8px #f39c12;
  margin-bottom: 1.5rem;
}

#hero-audio iframe {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
}

#hero-audio i {
  filter: drop-shadow(0 0 6px #000);
}

#hero-audio a i {
  transition: transform 0.3s, color 0.3s;
}

#hero-audio a:hover i {
  transform: scale(1.3);
  color: #f39c12 !important;
}

#reviews blockquote {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-left: 5px solid #f39c12;
  font-style: italic;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}
.hover-glow:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}
.video-scroll-container {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  animation: scroll-left 40s linear infinite;
}
.video-scroll-container:hover {
  animation-play-state: paused;
}
.video-scroll-container::-webkit-scrollbar {
  display: none;
}
.video-scroll-container > div {
  scroll-snap-align: start;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-title {
  font-family: 'Rock Salt', cursive;
  font-size: 2.5rem;
  color: #f39c12;
  text-shadow: 0 0 8px #f39c12;
  margin-bottom: 1.5rem;
  text-align: center;
}

.lyrics-title {
  font-family: 'Rock Salt', cursive;
  font-size: 2.5rem;
  color: #f39c12;
  text-shadow: 0 0 8px #f39c12;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #f39c12;
  display: inline-block;
  padding-bottom: 0.5rem;
  box-shadow: 0 3px 8px -3px #f39c12;
}
