body{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
*{
    text-decoration: none;
    color: black;
    margin: 0;
    padding: 0;
}

.header {
    background-image: url('img/zaanse\ schans.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 1200px;
}
.main-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
}

.main-menu .brand img{
    height: 175px;
}

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

.nav-links a{
    padding: 10px;
    font-size: 20px;
    color: aliceblue;
}

.nav-links a:hover{
    border-bottom: 2px solid white;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 16px;
}

.partner-logo{
    height: 60px;
}

.flags{
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag{
    width: 32px;
}

.burger{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
}

.burger span{
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
}

.slider h1{
    float: right;
    padding: 8% 10%;
    font-size: 56px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
#slogan{
    float: right;
    padding: 10%;
}

/* Mobile */
@media (max-width: 900px){
    .main-menu{
        flex-wrap: wrap;
    }
    .burger{ display: flex; }
    .nav-right{ display: none; }
    .nav-links{
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(0,0,0,0.35);
        padding: 8px 12px;
        border-radius: 8px;
    }
    .nav-links.open{ display: flex; }
    .nav-links a{ width: 100%; }
    .slider h1{
        float: none;
        padding: 24px;
        font-size: 34px;
    }
}