/**
 * footer.css - Minimalist Footer Section Styles
 * Modeled after Delight Acupuncture (delightacu.com)
 */

.site-footer {
  width: 100%;
  background-color: #0f172a;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  margin-top: auto;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-simple-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.875rem;
}

.footer-simple-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.footer-simple-link:hover {
  color: #34d399;
  text-decoration: underline;
}

.footer-separator {
  color: #475569;
  user-select: none;
}
