/* Footer */

/* ============================================================
   FOOTER (minimal)
   ============================================================ */
.footer {
  padding: 60px clamp(24px, 6vw, 80px) 32px;
  border-top: 1px solid var(--border-color);
}
.footer-main {
  text-align: center;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--brn-blue-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
}
.footer-copy a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--text-secondary); }
.footer-credit {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-credit a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, opacity 0.2s;
}
.footer-credit a:hover { color: var(--brn-blue-accent); opacity: 1; }
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
