/* ===========================
   FOOTER
=========================== */

.site-footer {
  background-color: #031633;
  color: #e5e5e5;
  padding: 3rem 2rem 1.5rem;
}

.footer-main {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* BRAND COLUMN */
.footer-logo {
  max-width: 160px;
  margin-bottom: 1rem;
}

.footer-mission {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfd6e3;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  color: #ffc107;
  font-size: 1.3rem;
  margin-right: 0.75rem;
}

/* HEADINGS */
.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #cfd6e3;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffc107;
}

.footer-donate-link {
  font-weight: 700;
  color: #ffc107 !important;
}

/* DONATE BUTTON */
.footer-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background-color: #ffc107;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.footer-donate-btn:hover {
  background-color: #e0aa06;
}

/* Ensure donate button text color wins over `.footer-links a` */
.footer-links a.footer-donate-btn,
.footer-links a.footer-donate-btn--small {
  color: #000000;
}

.footer-links a.footer-donate-btn:hover,
.footer-links a.footer-donate-btn--small:hover {
  color: #000000;
}

/* MAP */
.footer-map {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #cfd6e3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-map {
    height: 180px;
  }
}

/* CENTER LOGO + TAGLINE IN BRAND COLUMN */
.footer-brand {
  text-align: center;
}

.footer-brand .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .footer-mission {
  margin-left: auto;
  margin-right: auto;
}
/* SMALL DONATE BUTTON (QUICK LINKS) */
.footer-donate-btn--small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  
}

/* DONATE BUTTON — BLACK TEXT + RED HEART */
.footer-donate-btn,
.footer-donate-btn--small {
  color: #031633;            /* black/navy text */
}

.footer-donate-btn i,
.footer-donate-btn--small i {
  color: #c62828;            /* red heart */
}

/* Hover state stays clean */
.footer-donate-btn:hover,
.footer-donate-btn--small:hover {
  color: #031633;
}

.footer-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.footer-directions:hover {
  text-decoration: underline;
}