/* ============================================================
   FOOTER.CSS — Site footer
   Vidai AG · vidai.ch
   ============================================================ */

footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 32px;
  opacity: 0.7;
  transition: opacity var(--ease);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 12px;
  color: rgba(247,246,242,0.25);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.3);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: rgba(247,246,242,0.7);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
  }
}
