/* Luxury Launch Popup */
#luxury-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    /* Darker overlay */
    backdrop-filter: blur(8px);
    /* Glassmorphism blur */
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#luxury-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #1C1C1C;
    /* Dark background */
    padding: 3.5rem 4rem;
    max-width: 600px;
    /* Slightly wider */
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    transform: scale(0.95);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    /* For close button positioning */
}

#luxury-popup.active .popup-content {
    transform: scale(1);
}

.popup-logo {
    max-width: 280px;
    /* Bigger logo */
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
    height: 170px;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.popup-text {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #F6F4EF;
    /* Light text */
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.03em;
}

/* Close Button */
#popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

#popup-close-btn:hover {
    color: #C6A75E;
    /* Accent color on hover */
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .popup-content {
        padding: 3rem 2rem;
        width: 85%;
    }

    .popup-logo {
        max-width: 200px;
        /* Adjusted for mobile */
        margin-bottom: 2rem;
    }

    .popup-text {
        font-size: 1.25rem;
    }

    #popup-close-btn {
        top: 10px;
        right: 10px;
        font-size: 1.75rem;
    }
}