/* css/footer.css */

#site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    background: rgba(0, 0, 0, 0.0);
    color: #fff;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 5px #000;
    font-size: 10px;
    color: #aaa;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
    margin-top: 5px;
}

.social-icons img:hover {
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 5px;
        font-size: 9px;
        text-align: center;
    }
}