There's not z buffer yes, thus you'll simply have to decide on your own, which objects goes over the other and make sure you draw them in the correct order.
The most efficient way to draw in SFML, is by using a vertex arrays. You'll need to using one for each texture and maybe break them further down, as you want to clip the content, that is off screen.