/* Footer wrapper */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: #2d6a4f;   /* ✅ enforce single footer color */
  color: #fff;
}

/* Inner container (no background, so it inherits from .site-footer) */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
}

.footer-link {
  color: #00e6ac;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: #00ccff;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    padding: 1.5rem 0.75rem;
    font-size: 0.875rem;
  }
}
