/* ==========================
   Footer
========================== */

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
}

.footer-left p,
.footer-right p {
    margin: 0;
}

.footer-center {
    gap: 8px;
}

.footer-center a {
    color: #ffffff;
    text-decoration: none;
    transition: color .3s;
}

.footer-center a:hover {
    color: #f5c542;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all .3s ease;
}

.footer-social a:hover {
    color: #f5c542;
    transform: scale(1.15);
}

.footer-right {
    font-weight: 500;
}

/* Responsive */

@media (max-width: 900px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        flex-wrap: wrap;
        justify-content: center;
    }

}