/*
========================
    PORTFOLIO FOOTER
========================
*/
.port-footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 40px 30px;
    margin-top: 0;
}

.port-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.port-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.port-footer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    font-family: "Outfit", sans-serif;
}

.port-footer-tagline {
    font-size: 0.78rem;
    color: #00C896;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.port-footer-nav {
    display: flex;
    gap: 28px;
}

.port-footer-nav a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.port-footer-nav a:hover {
    color: #00C896;
}

.port-footer-social {
    display: flex;
    gap: 14px;
}

.port-footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
}

.port-footer-social a:hover {
    border-color: #00C896;
    color: #00C896;
}

.port-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.port-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.port-footer-credit a {
    color: #00C896;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.port-footer-credit a:hover {
    opacity: 0.7;
}

/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .port-footer {
        padding: 40px 16px 24px;
    }

    .port-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .port-footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .port-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .port-footer {
        padding: 48px 24px 28px;
    }

    .port-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .port-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .port-footer {
        padding: 52px 30px 28px;
    }

    .port-footer-container {
        gap: 24px;
    }
}