body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #ffe6eb, #ffd6e7);
  color: #2d2d2d;
  text-align: center;
  scroll-behavior: smooth;
}

/*  HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/taylor.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 180, 200, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  background: linear-gradient(90deg, #ffd6e7, #fff, #ffd1dc);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: glowSweep 6s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 240, 250, 0.4);
}

@keyframes glowSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tagline {
  font-size: 1rem;
  color: #fff;
  margin-top: 1rem;
}

/*  BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ffb6c1, #ff8fcf);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 150, 210, 0.5);
  transition: all 0.4s ease;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 140, 200, 0.8), 0 0 45px rgba(255, 170, 220, 0.6);
  background: linear-gradient(90deg, #ff99cc, #ff66b3);
}

/*  SECTIONS */
.section {
  padding: 6rem 10%;
  background: linear-gradient(to bottom, #ffe6eb, #ffd6e7);
  margin-bottom: 8rem;
  border-radius: 20px;
}

.section:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 80%;
  margin: 5rem auto 0;
  background: rgba(255, 200, 220, 0.4);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d184af;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  color: #8c4b63;
  margin-bottom: 2.5rem;
}

/*  GRID SONGS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.8rem;
  justify-items: center;
  margin-bottom: 3rem;
}

/*  SONG CARDS */
.card {
  background: linear-gradient(145deg, #ffc2d4, #ffb3d9);
  color: #682e45;
  padding: 40px 20px;
  border-radius: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 160px;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 160, 210, 0.6);
}

/*  SPOTIFY */
.spotify-player {
  margin-top: 3rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
}

/*  PLAYLIST LINK */
.playlist-link {
  text-align: center;
  margin-top: 3rem;
}

.playlist-link a {
  text-decoration: none;
  background: linear-gradient(90deg, #ffb6c1, #ffc0cb, #ffb6c1);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 160, 210, 0.5);
  transition: all 0.3s ease-in-out;
}

.playlist-link a:hover {
  transform: scale(1.07);
  background: linear-gradient(90deg, #ffa8c5, #ff7eb8, #ffa8c5);
  box-shadow: 0 0 30px rgba(255, 130, 200, 0.7);
}

/*  QUOTES */
.quote {
  font-style: italic;
  color: #ff77a9;
  margin-top: 1.5rem;
}

.signature {
  font-size: 0.9rem;
  color: #9a5478;
  margin-top: 0.5rem;
}

/*  FOOTER */
.footer {
  background: #d1b3d1;
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
}

.footer .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.footer .credit {
  font-size: 0.95rem;
  opacity: 0.9;
}

/*shimmer effect */
.footer strong {
  background: linear-gradient(90deg, #fff, #ffe6f2, #fff);
  background-size: 200%;

  /* add both for full compatibility */
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: shimmer 5s linear infinite;
}


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

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 80%;
    font-size: 0.95rem;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 2rem;
  }
}
