/* Hero Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 60rem;
  background-image: url('../public/bg-slide-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(26, 115, 232, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  padding: 0 var(--spacing-sm);
  animation: fadeIn 1s ease-out;
}

.hero-content h2 {
  font-size: 4.5rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn-primary {
  font-size: 1.8rem;
  padding: 1.4rem 3.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 3.2rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .hero-content p {
    font-size: 1.7rem;
  }
  
  .hero {
    min-height: 50rem;
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-content p {
    font-size: 1.6rem;
  }
  
  .hero-content .btn-primary {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
}