/* Logo Styles und Effekte */
.logo {
    max-width: 600px;
}

/* Weiche, leuchtende Outline */
.outline-glow {
    filter: drop-shadow(0 0 3px white)
           drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

/* Alternative Styles (für spätere Verwendung) */
.outline-sharp {
    filter: drop-shadow(-1px -1px 0 white)
           drop-shadow(1px -1px 0 white)
           drop-shadow(-1px 1px 0 white)
           drop-shadow(1px 1px 0 white);
}

.outline-extra-sharp {
    filter: drop-shadow(-0.5px -0.5px 0 rgba(255,255,255,0.95))
           drop-shadow(0.5px -0.5px 0 rgba(255,255,255,0.95))
           drop-shadow(-0.5px 0.5px 0 rgba(255,255,255,0.95))
           drop-shadow(0.5px 0.5px 0 rgba(255,255,255,0.95));
}

.outline-ultra-sharp {
    filter: drop-shadow(-0.5px 0 0 rgba(255,255,255,0.8))
           drop-shadow(0.5px 0 0 rgba(255,255,255,0.8))
           drop-shadow(0 -0.5px 0 rgba(255,255,255,0.8))
           drop-shadow(0 0.5px 0 rgba(255,255,255,0.8));
}
@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
}
   
/* Ändern Sie in Ihrer logo-styles.css Datei */
.top-nav-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    z-index: 10;
  }
  
  .top-nav-button {
    flex: 1;
    margin: 0 5px;
    padding: 8px 5px;
    text-align: center;
    color: white;
    font-size: 0.8em;
    font-weight: normal;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

/* Geänderte Farbverläufe - alle mit dem gleichen Verlauf */
.top-nav-button:nth-child(1),
.top-nav-button:nth-child(2),
.top-nav-button:nth-child(3),
.top-nav-button:nth-child(4) {
  background: linear-gradient(to top, #053177, #60A5FA);
}