/*
    File: css/components/footer.css
    Description: Styles for the website footer.
*/

.footer {
    background-color: #2c2c2c;
    color: #eee;
    padding: 20px 15px;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #444;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #fff;
}

/* Media queries for small screens */

@media (max-width: 600px) {
    .footer {
        padding: 15px 10px;
        font-size: 0.8em;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
}
