.gallery {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;  
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

h1{
  font-family: 'Barlow Condensed', sans-serif;  
  font-size: 60px;  
  color: #84152A;
  font-style: italic;
  transform: skew(10deg);
  margin:100px;
  text-align: center;
}

.fancybox__caption {
  display: none !important;
}

/* Velika galerija */

.gallery-section {
  background-image: url('galerija/pat.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1rem; /* da ne lepi slike uz ivice */
}


.gallery-item {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
