
/* ---------------- GLOBAL STYLES ---------------- */


.site-footer {
  padding: 20px;
  text-align: center;
  background: #333;
  color: red;
}



/* ------------  Für das leuchtende Wort im Impressum  ------- */
/* Grundstil für auffälligen Link */
.glow-link {
  color: red;           /* kräftige Grundfarbe */
  font-weight: bold;        /* fetter Text */
  text-decoration: none;    /* Unterstreichung entfernen */
  transition: all 0.3s ease; /* sanfter Übergang */
  position: relative;
}

/* Glow-Effekt beim Hover */
.glow-link:hover {
  color: yellow;           /* hellere Farbe */
  text-shadow:
    0 0 5px #FFC300,
    0 0 10px #FF5733,
    0 0 20px #FF5733,
    0 0 30px #FF5733;
  transform: scale(1.1);    /* leicht vergrößern */
}





/* --- FAB WRAPPER --- */
.ui-fab-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 3000;
  touch-action: manipulation;
}

/* --- Haupt-FAB --- */
.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #1f2937; /* dunkelgrau */
  color: #fff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.fab-btn:active { transform: scale(0.98); }
.fab-btn.open { transform: rotate(90deg); }

/* --- Ausklapp-Menü --- */
.ui-fab-menu {
  position: absolute;
  bottom: 70px; /* Abstand über FAB */
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: transform, opacity;
}

/* Menü offen */
.ui-fab-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- Menü-Items (große, touchfreundliche Buttons) --- */
.fab-item {
  min-width: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: #111827;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.fab-item:active { transform: translateY(1px); }
.fab-item:focus { outline: 2px solid rgba(255,255,255,0.12); outline-offset: 2px; }

/* --- Floating Go-To-Top Button (rechts unten) --- */
.fab-go-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 2999;
  display: none; /* wird per JS eingeblendet */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #0f172a;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;







}
.fab-go-top:active { transform: scale(0.97); }

/* --- Dark Mode Styling (einfach) --- */
body.dark .fab-btn,
body.dark .fab-item,
body.dark .fab-go-top {
  background: gray;
  color: black;
}

/* --- Kleine Bildschirme: FAB etwas kleiner, noch touch-freundlich --- */
@media (max-width: 420px) {
  .fab-btn { width: 52px; height: 52px; font-size: 24px; }
  .fab-item { font-size: 15px; padding: 10px 12px; min-width: 46px; border-radius: 10px; }
  .ui-fab-wrapper { bottom: 16px; left: 14px; }
  .fab-go-top { right: 14px; bottom: 16px; width: 44px; height: 44px; font-size: 18px; }
}








/* ---------------- Ab hier Style für Suchfeld ---------------- */





/* Container für Input + Button */
.footer-search-form .search-wrapper {
    display: flex;
    max-width: 350px;
    margin: 0 auto; /* zentriert */
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

/* Eingabefeld */
.footer-search-form .search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    border-radius: 30px 0 0 30px;
}

/* Button */
.footer-search-form .search-btn {
    padding: 0 20px;
    border: none;
    background: #0074D9;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 30px 30px 0;
    transition: background 0.3s;
}

/* Hover-Effekt */
.footer-search-form .search-btn:hover {
    background: #005fa3;
}

/* Responsive Anpassung */
@media (max-width: 480px) {
    .footer-search-form .search-wrapper {
        max-width: 90%;
    }
    .footer-search-form .search-input {
        font-size: 13px;
        padding: 8px 12px;
    }
    .footer-search-form .search-btn {
        padding: 0 15px;
        font-size: 13px;
    }
}



