/* Single Hero Section Styles */
body .hero-section-container,
.hero-section-container.hero-section-container,
#hero-section.hero-section-container,
#hero-section {
  height: 70vh !important;
  min-height: 600px !important;
  max-height: none !important;
  display: block !important;
  margin-top: 0 !important;
}

/* Force hero wrapper height */
body .hero-wrapper,
.hero-wrapper.hero-wrapper,
#hero-section .hero-wrapper {
  height: 100% !important;
  min-height: 100% !important;
  position: relative !important;
  overflow: visible !important;
}

/* Mobile responsive override */
@media (max-width: 768px) {
  body .hero-section-container,
  .hero-section-container.hero-section-container,
  #hero-section {
    height: 70vh !important;
    min-height: 450px !important;
  }
}

/* Force hero content visibility */
#hero-section img,
#hero-section .hero-wrapper img {
  object-fit: cover;
  object-position: center center;
}

#hero-section .gradient-text {
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Force elements to be visible on top of any potential conflicts */
#hero-section .absolute {
  z-index: 5 !important;
}

#hero-section .hero-content {
  z-index: 10 !important;
}

/* Make sure buttons are visible */
#hero-section .btn-modern,
.hero-section-container .btn-modern {
  display: inline-block;
  background-color: #0099ff;
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

#hero-section .btn-secondary,
.hero-section-container .btn-secondary {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}
