/* Premium Footer Styles for Soy.Marketing (Magazine Theme) */

.site-footer {
    background-color: #1a1a1a !important;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Column 1: Brand & Social */
.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    width: 220px; /* Fixed width */
    height: 29px; /* Calculated proportional height (220/320 * 42) to avoid CLS */
    display: block;
}

.footer-brand .footer-tagline {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.social-link:hover {
    background: #ff5100;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #ffffff !important; /* Force white icons */
}

/* Columns 2-4: Menus */
.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff5100;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ff5100;
    padding-left: 5px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #000000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888888;
}

.footer-bottom-inner a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
    color: #ffffff;
}

.hatch-credit a {
    color: #ff5100;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 60px;
        padding-bottom: 70px; /* Offset for Mobile Bottom Nav bar */
    }
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
