/* ============================================
   WEB-3 — Shared Footer Styles
   The web-3 subdomain uses its own CSS system (css/main.css etc.)
   This file provides only the mm-footer styles.
   ============================================ */

/* Footer variables (self-contained so this file works standalone) */
:root {
  --card-border: rgba(14, 240, 192, 0.2);
  --accent-color: #0ef0c0;
  --text-secondary: rgba(245, 245, 245, 0.7);
  --max-width: 1200px;
}

/* ============================================
   FOOTER
   ============================================ */
.mm-footer {
  padding: 3rem 5% 1.5rem;
  background-color: rgba(10, 10, 26, 0.98);
  border-top: 1px solid var(--card-border);
}

.mm-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.mm-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mm-footer-col h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.mm-footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mm-footer-col a:hover {
  color: var(--accent-color);
}

.mm-footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.mm-footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .mm-footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
