/* ============================================
   SHARED FOOTER STYLES
   Analytic Endeavors - Standardized Footer
   Copyright (c) 2024-2025 Havens Consulting Inc.
   ============================================ */

.site-footer {
  background: var(--bg-dark, #0d0d1a);
  border-top: 1px solid rgba(0, 184, 184, 0.3);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer-links a,
.footer-email {
  color: var(--text-secondary, #c0c0d0);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--teal-light, #00B8B8);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-social a {
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--teal-light, #00B8B8);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-copyright {
  color: var(--text-muted, #9090a5);
  font-size: 0.75rem;
  text-align: center;
  margin: 0;
}

/* Light Mode */
[data-theme="light"] .site-footer {
  background: #f5f5f7;
  border-top-color: rgba(0, 119, 119, 0.3);
}

[data-theme="light"] .footer-links a,
[data-theme="light"] .footer-email {
  color: #5a5a6a;
}

[data-theme="light"] .footer-social a {
  color: #1a1a2e;
}

[data-theme="light"] .footer-social a:hover {
  color: #009999;
}

[data-theme="light"] .footer-copyright {
  color: #6a6a7a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 1.25rem 1rem;
  }

  .footer-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .footer-social svg {
    width: 24px;
    height: 24px;
  }

  .footer-links a,
  .footer-email {
    font-size: 0.8rem;
  }
}

/* Print */
@media print {
  .site-footer {
    border-top: 1px solid #ccc;
    background: white;
  }
}
