:root {
  --font-heading: "Special Elite", system-ui;
  --font-body: "Courier Prime", monospace;
}

/* BODY */
body {
  margin: 0;
  font-family: var(--font-body);
  background: #a69c8e;
  color: #ecebe7;
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.hero {
  text-align: center;
  padding: 200px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/taylor-swift.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ecebe7;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 96px;
  margin: 0 0 30px;
  line-height: 1;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  margin: 0 0 20px;
  font-weight: 400;
}

.hero p {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 50px;
}

.hero a {
  display: inline-block;
  font-size: 24px;
  padding: 15px;
  background: #ecebe7;
  border-radius: 50%;
  color: #26211c;
  box-shadow: 0 0 10px #edece8, 0 0 20px #edece8, 0 0 30px #edece8, 0 0 40px #edece8;
  transition: transform 0.3s;
}

.hero a:hover {
  transform: translateY(5px);
}

/* SECTION GENERAL */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* WHY TAYLOR GRID */
.why-taylor .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-taylor .why-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.why-taylor .why-text h2 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #26211d;
  opacity: 0.3;
  margin-bottom: 15px;
}

.why-taylor .why-text h3 {
  font-weight: 700;
  font-size: 40px;
  color: #26211d;
  margin-bottom: 20px;
}

.why-taylor .why-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #26211d;
  opacity: 0.7;
}

/* FAVORITE SONGS CARDS */
.favorite-songs {
  text-align: center;
}

.favorite-songs h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 50px;
  color: #26211d;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.song-card {
  background: #ecebe7;
  color: #26211d;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.song-card img {
  width: 100%;
  height: 250px; /* consistent height */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.song-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 10px;
}

.song-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

.song-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/footer.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.footer-grid a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .why-taylor .why-grid {
    grid-template-columns: 1fr; /* stack columns on small screens */
    gap: 40px;
  }

  .why-taylor .why-text h3 {
    font-size: 28px;
  }

  .favorite-songs h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .songs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .song-card h3 {
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}