/* Overlay de la modal */
.reservation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999999;
}

/* Container de la modal */
.reservation-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease;
}

/* Animation d'entrée */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Bouton fermer */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Titre de la modal */
.modal-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 10px 0;
    color: #333;
    letter-spacing: 1px;
}

/* Sous-titre */
.modal-subtitle {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin: 0 0 40px 0;
    font-weight: 400;
}

/* Container des boutons */
.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Boutons de choix */
.modal-btn {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.modal-btn:hover {
    border-color: #8B7355;
    background: #fafafa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.15);
}

/* Icône du bouton */
.btn-icon {
    font-size: 32px;
    line-height: 1;
    display: block;
}

/* Texte du bouton */
.btn-text {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .reservation-modal {
        padding: 40px 25px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 20px;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .btn-icon {
        font-size: 24px;
    }
}