﻿.foto-bolum {
    background-color: #1e1e1e; /* koyu arka plan */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

    .foto-bolum h3 {
        color: white;
        font-weight: bold;
        margin-bottom: 25px;
        font-size: 22px;
    }

.foto-galeri {
    display: flex;
    justify-content: center; /* yatay hizalama */
    align-items: center; /* dikey hizalama */
    gap: 25px; /* aralık */
    flex-wrap: nowrap; /* yan yana sabit kalsın */
}

    .foto-galeri img {
        width: 350px; /* sabit genişlik */
        height: 220px; /* sabit yükseklik */
        object-fit: cover; /* oran koruyarak kırp */
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.6);
        transition: transform 0.3s ease;
    }

        .foto-galeri img:hover {
            transform: scale(1.05);
        }
