/* ===================================
   FOOTER STYLES
   =================================== */

footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
}

.footer-brand {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0.75rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-nav {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
