.gallery-item {
  transition: transform 0.3s ease; /* Hareketin yumuşak olması için */
  background-color: #f8f9fa;
  height: 250px;           
  overflow: hidden;        
  display: flex;           
  flex-direction: column;  /* Resim ve açıklama üst üste */
  align-items: center;     
  justify-content: center; 
  border: 1px solid #ddd;  /* Çerçeveniz için */
  border-radius: 8px;      /* Kenar yuvarlatma */
}

/* Hover efekti: Kutu genelinde yukarı hareket */
.gallery-item:hover {
  transform: translateY(-10px); /* Yukarı kalkma miktarı */
  border-color: #007bff !important; 
}

/* Resim ayarı */
.gallery-item img {
  width: 100%;
  height: 180px;           
  object-fit: cover;       
}

/* Açıklama ayarı */
.gallery-item .desc {
  height: 70px;            
  display: flex;
  align-items: center;     
  justify-content: center; 
  width: 100%;
  padding: 5px;
  font-weight: bold;
}