/* ===== Fire Command Footer — Single Source of Truth ===== */
#footer {
  background-color: #2a2e31;  /* lighter grey */
  padding: 10px 0;
  text-align: center;
  /* border-top removed */
}

/* Prevent inherited bold/filters from elsewhere */
#footer, #footer * {
  font-family: Impact, Charcoal, sans-serif;
  font-weight: normal !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Layout */
#footer .wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Type + Colors */
#footer a,
#footer span {
  color: #b0d157 !important;
  text-decoration: none;
  font-size: 16px;
  opacity: 1; /* lock to same brightness */
  transition: color .15s ease;
}

#footer a:hover {
  color: #0289ce !important;
}

/* Legal/copyright smaller */
#footer .footer-links.legal-section a,
#footer .copyright-text {
  font-size: 14px;
}

/* Compact on very small screens */
@media (max-width: 420px) {
  #footer .footer-links { gap: 8px; }
}
