/* Hero section styles */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/wing-plane-flying-airplane-62623.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding-top: 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--white);
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--secondary-color);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: var(--gray-200);
  margin-top: 4px;
  display: block;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 24px;
  }
}