html {
  scroll-behavior: smooth;
}


html, body {
  overflow-x: hidden;
}


body {
  padding-top: 70px;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
}

section {
  scroll-margin-top: 70px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

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

#gallery img,
#products img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.img-container {
  height: 280px;
  position: relative;
}

.img-container img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-container:hover img {
  transform: scale(1.05);
}

.img-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.img-container:hover .overlay {
  opacity: 1;
}
.navbar-logo {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Čisto za pixel-perfect: */
  display: block;
  width: 60px;
  height: 60px;
  fill: #f0a500; /* Narandžasto-žuta boja za logo */
}

.navbar-logo:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px #f0a500);
  fill: #ffc107; /* Svetlija žuta na hover */
}
