/* === Locatii Gallery Styles === */
.locatii-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .locatii-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .locatii-gallery {
    grid-template-columns: 1fr;
  }
}
.locatii-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.locatii-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.locatii-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Stagger the fade-in */
.locatii-gallery .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.locatii-gallery .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.locatii-gallery .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.locatii-gallery .gallery-item:nth-child(4) { animation-delay: 0.2s; }
.locatii-gallery .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.locatii-gallery .gallery-item:nth-child(6) { animation-delay: 0.3s; }
.locatii-gallery .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.locatii-gallery .gallery-item:nth-child(8) { animation-delay: 0.4s; }
.locatii-gallery .gallery-item:nth-child(9) { animation-delay: 0.45s; }
.locatii-gallery .gallery-item:nth-child(10) { animation-delay: 0.5s; }
.locatii-gallery .gallery-item:nth-child(11) { animation-delay: 0.55s; }
.locatii-gallery .gallery-item:nth-child(12) { animation-delay: 0.6s; }
.locatii-gallery .gallery-item:nth-child(13) { animation-delay: 0.65s; }
.locatii-gallery .gallery-item:nth-child(14) { animation-delay: 0.7s; }
.locatii-gallery .gallery-item:nth-child(15) { animation-delay: 0.75s; }
.locatii-gallery .gallery-item:nth-child(16) { animation-delay: 0.8s; }
.locatii-gallery .gallery-item:nth-child(17) { animation-delay: 0.85s; }
/* === End Locatii Gallery === */
