/**
 * NumeraIQ Hero Section Styles
 * Matching React Hero.tsx exactly
 */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Video - matching React exactly:
   width: 100vw, height: 120vh, objectFit: cover, objectPosition: center -10vh
*/
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  object-fit: cover;
  object-position: center -10vh;
  z-index: 0;
}

/* Content wrapper - matches React: relative z-10 container mx-auto px-6 lg:px-12 */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Inner container - matches React: max-w-5xl */
.hero-inner {
  max-width: 64rem; /* max-w-5xl = 64rem */
}

/* Hero headline styling - line-height: 1.15 from React */
.hero-section .headline-hero {
  line-height: 1.15;
  color: hsl(var(--dark));
}

/* Lime highlight - matching React: bg-lime text-dark px-3 py-1 inline-block mt-2 */
.highlight-lime {
  display: inline-block;
  background-color: hsl(var(--lime));
  color: hsl(var(--dark));
  padding: 0.25rem 0.75rem;
  margin-top: 0.5rem;
}

/* Button dark - matching React:
   px-6 py-3 bg-dark text-cream font-semibold text-sm tracking-wide hover:bg-dark/90
*/
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: hsl(var(--dark));
  color: hsl(var(--cream));
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-dark:hover {
  background-color: hsl(var(--dark) / 0.9);
}

/* Scroll indicator - matching React:
   absolute bottom-12 left-1/2 -translate-x-1/2
   animate y [0, 8, 0], duration 1.5s, infinite
*/
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Scroll mouse - matching React:
   w-6 h-10 border-2 border-dark/30 rounded-full flex justify-center pt-2
*/
.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--dark) / 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* Scroll wheel - matching React: w-1 h-2 bg-dark/50 rounded-full */
.scroll-wheel {
  width: 0.25rem;
  height: 0.5rem;
  background-color: hsl(var(--dark) / 0.5);
  border-radius: 9999px;
}

/* Bounce animation matching React: animate y [0, 8, 0] */
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 100svh; /* Use svh for better mobile support */
  }
}
