/* Niravu shared footer — referenced by all pages */
.footer {
  background: var(--teal-deep, #0B1820);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: 48px 0 32px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold, #D4A843);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted, #9CA8B3);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted, #9CA8B3);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold, #D4A843);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 640px) {
  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
