/* =======================================================
   FOOTER.CSS – HUD-Version (immer sichtbar, passiv)
   York & Nova 2025
   ======================================================= */

/* Grundstil: permanenter transparenter Glow-Footer */
.site-footer {
  position: fixed;
  bottom: 14px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.82em;
  color: rgba(200, 230, 255, 0.8);
  padding: 4px 0 6px 0;
  letter-spacing: 0.05em;
  background: transparent; /* bleibt immer transparent */
  backdrop-filter: blur(2px);
  text-shadow:
    0 0 6px rgba(120, 220, 255, 0.4),
    0 0 18px rgba(80, 180, 255, 0.25);
  opacity: 0;
  animation: fadeFooter 1.5s ease-out forwards;
  animation-delay: 1.2s;
  z-index: 5;

  pointer-events: none;
  user-select: none;
  cursor: default;
}

/* Leuchtende Aura */
.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background: radial-gradient(
    ellipse at center,
    rgba(100, 200, 255, 0.22) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

@keyframes fadeFooter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------
   Links – rein optisch, aber deaktiviert
------------------------------------------------------- */
.site-footer a {
  color: #8ad6ff;
  text-decoration: none;
  text-shadow:
    0 0 6px rgba(120, 220, 255, 0.3),
    0 0 12px rgba(160, 220, 255, 0.25);
  pointer-events: none; /* nicht klickbar */
}

/* -------------------------------------------------------
   Mobile
------------------------------------------------------- */
@media (max-width: 768px) {
  .site-footer {
    font-size: 0.75em;
    bottom: 10px;
    padding: 3px 0 4px 0;
    text-shadow: 0 0 4px rgba(120, 220, 255, 0.4);
  }
}

/* =======================================================
   Varianten – nur Farb- & Glow-Töne
   ======================================================= */

.footer-default {
  color: rgba(200, 230, 255, 0.8);
  text-shadow:
    0 0 6px rgba(120, 220, 255, 0.4),
    0 0 18px rgba(80, 180, 255, 0.25);
}

.footer-wood {
  color: #f7e5d3;
  text-shadow:
    0 0 6px rgba(250, 210, 150, 0.5),
    0 0 14px rgba(250, 180, 100, 0.3);
}

.footer-victorian {
  color: #d6c9ff;
  text-shadow:
    0 0 5px rgba(140, 120, 255, 0.4),
    0 0 15px rgba(200, 180, 255, 0.3);
}

.footer-dark {
  color: #aaa;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.25),
    0 0 12px rgba(200, 200, 200, 0.15);
}
