* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* HEADER */
.header {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 10;
}

.header img {
  width: 180px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/banner-img.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK PURPLE OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at center, rgba(60,0,90,0.6), rgba(0,0,0,0.9)); */
  background: radial-gradient(circle at center, #90ff0321, rgba(0, 0, 0, 0.9));
}

/* CONTENT */
.content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  width: 90%;
}

.content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;

}

.content p {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #ccc;
}

/* CARDS */
.cards {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 480px;
  height: 260px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARD DARK GRADIENT LIKE IMAGE */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* TEXT */
.card-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  font-size: 0.95rem;
}

/* HOVER */
.card:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .header img {
    width: 130px;
}
.hero {
    height: 140vh;
}


  .card {
    width: 100%;
    max-width: 500px;
  }

  .content h1 {
    font-size: 2.2rem;
  }
}
.card-text {
    color: white;
}