
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: #111;
}
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 4rem 1rem;
}
.hero h1 {
  font-size: 3rem;
  margin: 0;
}
.tagline {
  font-size: 1.25rem;
  color: #ccc;
}
.parallax-bg {
  background-image: url('parallax.jpg');
  height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.song-list {
  padding: 2rem;
  background-color: #222;
}
.song-card {
 /*  background: rgba(0, 0, 0, 0.4); */ /* semi-transparent overlay */
  background-image: linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0));
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #f39c12;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.song-card.playing {
  background: rgba(243, 156, 18, 0.2); /* soft orange tint */
  border-left-color: #e67e22;
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}
.song-card:hover {
  background: rgba(0, 0, 0, 0.6);
}
.bio {
  padding: 2rem;
  background-color: #1c1c1c;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #000;
  font-size: 0.9rem;
  color: #888;
}
