/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
}

/* Parallax effect (optional - enable via JS) */
.hero-section.parallax img {
  transform: translateY(var(--scroll-offset, 0));
  will-change: transform;
}

/* Hero image loading state */
.hero-section img {
  transition: opacity 0.5s ease;
}

.hero-section img[data-loading="true"] {
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-section {
    min-height: 350px;
    max-height: 500px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-section .animate-bounce,
  .hero-section .animate-pulse {
    animation: none;
  }
}
