/* LOGO WRAPPER */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px 0;
}

/* Responsiver Abstand für kleine Bildschirme */
/* Responsiver Abstand für kleine Bildschirme */
@media (max-width: 768px) {
  .logo-wrapper {
      padding-left: 5px;
      padding-right: 5px;
  }

  .logo-text {
      font-size: 20px;
  }
}

/* LOGO LINK */
.logo-link {
  text-decoration: none;
}

/* LOGO BILD */
.logo-image {
  max-height: 100px;
  width: auto;
}

/* LOGO-TEXT STYLE */
.logo-text {
  font-family: 'Quicksand Bold', 'Arial Narrow', Arial, sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #a64597 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 10px;
  padding: 12px;
  text-align: center;
  border: solid 0.5rex #a64597;
}

/* LOGO-SUBTEXT STYLE */
.logo-subtext {
  font-size: 20px;
  font-weight: 400;
  color: #202D64 !important;
  text-align: center;
  margin-top: -5px;
  opacity: 0.8;
}

/* HOVER-EFFEKT */
.logo-link:hover .logo-text,
.logo-link:hover .logo-subtext {
  color: #902d7a;
}

/* STICKY-MENÜ: LOGO LINKS, MENÜ RECHTS */
.sticky-menu .logo-text {
  display: block !important;
  font-size: 22px;
  font-weight: bold;
  color: #a64597;
  margin-left: 15px;
}

/* STICKY-MENÜ: Falls eine Logografik vorhanden ist */
.sticky-menu .logo-image {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

/* STICKY-MENÜ: Subtext ausblenden */
.sticky-menu .logo-subtext {
  display: none !important;
}

/* Sicherstellen, dass nach dem Scrollen alles zurückspringt */
.no-sticky .logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
