/**
 * IMA Welcome Popup - Frontend Styles
 *
 * Elegantes, zentriertes Modal-Popup passend zum Ivana Models Design.
 */

/* Overlay */
.ima-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    
    z-index: 9999; /* Unter WordPress Admin-Bar (99999) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

/* Popup Box */
.ima-popup-box {
    position: relative;
    max-width: 480px;
    width: 90%;
    padding: 50px 40px 40px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ima-popup-overlay.ima-popup-visible .ima-popup-box {
    transform: scale(1) translateY(0);
}

/* Close Button */
.ima-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
}

.ima-popup-close:hover {
    color: #333333;
    transform: rotate(90deg);
}

/* Headline */
.ima-popup-headline {
    font-family: inherit;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    color: #333333;
}

/* Decorative Line */
.ima-popup-line {
    width: 80px;
    height: 2px;
    margin: 0 auto 25px;
    background: linear-gradient(90deg, transparent, #333333, transparent);
}

/* Text Content */
.ima-popup-text {
    font-size: 15px;
    line-height: 1.7;
    color: inherit;
    margin: 0;
}

.ima-popup-text p {
    margin: 0 0 10px 0;
}

.ima-popup-text p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .ima-popup-box {
        padding: 40px 25px 30px;
        width: 92%;
    }

    .ima-popup-headline {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .ima-popup-text {
        font-size: 14px;
    }

    .ima-popup-close {
        top: 10px;
        right: 12px;
    }
}

/* Animation für das Einblenden */
@keyframes imaPopupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hide on mobile option */
.ima-popup-hide-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .ima-popup-hide-mobile {
        display: flex !important;
    }
}
