@charset "UTF-8";
body {
  font-family: 'Inter', sans-serif;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-brand img {
  width: 50px;
}
.hero {
  position: relative;
  background: url('../themes/finstroj/assets/img/heroBG.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* polopriehľadná čierna */
  pointer-events: none;
  /* aby overlay nebránil interakcii */
  z-index: 1;
}
/* text vo vnútri .hero musí mať vyššie z-index než overlay */
.hero > * {
  position: relative;
  z-index: 2;
}
.dark-bg {
  background: #2b2a29;
  color: white;
}
#gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-postion: center;
}
