/* css/modal.css */

/* ==========================================================================
   1. STYLES DU POP-UP (MODALE)
   ========================================================================== */

.modal-overlay {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fond noir transparent */
    z-index: 1000; 
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    box-sizing: border-box;
    padding: 0; 
    display: block !important;
}

/* 1.1 En-tête (Titre et 'X') */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb; /* La ligne de séparation */
}
.modal-header h3 {
    margin: 0;
    color: #374151; /* Couleur en dur (indépendant du thème) */
    font-size: 1.25rem;
    font-weight: 600;
}
.modal-close {
    position: static;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding-left: 16px;
}
.modal-close:hover {
    color: #333;
}

/* 1.2 Corps (Vidéo/Image + Description) */
.modal-body {
    padding: 24px;
}
.modal-body .video-container {
    margin-top: 0;
    border-radius: 8px; 
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.modal-body .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-body img {
    margin-top: 0;
    border-radius: 8px;
    width: 100%;
    height: auto;
}
.modal-description {
    font-size: 0.95rem;
    color: #6B7280; /* Couleur en dur (indépendant du thème) */
    line-height: 1.5;
    margin-top: 20px; 
    margin-bottom: 0;
}

/* 1.3 Pied de page (Bouton 'Fermer') */
.modal-footer {
    padding: 16px 24px;
    background: #f9fafb; 
    border-top: 1px solid #e5e7eb; 
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: right; 
}

/* * Style par défaut pour le bouton "Fermer". 
 * S'il est utilisé sur un site Kadence/Elementor, 
 * la classe .wp-element-button surchargera probablement
 * celle-ci, ce qui est parfait.
*/
.modal-close-btn {
    background-color: #2563EB; /* Bleu par défaut */
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
}
.modal-close-btn:hover {
    background-color: #1d4ed8;
    color: #fff;
}