.hero-banner {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Główne tło jako obraz hero */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Efekt fade-in po załadowaniu */
.hero-image[data-loaded="true"] {
  opacity: 1;
}

/* Ciemna warstwa przyciemnienia */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Treść hero */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-light, #fff);
}

.hero-line-1 {
  letter-spacing: 2px;
}

.hero-line-2 {
  color: var(--color-accent, #d49d4c);
  letter-spacing: 2px;
}

.hero-line-4 {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 300;
}

.button-holder {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .hero-text {
    max-width: 80%;
    margin: auto;
  }
}
