﻿/* =====================================
   FOOTER
===================================== */
/* =====================================
   PREMIUM FOOTER
===================================== */

.footer {
    background: linear-gradient( 135deg, #020617, #0f172a, #1e293b);
    padding: 35px 0;
    margin-top: 60px;
    color: white;
    border-top: 3px solid rgba(255,255,255,.08);
}

.footer-logo {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
}

    .footer-logo span {
        color: #facc15;
    }

.footer-copy {
    color: #cbd5e1;
    font-size: 15px;
}

.footer-dev {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,.08);
    padding: 6px 12px;
    border-radius: 30px;
    margin: 2px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    transition: .3s;
}

    .footer-link i {
        font-size: 13px;
    }

    .footer-link:hover {
        transform: translateY(-2px);
        color: white;
    }

.footer-wa {
    background: #25D366;
}

    .footer-wa:hover {
        background: #1fb857;
    }

.footer-fb {
    background: #1877F2;
}

    .footer-fb:hover {
        background: #0d65d9;
    }

/* =====================================
   DESKTOP LAYOUT
===================================== */

@media(min-width:992px) {

    .footer .col-lg-6:last-child {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;
    }

    .footer-dev {
        width: 100%;
        text-align: right;
        margin-bottom: 8px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px) {

    .footer {
        text-align: center;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-link {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 6px 0;
    }
}
