
.catering-btn {
  margin-top: 1.2rem;
  padding: 0.7rem 1.6rem;
  background: #b49a86;
  color: #fff;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-block;
}
.catering-btn:hover {
  background: #a1846b;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
/* Footer-Balken für Impressum etc. */
.footer-bar {
  width: 100vw;
  background: #222;
  color: #fff;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-bar .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.footer-bar a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-bar a:hover {
  opacity: 1;
}

/* Mobile Footer - kompakter und alles in einer Zeile */
@media (max-width: 768px) {
  .footer-bar {
    padding: 0.8rem 1rem; /* Weniger Padding für kompakteres Design */
    font-size: 0.9rem; /* Kleinere Schrift auf Mobile */
  }
  
  .footer-bar .footer-content {
    flex-wrap: nowrap; /* Alles in einer Zeile */
    gap: 1rem; /* Etwas mehr Abstand zwischen Elementen */
    font-size: 0.85rem; /* Noch kleinere Schrift für bessere Passung */
  }
  
  .footer-bar .footer-content span {
    font-size: 0.85rem; /* "Banco de Café" kleiner */
  }
  
  .footer-bar a {
    font-size: 0.85rem; /* Impressum auch kleiner */
    margin-left: 1rem !important; /* Weniger Abstand */
  }

  /* Catering Button auf Mobile zentrieren */
  .catering-cta-row {
    text-align: center; /* Zentriert den Button */
    width: 100%;
  }
}
