/* /assets/css/footer.css */
/* ASCII-only. Sticky footer that never overlaps content. */

/* Page takes full height so footer can sit at bottom on short pages */
html, body { height: 100%; }

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Any main content area should flex; common class used across admin pages */
main, .page-main { flex: 1 0 auto; }

/* Footer sits after content and is pushed to the bottom naturally */
footer.site-footer {
  margin-top: auto;
  position: static;           /* no fixed positioning = no overlap */
  width: 100%;
  background: #0b1020;
  color: #ccc;
  border-top: 1px solid #2a3242;
  font-size: 0.9rem;
  z-index: 10;
}

footer.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

footer.site-footer nav.links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.2s ease;
}
footer.site-footer nav.links a:hover {
  color: #fff;
  text-decoration: underline;
}
