/* ================================================
   PetCare Local — Footer and Donate Band
   Green donate band, dark purple footer
   ================================================ */

/* ── GREEN DONATE BAND ── CHANGED TO BLUE-GRAY */
.donate-band {
    background: var(--brand-footer);
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}
/* padding: 36px 20px; new values: padding: 80px 20px; 5/26/26 */

.donate-band p {
    color: #fff;
    font-size: 1.25rem;
    max-width: 590px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* font-size: 0.95rem; */

.donate-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
    text-decoration: none;
}

.donate-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* ── SITE FOOTER ── */
footer.site-footer {
    background: var(--brand-dark);
    padding: 48px 20px 24px;
    width: 100%;
}

/* ── FOOTER COLUMNS ── */
.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-align: center;
}

/* ── FOOTER LINKS ── */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: var(--brand-accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: block;
}

.footer-link:hover {
    color: #fff;
    text-decoration: none;
}

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom {
    border-top: 0.5px solid var(--brand-mid);
    padding-top: 20px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── FOOTER LOGO ── */
.footer-logo {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-logo:hover {
    color: var(--brand-accent);
    text-decoration: none;
}

/* ── COPYRIGHT ── */
.footer-copy {
    font-size: 0.8rem;
    color: var(--brand-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    footer.site-footer {
        padding: 32px 16px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .donate-band {
        padding: 24px 16px;
    }
}
