/* ===========================================
   SHARED FOOTER STYLES - joe.coffee
   For pages using footer-loader.js
   =========================================== */

#site-footer {
    background: #F5F1E8;
    color: #171717;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer-brand a,
.footer-brand .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #525252;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-brand a:hover {
    color: #171717;
}

.footer-column h4 {
    color: #171717;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column li {
    margin-bottom: 0.75rem;
    list-style: none !important;
}

.footer-column li::before {
    display: none !important;
}

.footer-column li::marker {
    display: none !important;
}

.footer-column a {
    color: #525252;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #171717;
}

.footer-cities {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #E5E5E5;
}

.footer-cities h4 {
    color: #171717;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem 2rem;
    margin-bottom: 1.5rem;
}

.footer-cities-grid a {
    color: #525252;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-cities-grid a:hover {
    color: #171717;
}

.footer-view-all {
    display: inline-flex;
    align-items: center;
    color: #171717;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-view-all:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #737373;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .footer-cities {
        padding: 2rem 1.5rem;
    }
    .footer-cities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}