/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 40px 20px;
}

.footer-top {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}

.footer-top .logo {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.footer-top nav {
    display: flex;
    gap: 24px;
    margin-left: 80px;
}

.footer-top nav a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-top nav a:hover {
    color: #fff;
}

.footer-top .social-icons {
    margin-left: auto;
    display: flex;
    gap: 16px;
}

footer .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

footer .social-icons a:hover {
    background: #fff;
    color: #333;
}

.bottom-bar {
    width: 100%;
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 16px;
    font-size: 0.875rem;
    font-weight: 300;
}


/* Responsive Footer */
@media screen and (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 0px;
    }

    .footer-top nav {
        flex-direction: column;
        gap: 16px;
        margin: 40px;
    }

    .footer-top .social-icons {
        justify-content: center;
        margin: 16px 0;
    }

    .bottom-bar {
        margin-top: 16px;
    }
}
