.songs-page {
  width: 100vw;
  min-height: 100vh;
  background-color: #ffe6f0;
  background-image: url('images/songs-bg.png'); /* optional Valentine/music texture */
  background-size: cover;
  background-position: center;
  font-family:'great vibes';
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Back button */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 160, 200, 0.8);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.back-button:hover {
  background: rgba(255, 160, 200, 1);
}

/* Heading */
.songs-page h1 {
  color: #ff3c82;
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

/* Song grid */
.song-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1000px;
}

/* Song card */
.song-card {
  background: rgba(255, 160, 200, 0.85);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255,100,150,0.6);
}

.song-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
}

.song-card h3 {
  margin: 6px 0 4px 0;
  color: #fff;
  font-size: 18px;
}

.song-card p {
  font-size: 14px;
  color: #fff;
}
