/* ============================================================
   FOOTER — solid MPEI orange background, white centered text
   ============================================================ */

footer {
  background: var(--color-mpei);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-links a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
