/* Hero v2 Component - Using Design System */

/* Hero section base styles */
.hero-v2 {
  position: relative;
  overflow: hidden;
}

/* Custom enhancements for the hero section */
.hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-v2-warm-hero);
  opacity: 0.3;
  pointer-events: none;
}

/* Button hover effects using design system */
.hero-v2 a[class*="bg-blue-600"]:hover,
.hero-v2 .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--ds-shadow-cta-hover);
  transition: all var(--transition-base);
}

.hero-v2 a[class*="bg-white"]:hover,
.hero-v2 .btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

/* Image enhancements */
.hero-v2 img {
  transition: transform var(--transition-base);
}

.hero-v2 img:hover {
  transform: scale(1.02);
}

/* Typography enhancements using design system */
.hero-v2 h1 {
  background: linear-gradient(135deg,
    var(--ds-text-heading) 0%,
    var(--ds-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge animation */
.hero-v2 span[class*="rounded-full"] {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive adjustments using design system */
@media (max-width: 768px) {
  .hero-v2 h1 {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
  }
}

/* Animation on scroll */
.hero-v2 [class*="order-"] {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-v2 [class*="order-1"] {
  animation-delay: 0.2s;
}

.hero-v2 [class*="order-2"] {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}