/* footer.css */

.site-footer {
  background: #0f172a; /* text-primary in about.css */
  color: white;
  padding: 4rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-tagline {
  color: #94a3b8; /* text-muted */
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  color: #64748b; /* text-secondary */
  font-size: 0.875rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
