﻿.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center; /* Yatay ortala */
    align-items: center; /* Dikey ortala */
}

    .img-modal img {
        height: 100vh; /* Ekran yüksekliği kadar */
        width: auto; /* Oranı koru */
        object-fit: contain; /* Orantılı sığdır */
        margin: auto; /* Ortaya hizala */
    }

    .img-modal .close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }

    .img-modal img.zoomed {
        transform: scale(2); /* 2 kat büyüt */
        cursor: zoom-out;
    }

.row-fill-img {
    width: 100%;
    height: 100%; /* Row’un yüksekliğini tamamen kapla */
    object-fit: cover; /* Keserek doldurur */
}

