/* Music Page */
/* Featured Artist Section */

.hero-music {
  background: url('images/hero-11.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh; /* takes up most of the screen */
  padding: 2rem;
  position: relative;
}

/* optional overlay for readability */
.hero-music::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.hero-music .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}


.hero-music .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-music .hero-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-music .btn-explore {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  border: 1px solid #111;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
}

.hero-music .btn-explore:hover {
  background: #111;
  color: #fff;
}


.featured-artist {
  background: #ffffff;
  padding: 80px 0;
}

.featured-artist .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.artist-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.artist-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.artist-info {
  flex: 1;
}

.artist-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.artist-bio {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.streaming-links {
  display: flex;
  gap: 15px;
}

.btn-stream {
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* YouTube Music */
.btn-stream.yt {
  background-color: #FF0000;
  color: white;
}

.btn-stream.yt:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.4);
}

/* Deezer */
.btn-stream.dz {
  background: linear-gradient(45deg, #ff0000, #ffed00, #00ff85, #00aaff, #a600ff);
  color: white;
}

.btn-stream.dz:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Spotify */
.btn-stream.sp {
  background-color: #1DB954;
  color: white;
}

.btn-stream.sp:hover {
  background-color: #169b45;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 155, 69, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .artist-content {
    flex-direction: column;
    text-align: center;
  }
  .artist-info {
    padding-top: 20px;
  }
}



/* Genre Section */

.genre-section {
  padding: 60px 20px;
  background-color: #fafafa; /* light neutral bg */
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111; /* deep gray/black */
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.genre-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 25px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.genre-card:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

.genre-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.genre-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.genre-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}


.story-section {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center; /* keep all content centered */
}

.story-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.story-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.story-heading {
  font-size: 1.5rem;
  margin: 25px 0 20px;
  color: #111;
}

.top10-list {
  list-style-position: inside;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: left; /* keep readability for the list */
  color: #333;
}

.top10-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.btn-readmore {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #111;
  color: #111;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-readmore:hover {
  background: #111;
  color: #fff;
}


.banner {
  background: #111; /* dark contrast */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.banner-text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-banner {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-banner:hover {
  background: #fff;
  color: #111;
}


.monthly-playlist .container {
  max-width: 800px; /* narrower, center-aligned */
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.monthly-playlist .playlist-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.track-cover img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.track-info {
  flex: 1;
  margin-left: 1rem;
  text-align: left; /* left-align text for readability */
}

.track-info .track-name {
  font-weight: 600;
  font-size: 1rem;
}

.track-info .track-artist {
  font-size: 0.85rem;
  color: #555;
}

.track-links a {
  margin-left: 0.5rem;
}