﻿/* =====================================================
   LAMEI PROMO BANNER
   ===================================================== */

.lamei-promo-banner {
    position: relative;
    width: 100%;
    background: linear-gradient( 135deg, #0A192F 0%, #152b4d 100% );
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    overflow: hidden;
    isolation: isolate;
    /* Keeps it above normal header/content elements */
    z-index: 1000;
}


/* =====================================================
   CONTENT CONTAINER
   ===================================================== */

.lamei-promo-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   LINK
   ===================================================== */

.lamei-promo-banner .lamei-banner-link {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 20px;
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .lamei-promo-banner .lamei-banner-link:hover {
        color: #ffffff !important;
        text-decoration: none !important;
        transform: scale(1.01);
    }


/* =====================================================
   TEXT
   ===================================================== */

.lamei-promo-banner .lamei-banner-text {
    position: relative;
    z-index: 4;
    display: inline-block;
    color: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: var(--bs-body-font-family)
}


/* =====================================================
   ICON
   ===================================================== */

.lamei-promo-banner .lamei-banner-icon {
    position: relative;
    z-index: 4;
    display: inline-block;
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
    animation: lamei-banner-pulse 2.5s ease-in-out infinite;
}


/* =====================================================
   SHINE EFFECT
   ===================================================== */

.lamei-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.30) 50%, rgba(255, 255, 255, 0.05) 80%, rgba(255, 255, 255, 0) 100% );
    transform: skewX(-25deg);
    filter: blur(4px);
    animation: lamei-banner-shine 5.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes lamei-banner-shine {

    0% {
        left: -150%;
    }

    55% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}


@keyframes lamei-banner-pulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 768px) {

    .lamei-promo-inner {
        padding: 0 10px;
    }

    .lamei-promo-banner .lamei-banner-link {
        min-height: 48px;
        padding: 7px 10px;
        gap: 7px;
        font-size: 14px;
    }

    .lamei-promo-banner .lamei-banner-icon {
        font-size: 19px;
    }
}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

    .lamei-promo-banner .lamei-banner-link {
        font-size: 13px;
    }

    .lamei-promo-banner .lamei-banner-icon {
        font-size: 17px;
    }
}
