:root {
    /* FARBEN */
    --TAHITI-GOLD: #ed6921;
    --WHITE: #fdfdfd;
    --NERO: #272626;
    --STORM-DUST: #5e5e5d;
    --LIGHT-GREY: #d0d0d0;

    /* SCHRIFTEN */
    --NAV-FONT: bold 16pt Century Gothic, sans-serif;
    --BODY-FONT: 13pt Century Gothic, sans-serif;
    --ADDRESS-FONT: bold italic 15pt Century Gothic, sans-serif;
}

body {
    background: var(--WHITE);
    color: var(--NERO);
    font: var(--BODY-FONT);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.5;
}

b { 
    letter-spacing: .3px;
}

#toggle-menu, .mobile-nav {
    display: none;
}

a, a:hover {
    text-decoration: none;
    font-weight: normal;
    font: var(--NAV-FONT);
    color: inherit;
}

a#start {
        display: block;
        position: relative;
        top: -100px;
        visibility: hidden;
}

h1 {
    font: var(--NAV-FONT);
    text-transform: uppercase;
}

img {
    max-width: 100vw;
}

footer {
    background: var(--TAHITI-GOLD);
    padding: 100px;
    margin-top: 100px;
}

header {
    height: 760px;
    background-color: var(--WHITE);
    background-image: url('../img/header.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    box-sizing: border-box;
    padding: 100px 10%;
}

header img {
    position: relative;
}

.logo {
    background: hsla(0, 0%, 100%, 85%);
    padding: 5px;
    max-width: 486px;
}

nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: var(--NAV-FONT);
    background: var(--NERO);
    z-index: 3;
}

nav a {
    text-transform: uppercase;
    padding: 0 30px;
    color: var(--LIGHT-GREY);
    font: var(--NAV-FONT);
    line-height: 100px;
    height: 100%;
}

nav a:hover {
    background: var(--TAHITI-GOLD);
    line-height: 100px;
    color: var(--LIGHT-GREY);
}

footernav a {
    color: var(--WHITE);
    font: var(--NAV-FONT);
    text-transform: uppercase;
    display: block;
}

footernav a:hover {
    color: var(--NERO);
}

section {
    padding: 100px;
}

.gray {
    background: var(--STORM-DUST);
    color: var(--WHITE);
    box-sizing: border-box;
    padding: 0 50px;
}

.gray .col.p-100 {
    margin: 0 15px;
}

.white {
    background: var(--WHITE);
    margin: -100px 0;
    position: relative;
    max-width: 300px;
}

.p-100 {
    padding: 100px;
    box-sizing: border-box;
}

.lp-50 {
    padding: 0 0 0 50px;
}

.footerlogo {
    margin-top: -100px;
}

address {
    font: var(--ADDRESS-FONT);
    color: #000;
    margin-top: 30px;
}

ul li {
    margin: 24px 0;
}

map {
    height: 430px;
    background:#eeebe8;
    margin: 100px -100px -100px -100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align:center;
    background-image: url('../img/worldmap.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: auto 400px;
}

button.mapconsent {
    padding: 15px 30px;
    border: 2px solid var(--TAHITI-GOLD);
    background: #eeebe8;
    margin: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px;
}

map iframe {
    width: 100vw;
    height: 430px;
}

.footer-image {
    background-image: url('../img/footer.jpg');
    margin: 100px -100px -100px -100px;
    background-size: cover;
    height: 672px;
}


@media (max-width: 1150px) {
    body nav {
        display: none;
    }
    .mobile-nav {
        position: sticky;
        top: 0;
        right: 0;
        height: 100px;
        display: flex;
        padding: 0 50px;
        box-sizing: border-box;
        background: transparent;
        z-index: 3;
        align-items: center;
        background: var(--NERO);
        color: var(--WHITE);
        justify-content: flex-end;
    }
    .mn-name {
        font-weight: bold;
        margin-right: 30px;
    }
    .mn-burger {
        width: 32px;
        height: 26px;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
    }
    .mobile-nav .mn-line {
        height: 4px;
        width: 100%;
        background: var(--WHITE);
    }
    #toggle-menu:checked + label + nav {
        display: flex;
        flex-flow: column;
        position: sticky;
        top: 100px;
        left: 0;
        right: 0;
        color: var(--WHITE);
        height: unset;
        margin: -8px 0 0 0;
        z-index: 3;
    }
    #toggle-menu:checked + label + nav a {
        background: var(--NERO);
        display: block;
        width: 100%;
        text-align: center;
    }
    #toggle-menu:checked + label + nav a:hover {
        background: var(--TAHITI-GOLD);
    }
    .gray {
        padding: 0;
    }
    .white {
        max-width: 100%;
        margin: -100px -100px 100px -100px;
        min-width: 100vw;
        padding-bottom: 50px;
        text-align: center;
    }
    .lp-50 {
        padding-bottom: 100px;
        padding-left: 0;
    }
    .footer-image {
        height: 400px;
    }
}

@media (max-width: 650px) {
    .white img {
        max-width: 100%;
    }
    header {
        height: 400px;
    }
    header img, footer img {
        max-width: 100%;
    }
}


@media (max-width: 500px) {
    section {
        padding: 25px;
    }
    nav a {
        line-height: 40px;
    }
    nav a:hover {
        line-height: 40px;
    }
    .p-100 {
        padding: 25px;
    }

    b {
        letter-spacing: .4px;
        line-height: 1.6;
    }
}