/* Foto Galeri Kartları CSS */

/* Ana galeri kartı - büyük kart */
.main-gallery-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-gallery-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.main-gallery-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Küçük galeri kartları */
.featured-galleries .col-md-4 .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.featured-galleries .col-md-4 .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Galeri sidebar */
.gallery-sidebar {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gallery-title {
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.gallery-title h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.gallery-list-item {
    transition: transform 0.2s ease, background-color 0.2s ease;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-list-item:hover {
    transform: translateX(3px);
    background-color: rgba(220, 53, 69, 0.05);
}

.gallery-list-item a {
    text-decoration: none;
    color: #212529;
    padding: 5px;
    display: flex;
    align-items: center;
}

.gallery-thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-info {
    flex: 1;
}

/* Overlay efektleri */
.featured-galleries .position-relative::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.featured-galleries .card:hover .position-relative::after {
    opacity: 0.9;
}

.featured-galleries .fas.fa-images {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.featured-galleries .card:hover .fas.fa-images {
    transform: scale(1.2);
    opacity: 1;
}

/* Responsive ayarlamalar */
@media (max-width: 767.98px) {
    .main-gallery-card .card-img-top {
        height: 250px !important;
    }
    
    .featured-galleries .col-md-4 .card-img-top {
        height: 140px !important;
    }
}
