/* ============================================
   GALERİ İYİLEŞTİRMELERİ
   ============================================ */

/* Galeri Kartları - Modern Tasarım */
.gallery-list .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 1px solid #e5e7eb;
}

.gallery-list .gallery-item:hover {
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    transform: translateY(-6px);
    border-color: #667eea;
}

.gallery-list .gallery-item .img,
.gallery-list .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-list .gallery-item:hover .img,
.gallery-list .gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-list .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

.gallery-list .gallery-item .plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-list .gallery-item:hover .plus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-list .gallery-item .plus i {
    color: white;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-list .gallery-item .img,
    .gallery-list .gallery-item img {
        height: 220px;
    }
    
    .gallery-list .gallery-item .plus {
        width: 60px;
        height: 60px;
    }
    
    .gallery-list .gallery-item .plus i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .gallery-list .gallery-item .img,
    .gallery-list .gallery-item img {
        height: 180px;
    }
}
