/* ===================================================================
   FOOTER – Glasoptik-Footer am Seitenende
   =================================================================== */

.glass-footer {
  /* Blur + Hintergrund-Tönung kommen zentral aus /core/theme.php:
     --blur und --footer-bg-opacity werden dort gesetzt.
     Hier kümmern wir uns um Layout & Textfarbe. */
  backdrop-filter: blur(var(--blur, 20px));
  -webkit-backdrop-filter: blur(var(--blur, 20px));

  /* Hintergrundfarbe:
     In theme_print_inline_css wird zusätzlich
     background-color: rgba(17,24,39,var(--footer-bg-opacity)) gesetzt. */

  border-top: 1px solid rgba(255, 255, 255, .25);

  /* Textfarbe aus dem Theme (Feld "Textfarbe" im Theme-Studio) */
  color: var(--theme-text-color, #ffffff);

  text-align: center;

  padding: 1.5rem;
  margin-top: 3rem;
}

/* Footer-Links */
.glass-footer a {
  /* bleibt voll an die Akzentfarbe gekoppelt */
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.glass-footer a:hover {
  text-decoration: underline;
}
