/* Hero section styles */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background-image: url('/img/homebg.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

.hero-title {
  font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
  font-weight: 900;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(var(--font-size-lg), 2vw, var(--font-size-2xl));
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-gray-light);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  opacity: 0.7;
  z-index: 2;
  animation: fadeInUp 2s ease infinite;
  font-size: var(--font-size-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 40px;
  margin-top: var(--space-2);
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: var(--color-white);
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 0 var(--space-4);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
}