/* Fotoğraf Galerisi Sayfası Stilleri */

.fotograf-galeri-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.fotograf-galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fotograf-galeri-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.fotograf-galeri-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fotograf-galeri-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background-color: #f0f0f0;
}

.fotograf-galeri-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fotograf-galeri-item:hover .fotograf-galeri-image {
    transform: scale(1.1);
}

.fotograf-galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 41, 80, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotograf-galeri-item:hover .fotograf-galeri-overlay {
    opacity: 1;
}

.fotograf-galeri-icon {
    width: 60px;
    height: 60px;
    background-color: #c00e0e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.fotograf-galeri-item:hover .fotograf-galeri-icon {
    transform: scale(1);
}

.fotograf-galeri-caption {
    padding: 20px;
    background-color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fotograf-galeri-caption h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2950;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.fotograf-galeri-date {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fotograf-galeri-date i {
    color: #c00e0e;
    font-size: 12px;
}

.fotograf-galeri-empty {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fotograf-galeri-empty i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.fotograf-galeri-empty p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fotograf-galeri-section {
        padding: 60px 0;
    }
    
    .fotograf-galeri-image-wrapper {
        padding-top: 100%; /* 1:1 aspect ratio on mobile */
    }
    
    .fotograf-galeri-caption {
        padding: 15px;
    }
    
    .fotograf-galeri-caption h4 {
        font-size: 16px;
    }
    
    .fotograf-galeri-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fotograf-galeri-section {
        padding: 40px 0;
    }
    
    .fotograf-galeri-caption {
        padding: 12px;
    }
    
    .fotograf-galeri-caption h4 {
        font-size: 15px;
    }
    
    .fotograf-galeri-empty {
        padding: 60px 20px;
    }
    
    .fotograf-galeri-empty i {
        font-size: 48px;
    }
    
    .fotograf-galeri-empty p {
        font-size: 16px;
    }
}




