/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0b0818;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 8, 24, 0.6),
    rgba(11, 8, 24, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 48px;
  max-width: 900px;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 14px 36px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

/* CARDS */
.cards {
  display: flex;
  gap: 32px;
  padding: 100px 80px;
}

.card {
  background: #141028;
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-text {
  padding: 24px;
}

.card-text h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.card-text p {
  opacity: 0.8;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-overlay h1 {
    font-size: 32px;
  }

  .cards {
    flex-direction: column;
    padding: 60px 24px;
  }

  .card img {
    height: 240px;
  }
}
