/**
 * Styles pour la pop-up d'information de fermeture pour les fêtes
 */

/* Overlay */
.holiday-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.holiday-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Pop-up */
.holiday-popup {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid #d4af37;
}

.holiday-popup-overlay.active .holiday-popup {
    transform: scale(1);
}

/* Bouton de fermeture */
.holiday-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.holiday-popup-close:hover {
    background-color: #f8f9fa;
    color: #dc3545;
    transform: rotate(90deg);
}

/* Icône */
.holiday-popup-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.holiday-popup-icon svg {
    width: 64px;
    height: 64px;
    color: #d4af37;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Contenu */
.holiday-popup-content {
    text-align: center;
}

.holiday-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1.25rem 0;
    font-family: 'Noto Serif', serif;
    letter-spacing: -0.5px;
}

.holiday-popup-message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 576px) {
    .holiday-popup {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .holiday-popup-title {
        font-size: 1.5rem;
    }
    
    .holiday-popup-message {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .holiday-popup-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* Animation optionnelle pour l'icône */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.holiday-popup-overlay.active .holiday-popup-icon svg {
    animation: pulse 2s ease-in-out infinite;
}
