/* =========================================
   AZARA TALENT PROMO BANNER STYLES
   ========================================= */

/* The Overlay (Background) */
.promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000; /* Above everything, including chatbot */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* The Popup Box */
.promo-box {
    background: #0a0a0a;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border: 1px solid var(--primary); /* Gold Border */
    text-align: center;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

/* Animation State: Active */
.promo-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-overlay.active .promo-box {
    transform: translateY(0) scale(1);
}

/* Content Styling */
.promo-box h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-box p {
    color: #E0E0E0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* The Button */
.promo-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #000;
    padding: 12px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: all 0.3s;
}

.promo-btn:hover {
    background-color: transparent;
    color: var(--primary);
    cursor: pointer;
}

/* Close Icon */
.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.promo-close:hover {
    color: var(--primary);
}