/* Stile für die Navigationsleiste */
.navbar {
    background-color: var(--glass-bg-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari-Kompatibilität */
    border-bottom: 1px solid var(--glass-border-color);
}

/* Stile für die Navigationslinks */
.nav-link {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 0; /* Padding nur oben/unten für den Unterstrich-Effekt */
}

.nav-link:hover {
    color: white;
}

/* Stil für den aktiven Desktop-Navigationslink */
.nav-link-active,
.nav-link-active:hover {
    color: var(--accent-color-gold);
    font-weight: bold;
}

/* Stil für den aktiven Mobile-Navigationslink */
.mobile-nav-link-active,
.mobile-nav-link-active:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-color-gold);
    font-weight: bold;
}

/* Unterstrich-Effekt beim Hovern */
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color-gold);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Styling für den Mobile-Menü-Button */
.mobile-menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}