.hero-banner {
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: flex;
  max-width: 100%;
  height: 100%;
}

.hero-text {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Text in center, icons at bottom */
  padding: 40px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.text-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-row p {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
}

.hero-text h1 {
  margin-top: 20px;
  font-size: 4rem;
  text-align: center;
}

.hero-text h2 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  margin-top: 30px;
  color: black;
  background-color: rgba(255, 255, 255, 0.766);
  padding: 10px;
  text-transform: uppercase;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-social a {
  color: #ccc;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-social a:hover {
  color: #fff;
}

.hero-image {
  width: 66.66%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay for readability */
    z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
     height: 70%;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .text-row {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-social {
    margin-top: 20px;
  }
}

.hero-social a {
  color: #ccc;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Social brand colors on hover */
.hero-social a[aria-label="Spotify"]:hover {
  color: #1DB954; /* Spotify green */
}

.hero-social a[aria-label="Instagram"]:hover {
  color: #E1306C; /* Instagram pink */
}

.hero-social a[aria-label="YouTube"]:hover {
  color: #FF0000; /* YouTube red */
}