/* Navigation Highlighting Styles */

/* Aktiver Navigationspunkt */
.nav-link--active {
    color: #fff !important;
    position: relative !important;
    font-weight: 600 !important;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Glühender Unterstreichen-Effekt */
.nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent) 20%, 
        #fff 50%, 
        var(--color-accent) 80%, 
        transparent 100%);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Pulsierender Punkt */
.nav-link--active::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Hover-Effekt für nicht-aktive Links */
.nav-link:not(.nav-link--active):hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Smooth transitions */
.nav-link {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 10px 15px;
}

/* Smoother transitions für aktive States */
.nav-link--active {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Smoother transitions für Marker-Elemente */
.nav-link--active::after,
.nav-link--active::before {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Unterstreichen-Effekt */
.nav-link:not(.nav-link--active):hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.nav-link:not(.nav-link--active):hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA-spezifische Styles wurden entfernt für einheitliche Navigation */

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .nav-link--active::after {
        bottom: -4px;
        height: 2px;
    }
    
    .nav-link--active::before {
        width: 4px;
        height: 4px;
        top: -8px;
    }
    
    .nav-link {
        padding: 8px 10px;
    }
}