.hero {
  height: 100vh;
  width: 100%;
  background: url("/assets/pv/book/launch.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.6),
    rgba(245,158,11,0.15)
  );
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: white;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero h1 span {
  color: #f59e0b;
}

.hero p {
  font-size: 16px;
  color: #d1d1d1;
  max-width: 650px;
  margin: 0 auto 25px auto;
}



.primary-btn {
  padding: 12px 22px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  color: black;
  transition: 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  color: #f59e0b;
  cursor: pointer;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: #f59e0b;
  color: black;
}

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

.hero-stats h3 {
  color: #f59e0b;
  font-size: 20px;
}

.hero-stats p {
  font-size: 12px;
  color: #aaa;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
}