/* === NAVIGATION === */
.main-nav {
    background-color: var(--anthrazit);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 70px;
}

/* === LEFT NAVIGATION === */
.nav-left {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 25px 20px;
    color: var(--gelb-warm);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--gelb-warm);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gelb-hover);
}

/* === DROPDOWN === */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--anthrazit-hell);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--gelb-warm);
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--anthrazit);
    color: var(--gelb-hover);
    padding-left: 25px;
}

/* === RIGHT NAVIGATION (Logo) === */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 15px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: var(--anthrazit);
    }
    
    .nav-logo {
        margin-top: 15px;
        height: 40px;
    }
}