
/* Footer bottom-right, single row */
.footer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1110; /* sopra header se necessario */
  pointer-events: auto;
  font-family: inherit;
  font-size: 14px;
}

.footer-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.35);        /* coerente con .central-header */
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  color: #fff;
  white-space: nowrap;                 /* forza una sola riga */
  flex-wrap: nowrap;
  max-width: calc(100vw - 48px);      /* evita overflow orizzontale */
}

/* testo */
.footer-container p {
  margin: 0;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}

/* nav e link */
.footer-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  line-height: 1;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  padding: 4px 6px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .12s ease, transform .12s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #ffd27a;           /* stesso highlight della nav principale */
  transform: translateY(-1px);
  outline: none;
}

/* separatore visivo (puoi rimuoverlo se preferisci) */
.footer-nav .sep {
  opacity: 0.55;
  margin: 0 4px;
  color: #fff;
}

.footer,
.footer p,
.footer-nav a {
  color: #fff;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.45),
    0 2px 6px rgba(0,0,0,0.55);
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.35); /* rinforza il contorno su sfondi variabili */
        text-align: end;
}
