/* Projekt-Kategorie Menü Styles */
.projekt-kategorie-menu {
    background: #f8f8f8;
    padding: 20px 0;
    margin-bottom: 40px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.kategorie-menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    gap: 20px;
}

.kategorie-menu-item {
    margin: 0;
}

.kategorie-menu-item a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.kategorie-menu-item a:hover {
    font-weight: bold;
}

.kategorie-menu-item.active a {
    font-weight: bold;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kategorie-menu-list {
        padding: 0 15px;
        gap: 15px;
    }
    
    .kategorie-menu-item a {
        font-size: 14px;
    }
}
