.breadcrumb-hero {
  position: relative;
  width: 100%;
  height: 70vh; /* height of hero */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Image */
.breadcrumb-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover whole section */
  filter: brightness(0.5); /* darken image for text visibility */
  z-index: 0;
}

/* Hero Text */
.breadcrumb-hero .hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.breadcrumb-hero .hero-content h1 {
  font-size: 60px;
  color: #00bfff;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.breadcrumb-hero .hero-content p {
  font-size: 18px;
  color: #fff;
}

.breadcrumb-hero .hero-content p a {
  color: #00bfff;
  text-decoration: none;
}

.breadcrumb-hero .hero-content p a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-hero .hero-content h1 {
    font-size: 38px;
  }
  .breadcrumb-hero .hero-content p {
    font-size: 16px;
  }
}
