.custom-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
}

.hero-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.hero-button:hover {
  background-color: transparent;
  color: white;
}

@media (max-width: 992px) {
  .hero-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .custom-hero {
    height: 80vh;
  }
  
  .hero-subheading {
    font-size: 1.2rem;
  }
  
  .hero-heading {
    font-size: 1.8rem;
  }
  
  .hero-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .custom-hero {
    height: 70vh;
    min-height: 300px;
  }
  
  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
  }
  
  .hero-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-img {
    filter: brightness(0.8);
  }
}