/* GLOBAL STYLES */
body {
  margin: 0;
  padding: 0;
  font-family: 'Archivo', sans-serif;
  background: linear-gradient(to bottom, #363b5c, #141414);
  color: #feffe0;
  text-align: center;
}

/* HERO SECTION */
.hero {
  padding: 2rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .logo {
  max-width: 60vw;
  height: auto;
}

.tagline {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 0.5rem;
}


.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* spacing between text and tree */
  flex-wrap: wrap;
}

.logo-text {
  max-width: 60vw;
  height: auto;
}

.logo-tree {
  max-width: 14vw;
  height: auto;
}

/* Optional scaling tweaks on larger screens */
@media (min-width: 768px) {
  .logo-text {
    max-width: 300px;
  }

  .logo-tree {
    max-width: 70px;
  }
}

/* LISTEN BUTTON */
.listen-section {
  margin: 2rem 0 1rem;
}

.listen-button {
  background-color: #222;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.listen-button:hover {
  background-color: #333;
  transform: scale(1.03);
}

/* ALBUM COVER */
.album-cover img {
  max-width: 80vw;
  height: auto;
  margin: 1rem auto 2rem;
  border-radius: 12px;
}

/* ABOUT SECTION */
.about-section {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* MERCH SECTION */
.merch-section {
  margin: 3rem 0;
}

.merch-image {
  max-width: 400px;
  width: 80%;
  height: auto;
  border-radius: 12px;
}

/* FOOTER */
.footer {
  background-color: #141414;
  padding: 2rem 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 1rem;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.social-icons a:hover img {
  opacity: 0.7;
}

/* MEDIA QUERIES */
@media screen and (min-width: 768px) {
  .hero .logo {
    max-width: 300px;
  }

  .tagline {
    font-size: 2.2rem;
  }

  .listen-button {
    font-size: 1.2rem;
  }

  .merch-image {
    max-width: 300px;
  }

  .social-icons a img {
    width: 48px;
    height: 48px;
  }
}