.hero {
  position: relative;
  height: 60vh;
  /* Reduced height for better look */
  min-height: 400px;
  background: linear-gradient(135deg, #fff8e1 0%, #fdfbf7 100%);
  /* Light Cream/Gold Gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
  /* Dark Text */
  text-align: center;
  overflow: hidden;
}

/* Decorative Circles instead of dark overlay */
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(106, 27, 154, 0.05);
  /* Soft Purple */
  border-radius: 50%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 900;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0;
  /* Start hidden */
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero .btn {
  opacity: 0;
  /* Start hidden */
  animation: fadeInUp 1s ease-out 1s forwards;
}