/* Termin Button Header – modern & clean */
.menu-button {
  background-color: #1b667f;
  border: 1px solid #1b667f;
  border-radius: 4px;
  box-shadow: none; /* unschöner schwarzer Schatten entfernt */
  display: inline-flex;       /* sorgt für sauberes Text-Align */
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  padding: 0;                 /* Padding kommt über den Link */
  vertical-align: middle;
  position: relative;
  top: 12px;
}

.menu-button a {
  color: #fff !important;
  text-decoration: none;
  padding: 6px 14px !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.2;
  background-color: transparent !important;
  display: inline-block;
}

/* Hover-Effekt: heller Hintergrund + farbiger Rahmen */
.menu-button:hover {
  background-color: #ffffff !important;
  border-color: #1b667f !important;
}

.menu-button:hover a {
  color: #1b667f !important;
}

/* Optional: leichter moderner Shadow bei Hover */
.menu-button:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}

/*Instagram Icon Header*/
/* Wähle den Menülink gezielt an */
.menu-item a[href*="instagram.com"]::before {
  content: "\f16d"; /* Font Awesome Instagram Icon */
  font-family: "Font Awesome 5 Brands"; /* oder 6 je nach Version */
  display: inline-block;
  margin-right: 6px; /* Abstand zwischen Icon und Text */
  font-size: 1em;
  vertical-align: middle;
  color: inherit; /* übernimmt die gleiche Farbe wie der Text */
}


/* Hängende Einrückung für Service-Links */
#dental-care-footer-sidebar2 .widget a {
  display: block;          /* macht den Link zu einem Blockelement */
  padding-left: 20px;      /* Einzug für die erste Zeile */
  text-indent: 0px;      /* sorgt dafür, dass zweite Zeile mitzieht */
  line-height: 1.3;
	margin-top: -0.7em;
}

/* mobile Header fix */
@media (max-width: 1200px) {
    .mobile-header.mobile-header-two {
        min-height: 90px; 
        padding-top: 10px;
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }