.bg-image {
  background-image: url('../img/hero.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15); /* svjetlija maska */
  z-index: 1;
}

.bg-image .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.1); /* vrlo blago zatamnjenje */
  border-radius: 1rem;
}

/* Mobilna verzija */
@media (max-width: 768px) {
  .bg-image {
    min-height: 250px;
  }

  .bg-image .container {
    padding: 1rem;
  }
}
