/* Genel Foto Galeri Düzeni */
.photo-gallery {
    padding-top: 100px;
    text-align: center;
    padding-bottom: 2rem;
    background: linear-gradient(160deg, #3c3b3b 0%, #3c3b3b 100%);
}
.photo-gallery h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ffffff;
}
/* Izgara düzeni */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery img {
    width: 100%;
    height: 200px; /* ya da istediğin sabit bir yükseklik */
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .gallery { gap: 1rem; }
}
/* Lightbox */
#lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
}
.lightbox-content {
    display: block;
    margin: 15vh auto 0;
    max-width: 80%; max-height: 80%;
}
#lightbox .close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2.5rem; font-weight: bold;
    color: #fff; cursor: pointer;
    transition: color 0.3s;
}
#lightbox .close:hover {
    color: orange;
}
