/*
File Name: 		custom.css
Description:  You can add your custom CSS here and it will overwrite template styles
*/
/*# sourceMappingURL=maps/custom.css.map */
/* Standardmäßig verstecken */
.mobile-nav--top {
  display: none;
}

/* Nur auf Smartphones anzeigen */
@media (max-width: 768px) {
  .mobile-nav--top {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 2000;
    text-align: center;
    padding: 0.5rem 0;
  }
.header-social-toggle {
  display: flex;
  align-items: center;   /* vertikal zentrieren */
  justify-content: center; /* optional, falls auch horizontal mittig sein soll */
  height: 100%;          /* füllt die gesamte Höhe der Leiste */
}

.header-social-toggle .df-icon {
  height: 20px;          /* gleiche Höhe für das Icon */
  width: 20px;
  margin: 0;             /* Abstand resetten */
}
  .mobile-nav--top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-nav--top li {
    margin: 0.5rem;
  }

  .mobile-nav--top a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }

  body {
    padding-top: 60px; /* verhindert dass die Navi den Inhalt verdeckt */
  }
}