.gallery-wrapper {
    padding-bottom: 120px;
}
.gallery-wrapper .section-title {
    padding-top: 50px;
}
.photo-grid {
    display: grid;
    /* Ekran boyutuna göre otomatik olarak sütun sayısını ayarlar */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.gallery-item {
    display: block;
    aspect-ratio: 1 / 1; /* Resimlerin kare görünmesini sağlar, temiz bir görünüm için */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item::after {
    content: '\2795'; /* Büyüteç ikonu (artı) */
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white; font-size: 3rem;
    background: rgba(0,0,0,0.6);
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; /* Resmin kare alana bozulmadan sığmasını sağlar */
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
/* FancyBox Lightbox stili */
.fancybox__container {
    background: rgba(17, 17, 17, 0.95);
}