/* ==========================================================================
   FOOTER – Navigation, Links, Copyright
   ========================================================================== */

.minimal-footer-wrapper {
    width: 100%;
    padding: 3rem 2rem;
    background-color: #fff0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-top: 1px solid #e5e5e5;
}
.minimal-footer-content {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2.5rem;
}
.footer-column h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0 0 1.5rem 0;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column li {
    margin-bottom: 1rem;
}
.footer-column a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-column a:hover,
.footer-column a:focus {
    color: var(--color-primary);
    outline: none;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}
.footer-logo-bottom img {
    max-height: 40px;
    width: auto;
    display: block;
}
.footer-social-links-bottom a {
    color: var(--color-text);
    display: inline-block;
    margin-left: 0.75rem;
}
.footer-social-links-bottom a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: all 0.2s ease;
}
.footer-social-links-bottom a:hover,
.footer-social-links-bottom a:focus {
    color: var(--color-primary);
    transform: scale(1.1);
    outline: none;
}
.footer-copyright {
    color: var(--color-text);
    font-size: 0.9rem;
}
.footer-copyright p {
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .minimal-footer-wrapper {
        padding: 2rem 1rem;
    }
    .footer-main-nav,
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 2.5rem;
    }
    .footer-bottom-bar {
        gap: 2rem;
    }
    .footer-copyright {
        order: 3;
    }
    .footer-logo-bottom {
        order: 1;
    }
    .footer-social-links-bottom {
        order: 2;
    }
}
