/* Hero Component */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-black);
  overflow: hidden;
}

/* Background Effects */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, 
    rgba(0, 128, 255, 0.1) 0%, 
    transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, 
    rgba(0, 82, 136, 0.1) 0%, 
    transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--size-hero);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  background: linear-gradient(180deg, 
    var(--color-white) 0%, 
    var(--color-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 1s ease-out;
}

.hero-subtitle {
  font-size: var(--size-h3);
  color: var(--color-silver-light);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  animation: fadeIn 1.2s ease-out;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.4s ease-out;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-silver);
  border-radius: 25px;
  position: relative;
  display: block;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: var(--color-blue);
  border-radius: 2px;
  animation: scroll-animation 2s infinite;
}

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

@keyframes scroll-animation {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Feature Hero (for inner pages) */
.hero-feature {
  min-height: 60vh;
  padding-top: 100px;
}

.hero-feature .hero-title {
  font-size: var(--size-h1);
}

/* Hero with Background Image */
.hero-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-image::before {
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.9) 100%);
}

/* Animated Background Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: var(--color-blue);
  opacity: 0.5;
  animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
  from {
    transform: translateY(100vh) translateX(0);
  }
  to {
    transform: translateY(-100px) translateX(100px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
  }
}