/* ================================
   FOOTER – quasafe (refined)
   ================================ */

/*
  Ziele:
  - ruhig & seriös
  - klarer Abschluss der Seite
  - kein „billiger“ Footer
  - Trust & Ordnung
*/

.site-footer {
  background: #ffffff;
  border-top: 1px solid #eef2f7;
  padding: 4rem 1.5rem 3rem;

  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Container */
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ================================
   TOP
   ================================ */

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Brand */
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Links */
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-text);
}

/* ================================
   DIVIDER
   ================================ */

.footer-divider {
  height: 1px;
  background: #eef2f7;
  margin: 2.5rem 0;
}

/* ================================
   BOTTOM
   ================================ */

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Hinweistext */
.footer-note {
  max-width: 520px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Copyright */
.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-copy a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}
