/* Header component */

/* Mobile First Styling */
.hero {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--text-white-color);
  text-align: center;
  padding: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.875rem;
}

.home__breadcrumb a {
  color: var(--text-white-color);
  transition: 1s ease;
}

.home__breadcrumb a:hover {
  margin-right: 10px;
  color: var(--secondary-color);
}

.breadcrumb i {
  margin-right: 6px;
}

.chevron i {
  font-size: 0.7rem;
}

.breadcrumb span:last-child {
  color: var(--accent-color);
  margin-left: 8px;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .hero {
    height: 300px;
  }

  .hero-content h2 {
    font-size: 2.3rem;
  }

  .breadcrumb {
    font-size: 1rem;
  }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .chevron i {
    font-size: 0.9rem;
  }
}
