/*
 * Filename: footer.css
 * File path: css/footer.css
 * Sticky footer styles
 */

/* Make footer stick to bottom */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#outer-wrap {
  flex: 1 0 auto;
}

/* Footer Styles */
.site-footer {
  flex-shrink: 0;
  background: #111827;
  color: #9ca3af;
  padding: 24px 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #6366f1;
}

/* Separator between links */
.footer-nav a:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
