/* Tesis Galerisi İçin Özel Stiller */
.facility-gallery {
  margin: var(--spacing-xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 200px; /* Sabit yükseklik */
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görüntüyü kırpmadan sığdır */
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--light);
  font-size: var(--font-size-xl);
  background-color: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox Özelleştirmeleri */
.lightbox {
  max-width: 800px !important;
  max-height: 600px !important;
}

.lb-image {
  max-width: 800px !important;
  max-height: 600px !important;
}
/* Lightbox görüntüsünün ortalanmasını sağlar */
.lb-image {
    display: block !important;
    margin: 0 auto !important;
    max-width: 90vw;
    height: auto;
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 180px;
  }
}
