.footer {
    
    background-color: #111111 !important; /* or same color as header */
    color: #fff;
    padding: 20px 20px 5px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* allows wrap on mobile only */
}

/* Each Column */
.footer-col, .footer-brand-contact {
    flex: 1 1 0;
    min-width: 0;
}

.footer-col h3,
.footer-site-title {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-site-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.footer-brand-contact p {
    margin: 14px 0;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

/* -------- RESPONSIVE -------- */

/* Tablets & Mini Pads (still 3 columns in one row) */
@media (max-width: 1024px) {
    
    .footer-col, .footer-brand-contact {
    flex: 1;
    }
    .footer-row {
        gap: 5px;
    }
}

/* Mobile: stack into 1 column */
@media (max-width: 600px) {
    .footer-row {
        flex-direction: row;
    }
}
