/* Hero Content Overlay */
.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-text-center {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.hero-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  color: var(--secondary-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}
