/* -------------------------------------------------------------------------- */
/* POP-UP (MODAL) PENCERE STİLLERİ - SON VERSİYON */
/* -------------------------------------------------------------------------- */

/* Modal (Pop-up) Arka Planı */
.modal {
    display: none;      /* Başlangıçta pop-up'ı gizler (JS ile "block" yapılır) */
    position: fixed;    /* Ekranın sabit bir katmanı olmasını sağlar */
    z-index: 1000;      /* Tüm öğelerin üzerinde görünür */
    left: 0;
    top: 0;
    width: 100%;        
    height: 100%;       
    overflow: auto;     
    background-color: rgba(0, 0, 0, 0.8); /* Yarı saydam siyah arka plan */
}

/* Modal İçerik Kutusu - İNCE ÇERÇEVE & KÜÇÜK BOYUT */
.modal-content {
    background-color: #fefefe;
    
    /* Dikey ve Yatayda Ortalama */
    position: relative;
    top: 50%;
    transform: translateY(-50%); 
    
    margin: 0 auto; 
    padding: 10px; /* İNCE ÇERÇEVE: Beyaz boşluğu inceltir */
    border: none; 
    border-radius: 4px; 
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); 
    
    /* BOYUTLANDIRMA: Sayfadan daha küçük bir boyut (70vmin) */
    width: auto; 
    max-width: 70vmin;  
    /* Dikey resimler için ekran yüksekliğini %90 ile sınırlar */
    max-height: 90vh; 
    
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* İçerik Animasyonu (Fade-in Efekti) */
@keyframes animatetop {
    from {top: -300px; opacity: 0} 
    to {top: 50%; opacity: 1}
}

/* Pop-up İçindeki Resim */
.modal-content img {
    display: block;
    width: 100%; 
    height: auto; /* Yüksekliği otomatik ayarlar */
    max-height: 100%; /* İçerik kutusunun yüksekliğini doldurur */
    object-fit: contain; /* Resmin orjinal oranını korur */
    border-radius: 4px; 
    margin: 0 auto;
}

/* Kapatma Düğmesi (X) */
.close-button {
    color: #ffff; /* Koyu renk (Beyaz çerçeve içinde daha görünür) */
    float: right;
    font-size: 36px; 
    font-weight: bold;
    cursor: pointer;
    
    /* Konumlandırma: Beyaz içerik kutusunun içinde, sağ üst köşe */
    position: absolute;
    top: -20px; 
    right: -20px;
    
    text-shadow: none; 
    line-height: 1; 
    z-index: 1001; /* Diğer her şeyin üstünde olduğundan emin olmak için */
}

.close-button:hover,
.close-button:focus {
    color: red;
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* MOBİL UYUMLULUK */
/* -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
    .modal-content {
        /* Mobil cihazlarda biraz daha büyük yer kaplar */
        max-width: 80vmin; 
        max-height: 85vh;
        padding: 10px; 
    }
    
    .close-button {
        top: 5px;   
        right: 15px;
        color: #555; /* Mobil için hafifçe koyu renk */
    }
}