/* ============================================================================
   Hero Section Styles
   ============================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-4xl) var(--spacing-md);
}

.hero__background {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-delivery.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 600px;
  animation: slideInUp 1s ease-out;
}

/* Badge */
.badge {
  color: white;
  margin-bottom: var(--spacing-lg);
  display: inline-flex;
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-6xl);
  }
}

.hero__highlight {
  color: var(--color-secondary);
}

/* Description */
.hero__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
  line-height: 1.8;
}

/* CTA Button */
.hero__cta {
  margin-bottom: var(--spacing-4xl);
}

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.stat {
  color: white;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.stat__label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator__wheel {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__wheel::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }

  .hero__description {
    font-size: var(--font-size-base);
  }

  .scroll-indicator {
    display: none;
  }
}
