html {
    background: #b8b096;
}
body {
    font-size: 1.3vw;
}

@media (max-width: 1200px) {
    body {
        font-size: 1.6vw;
    }
}

@media (max-width: 1000px) {
    body {
        font-size: 1.8vw;
    }
}

@media (max-width: 799px) {
    body {
        font-size: 1rem;
    }
}

.show-desktop {
    display: var(--show-desktop-display);
}

.show-mobile {
    display: var(--show-mobile-display);
}

p {
    margin-bottom: 1rem;
}

hr {
    max-width: 15rem;
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: #12130a;
}

p + hr {
    margin-top: 1rem;
}

p:last-child,
hr:last-child {
    margin-bottom: 0;
}

header {
    background-image: url('img/brillenbar_oben_web.jpg');
    background-position: center;
    background-size: cover;
    aspect-ratio: 1.8;
    position: relative;
}

#header-coming {
    position: absolute;
    text-transform: uppercase;
    left: 50%;
    margin-left: 4rem;
    top: 7vw;
    width: 22vw;
    font-size: 2.6vw;
    font-weight: 300;
    line-height: 1.1;
}

#header-logo {
    width: 22vw;
    position: absolute;
    top: 28vw;
    left: 5vw;
}

#header-logo svg {
    width: 100%;
    height: auto;
}

@media (max-width: 850px) {
    header {
        --header-logo-height: 8rem;
        margin-top: var(--header-logo-height);
        --header-coming-height: 5rem;
        margin-bottom: var(--header-coming-height);
    }

    #header-logo {
        top: calc(var(--header-logo-height) * -1);
        left: 0;
        right: 0;
        height: var(--header-logo-height);
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    #header-logo svg {
        height: calc(var(--header-logo-height) - 2rem);
    }

    #header-coming {
        top: auto;
        bottom: calc(var(--header-coming-height) * -1);
        left: 0;
        right: 0;
        width: 100%;
        margin-left: 0;
        text-align: center;
        height: var(--header-coming-height);
        padding: 1.75rem 1rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    header {
        --header-logo-height: 7rem;
    }
}

article {
    display: flex;
    flex-flow: row nowrap;
}

article > div {
    flex: 50% 0 0;
}

#article-image {
    background-image: url('img/brillenbar_unten_web.jpg');
    background-position: center;
    background-size: cover;
    aspect-ratio: 0.8663;
}

#article-text > div {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    padding: 5vw 0 5vw 4rem;
}

#article-text .large {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 21rem;
}

#article-text p {
    max-width: 17rem;
}

#article-text a {
    font-weight: bold;
    display: block;
    position: relative;
    margin-bottom: 3rem;
}

#article-text a svg {
    width: 6rem;
    height: auto;
    vertical-align: top;
    position: absolute;
    right: -1rem;
    bottom: -3rem;
    transition: margin 0.3s;
}

#article-text a:hover svg {
    margin-right: -1rem;
}

#article-text .spacer {
    flex-grow: 1;
}

@media (max-width: 850px) {
    #article-text > div {
        padding: 2rem;
    }

    #article-text .large {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    article {
        flex-flow: row wrap;
        text-align: center;
    }

    article > div {
        flex: 100% 0 0;
    }
    
    #article-text p,
    #article-text .large {
        max-width: 100%;
    }
    
    hr {
        width: 100%;
        margin: 2rem auto;
    }

    #article-image {
        background-image: url('img/brillenbar_unten_mobil_web.jpg');
        aspect-ratio: 1.8;
        background-position: 50% 95%;
    }

    #article-text .large {
        font-size: 1.5rem;
    }

    #article-text a svg {
        right: 0;
    }
}

footer {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
}

footer > div {
    padding: 8rem 4rem;
}

#footer-left {
    flex: 50% 0 0;
    padding-left: 8rem;
}

#footer-center {
    flex: 20% 0 0;
}

#footer-right {
    flex: 25% 0 0;
}

footer svg {
    width: 3.5rem;
    height: auto;
    vertical-align: middle;
    margin-right: 0.75rem;
}

@media (max-width: 850px) {
    footer > div {
        padding: 2rem !important;
    }
}

@media (max-width: 600px) {
    footer {
        flex-flow: row wrap;
        text-align: center;
    }

    footer > div {
        flex: 100% 0 0 !important;
    }
}
