﻿/* =========================================
   FOTO GALERİ SAYFASI
========================================= */

.gallery-section {
    padding: 90px 0;
    background: #f5f8f6;
}

.gallery-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

    .gallery-header span {
        display: block;
        margin-bottom: 10px;
        color: #009750;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .gallery-header h2 {
        margin-bottom: 16px;
        font-size: 38px;
        font-weight: 800;
        color: #1b1b1b;
    }

    .gallery-header p {
        color: #727272;
        line-height: 1.8;
    }
/* =========================================
   HAREKETLİ FOTOĞRAF GALERİSİ
========================================= */

.gallery-slider {
    width: 100%;
    overflow: hidden;
    padding: 12px 0 28px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: gallery-scroll 32s linear infinite;
    will-change: transform;
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-group {
    display: flex;
    gap: 25px;
    padding-right: 25px;
}

.gallery-card {
    flex: 0 0 clamp(240px, 22vw, 330px);
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .30s;
}

    .gallery-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
        transition: .35s;
    }

    .gallery-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

        .gallery-card:hover img {
            transform: scale(1.05);
        }

@keyframes gallery-scroll {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* =========================================
   BOŞ GALERİ
========================================= */

.gallery-empty {
    background: white;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.gallery-empty-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #009750;
    font-size: 30px;
}

.gallery-empty h3 {
    margin-bottom: 12px;
    font-size: 25px;
    font-weight: 700;
}

.gallery-empty p {
    color: #707070;
    line-height: 1.8;
}

@media(max-width:576px) {

    .gallery-section {
        padding: 65px 0;
    }

    .gallery-header {
        margin-bottom: 35px;
    }

        .gallery-header h2 {
            font-size: 31px;
        }

    .gallery-group {
        gap: 16px;
        padding-right: 16px;
    }

    .gallery-card {
        flex-basis: 250px;
    }

        .gallery-card img {
            height: 290px;
        }

    .gallery-track {
        animation-duration: 24s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-slider {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .gallery-track {
        animation: none;
    }

    .gallery-group[aria-hidden="true"] {
        display: none;
    }
}
