/* Pozadinska slika za hero sekciju usluga */
.bg-image-services {
  background: url('../img/usluge.jpg') center center/cover no-repeat;
  min-height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.bg-image-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15); /* Svjetlija maska */
  z-index: 1;
}

.bg-image-services .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;
}

/* Stil za aktivni link u meniju */
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-item.active {
  font-weight: bold;
  text-decoration: underline;
  color: #fff !important;
}

/* Mobilna verzija */
@media (max-width: 768px) {
  .bg-image-services {
    min-height: 250px;
  }

  .bg-image-services .container {
    padding: 1rem;
  }
}
