/* Galeri Sayfası Stilleri */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.gallery-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-img {
    height: 280px;
    object-position: center 40%;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 220px;
    object-position: center 40%;
  }
}
