/* ============================================================
   footer.css — Footer
   ============================================================ */

#site-footer {
  background-color: var(--surface-container-lowest);
  border-top: none;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-desktop);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--on-surface-variant);
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.6;
}

html.light .footer-tagline {
  color: #1a2842;
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--secondary-container);
}

html.light .footer-links a:hover {
  color: var(--primary-container);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--outline-variant);
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--secondary-container);
  border-color: var(--secondary-container);
  color: var(--on-secondary-fixed);
}

html.light .footer-social a:hover {
  background: var(--primary-container);
  border-color: var(--primary-container);
  color: #fff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--outline-variant);
  opacity: 0.3;
  margin: 0.5rem 0;
}

.footer-copy {
  font-size: 13px;
  color: var(--on-surface-variant);
  opacity: 0.55;
}
