/* Modal Genel Stilleri - Tüm Modeller İçin Kullanılabilir Şablon */

/* Genel Modal Kaplama */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

/* Genel Modal İçerik */
.modal-content2 {
    background-color: #000;
    margin: 5% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 600px;
    position: relative;
}

/* Genel Kapatma Butonu */
.modal-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-close-button:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

/* Genel Container */
.modal-container {
    text-align: center;
}

/* Genel Resim Stili */
.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Genel Alıntı Bölümü */
.modal-quote {
    background-color: #000;
    padding: 20px;
}

.modal-quote-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-quote-text {
        font-size: 14px;
        padding: 15px;
    }
    
    .modal-close-button {
        top: 8px;
        right: 8px;
        font-size: 20px;
        width: 25px;
        height: 25px;
    }
    
    /* Atatürk modal responsive stilleri */
    .atatürk-quote {
        padding: 15px;
    }
    
    .atatürk-quote .quote-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 0 auto;
    }
    
    .modal-quote-text {
        font-size: 13px;
        padding: 10px;
    }
    
    /* Atatürk modal mobil stilleri */
    .atatürk-quote {
        padding: 10px;
    }
    
    .atatürk-quote .quote-text {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Atatürk Modalı Özel Stilleri */
#ataturk-modal {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

#ataturk-modal .modal-content {
    /* Atatürk modalına özel stiller buraya eklenebilir */
}

#ataturk-modal .modal-image {
    /* Atatürk resmi özel stilleri */
    border: 2px solid rgba(83, 252, 24, 0.3);
}

#ataturk-modal .modal-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    border-color: rgba(83, 252, 24, 0.5);
}

#ataturk-modal .modal-quote-text {
    /* Atatürk alıntısı özel stilleri */
}

/* Atatürk Quote Container Stilleri */
.atatürk-quote {
    width: 100%;
    padding: 20px;
    background-color: #000;
    text-align: center;
}

.atatürk-quote .quote-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.atatürk-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.atatürk-image-container {
    width: 100%;
    text-align: center;
}

.atatürk-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Diğer Modeller İçin Örnek ID'ler */
#memorial-modal .modal-content { /* Memorial modalı özel stilleri */ }
#rewarded-ad-modal .modal-content { /* Ödüllü modalı özel stilleri */ }
#custom-modal .modal-content { /* Özel modal stilleri */ }
