/* ============================================
   HERO SECTION COMPONENT - Dramatic Tech + Nature
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Let aurora show through */
  color: white;
  position: relative;
  padding-top: 0;
  width: 100%;
  max-width: 100vw;
}

/* Removed - no more grid patterns */

/* Removed - aurora ribbons are separate */

.hero__container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-2xl);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  line-height: 1.2; /* Improved line height for accessibility */
  animation: fadeInUp 0.8s ease;
  letter-spacing: 0; /* Remove negative spacing for accessibility */
  color: #FFFFFF;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem); /* Minimum 18px */
  color: rgba(255, 255, 255, 0.98); /* Higher contrast */
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.7; /* Improved line height */
  animation: fadeInUp 0.8s ease 0.2s both;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero stats removed for cleaner design - stats now only in dedicated section below */

/* Responsive */
@media (max-width: 768px) {
  .hero__container {
    padding: var(--space-xl) var(--space-md);
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__cta .button {
    width: 100%;
    max-width: 300px;
  }
}

