/* ========================================= */
/* POPUP – MODERNES OVERLAY + ANIMATION      */
/* ========================================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: popupFadeIn 0.35s ease-out;
}
.popup-box h3 {
    color: #C97A2A;      /* warmes, dunkles Goldbraun – perfekt lesbar */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-box p {
    color: #4A2E1A;      /* dunkles Braun – sehr guter Kontrast */
    font-size: 16px;
    margin-bottom: 20px;
}
.popup-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.popup-btn:hover {
    background: #005fa3;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}