/* ===== STYLE DU BOUTON ===== */
.btn-a-propos-lavieamulhouse {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-a-propos-lavieamulhouse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.btn-a-propos-lavieamulhouse:active {
    transform: translateY(0);
}

/* ===== STYLE DU MODAL ===== */
.modal-lavieamulhouse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-lavieamulhouse.active {
    display: flex;
}

.modal-content-lavieamulhouse {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
}

.modal-header-lavieamulhouse {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-lavieamulhouse h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-modal-lavieamulhouse {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-lavieamulhouse:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body-lavieamulhouse {
    padding: 25px;
    color: #333;
    line-height: 1.7;
}

.modal-body-lavieamulhouse h3 {
    color: #667eea;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.modal-body-lavieamulhouse p {
    margin: 12px 0;
    font-size: 15px;
}

.modal-body-lavieamulhouse ul {
    padding-left: 25px;
    margin: 15px 0;
}

.modal-body-lavieamulhouse li {
    margin: 8px 0;
    font-size: 15px;
}

.modal-body-lavieamulhouse .highlight {
    background: #f8f9ff;
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-content-lavieamulhouse {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header-lavieamulhouse h2 {
        font-size: 20px;
    }

    .modal-body-lavieamulhouse {
        padding: 20px;
        font-size: 14px;
    }

    .btn-a-propos-lavieamulhouse {
        padding: 10px 20px;
        font-size: 14px;
    }
}
