/* Hero Section Styles */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
 
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--color-black) 0%, transparent 100%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 2;
}

.hero-content h2 {
  max-width: 1200px;
  width: 95%;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  transform: translateY(0);
  opacity: 1;
  animation: fadeSlideUp 1.2s ease-out;
  font-size: 50px;
  margin-top: 30px;
}

@keyframes fadeSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
}

.hero-subtitle {
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--color-light);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .hero-title .highlight::after {
    bottom: 8px;
  }
}