/* ==========================================
   PREMIUM FOOTER
========================================== */

.site-footer{

    width:100%;

    margin-top:80px;

    background:var(--header-bg);

    backdrop-filter:blur(18px);

    border-top:1px solid rgba(255,255,255,.08);

    border-radius:32px 32px 0 0;

    box-shadow:
        0 -8px 35px rgba(0,0,0,.18);

}

.footer-content{

    max-width:1400px;

    margin:auto;

    padding:28px 20px;

    text-align:center;

}

.footer-text,
.footer-credit{

    margin:0;

    font-size:15px;

    line-height:1.9;

    font-weight:600;

    letter-spacing:.4px;

}

.footer-credit{

    font-size:16px;

}

.footer-credit span{

    font-weight:700;

}

.shimmer-text{

    background:linear-gradient(
        90deg,
        #b8860b 0%,
        #f5c542 20%,
        #fff6bf 40%,
        #f5c542 60%,
        #b8860b 100%
    );

    background-size:250% auto;

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:footerShine 5s linear infinite;

}

@keyframes footerShine{

    from{

        background-position:-250% center;

    }

    to{

        background-position:250% center;

    }

}