/* Hero section styles */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(4, 9, 51, 0.7), rgba(4, 9, 51, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 var(--spacing-xl);
  color: var(--white);
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  font-size: 4rem;
  line-height: 1.1;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content h1 {
  animation: fadeInUp 1s ease forwards;
}

.hero-content p {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-content .btn-primary {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  
  .hero-content {
    padding: 0 var(--spacing-lg);
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}