@import url('main.css');


.footer-container {
    width: 100%;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    height: 50px;
}


.footer-left {
    max-width: 600px;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
    font-family: var(--font);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction:row;
    gap: 1.5rem;
}

.footer-link a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-accent);
}

.footer-link a:hover {
    color: var(--nav-link-hover);
}

.imgfooter {
    height: 1.5rem;
    width: auto;
    display: block;
    border-radius: 4px;
}
.footer-credit {
    font-size: 0.8rem;
    color: #1e1e1e;
    text-align: center;
    opacity: 0.8;
}
    .imgfooter:hover {
        transform: translateY(-1px);
    }

    .footer-credit {
        font-size: 0.8rem;
        color: #1e1e1e;
        text-align: center;
        opacity: 0.8;
    }

.alfa{
    color: #1e1e1e;
}

.footer-credit:hover {
    opacity: 1;
}



/* MOBILE LAYOUT */
@media (max-width: 639px) {


    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        height: auto;
        gap: 0.5rem;
    }

    .footer-credit {
        font-size: 0.8rem;
        color: #1e1e1e;
        text-align: center;
        opacity: 0.8;
    }

    .imgfooter {
        height: 1.2rem;
        width: auto;
        display: block;
        border-radius: 4px;
    }
}
