/* public/css/components/footer.css */


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--header-footer);
  padding: 0.5rem 1rem;
  box-shadow: 0 -2px 5px var(--acc2a);
  z-index: 1000;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.footer-title {
  color: var(--accent1);
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 0.3rem;
  margin-right: 12px;
  font-size: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-left: 12px;
  margin-bottom: 0.3rem;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: normal;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent1);
}

.admin-links {
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.footer-copy {
  text-align: center;
  color: var(--acc1a);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  user-select: none;
}
