.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  margin-top: -120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 32, 0.85) 0%,
    rgba(209, 11, 21, 0.3) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
  position: absolute;
  bottom: 0;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  color: white;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.115rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.breadcrumb-section {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--text-contrast);
}

.breadcrumb-item a {
  color: var(--text-contrast);
}

.breadcrumb-item.active {
  color: var(--text-color);
}
