.navbar {
    background-color: rgba(139, 0, 0, 0.801); /* Dunkelrot und transparent */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: fixed;
    width: 65%; /* Breite auf Viewport minus Padding beschränken */
    top: 30px; /* Verschiebt die Navbar nach unten */
    left: 50%; /* Verschiebt die Navbar nach links */
    transform: translateX(-50%); /* Zentriert die Navbar */
    z-index: 1000;
    border-radius: 15px; /* Abgerundete Ecken */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Weicher Schatten */
    transition: backdrop-filter 0.5s, background-color 0.5s;
    border: 5px solid rgba(255, 255, 255, 0.3); /* Weißer transparenter Rand um die gesamte Navbar */
  }

  .navbar-logo { 
    height: 40px; /* Passen Sie die Höhe nach Bedarf an */ 
    opacity: 0; /* Unsichtbar zu Beginn */ 
    transition: opacity 0.5s ease; /* Fade-in-Effekt */
    pointer-events: none;
  }

  .logo-link {
    display: block; /* Make the entire logo area clickable */
    pointer-events: auto; /* Ensure the link is clickable */
    padding: 0 !important; /* Adjust the padding as needed */
}

    .navbar a.active::before {
    content: "";
    position: absolute;
    top: -28px;
    left: -15px; /* Stell sicher, dass es den gesamten Link abdeckt */
    width: calc(100% + 30px);
    height: calc(100% + 56px);; /* Volle Höhe */
    background-color: rgba(255, 255, 255, 0.3); /* Weißer transparenter Hintergrund */
    z-index: -1; /* Hinter den Text setzen */
    border-radius: inherit;
    box-shadow: none;
  }

  .navbar::after {
   content: "";
   display: block;
   position: absolute;
   bottom: -2px; /* Position des Verblassens */
   left: -2px;
   width: calc(100% + 4px);
   height: calc(100% + 4px);
   border-radius: 0 0 15px 15px; /* Anpassung an die Randrundungen */
  }

 .navbar.active {
    backdrop-filter: blur(5px); /* Verschwommener Effekt */ 
    background-color: rgba(139, 0, 0, 0.801); /* Leichter Hintergrund */ 
    border: 5px solid rgba(255, 255, 255, 0.3);
  }

  .navbar ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    height: 100%;
    align-items: center;
  }

  .navbar li { 
    display: inline-block; 
    padding: 0 15px; 
    position: relative; /* Relative Position für Pseudo-Elemente */
    height: 100%;
    z-index: 1002;
  }

  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: 300; /*Dünnere Schrift */
    font-size: 12px; /*Schriftgröße anpassen*/
    transition: color 0.3s, border 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: none;
    box-shadow: none;
    outline: none;
  }

  .navbar a.active {
    color:aliceblue;
    border: none;
    outline: none;
    position: relative;
    z-index: 1; /* kann man eventuell rausstreichen */
  }

  .navbar li.call-icon {
  margin-left: auto; /* Verschiebt das Icon nach rechts */
  margin-right: 0;
  display: none;
  align-items: center;
  }

  .call-icon img {
    filter: invert(1);
    width: 24px;
    height: 24px;
}

  .call-icon a {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(139, 0, 0, 0.801); /* Hintergrundfarbe des Icons */
  }


 .call-icon a:hover {
 background-color: #e6d8d8; /* Hintergrundfarbe beim Hover */
 }

.page-content { 
  width: 100%; box-sizing: border-box; 
}

.page img {
  width: 100%; 
  height: auto; 
  border-radius: 10px; 
  display: block; 
  box-sizing: border-box; /* Sicherstellen, dass das Padding innerhalb der Breite liegt */ 
}
