/* Variablen */

:root {
    --main-font: "Rubik";
    --decorative-font: "Scala Sans Bold";
}

/* Setup */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: var(--main-font), Helvetica, "Arial Narrow";
    line-height: 1.5;
    font-size: 1.25rem;
    user-select: none;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #ffffff;
    background-color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Main page hero */

#lcd_header {
    width: 100%;
    height: 64px;
    position: relative;
    text-align: center;
    align-content: center;
}

#lcd_hero {
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    align-content: center;
    background-size: cover;
    background-image: url( "/images/mirko_sepia.webp" );
    background-position: center 75%;
    /*
    background-image: url( "/images/mirko2.webp" );
    background-position: center top;
    */
    color: #ffffff;
    padding: 20px;
}

#lcd_hero_info_text {
    position: absolute;
    min-width: 20px;
    padding: 2px 8px;
    bottom: 16px;
    right: 16px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 8px;
    font-size: 100%;
    user-select: none;
    z-index: 500;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

#lcd_hero_info {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    padding: 10px;
    border-radius: 4px;
    background: #ffffff;
    color: #000000;
    user-select: none;
    width: 500px;
    max-width: 90%;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    z-index: 8000;
}

#lcd_hero_info p {
    font-size: 90%;
    padding: 10px 0 0 0;
    margin: 0;
}

#lcd_hero_info p a {
    color: #336699;
    text-decoration: underline
}

#lcd_hero_info_close {
    float: right;
    clear: both;
    color: #a00000;
    top: -20px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    cursor: pointer;
}

#lcd_hero_info_text a,
#lcd_hero_info_text a:hover {
    text-decoration: none;
    color: #ffffff;
}

.fty_speedy {
    font-family: var(--decorative-font);
    letter-spacing: 0px;
}

.decofont {
    font-family: var(--decorative-font);
}

.decofont_bold {
    font-family: var(--decorative-font);
    font-weight: 900;
}

.xslim {
    font-weight: 400;
}

.xbold {
    font-weight: 900;
}

/* Page logo */

#lcd_page_head_logo {
    position: absolute;
    line-height: 48px;
    vertical-align: center;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    height: 48px;
}

#lcd_page_head_logo img {
    padding: 10px 0 0 0;
    max-height: 48px;
}

/* Main menu */

#lcd_desktop_menu {
    position: fixed;
    top: 32px;
    left: 32px;
    max-width: 80%;
    background-color: rgba( 255, 255, 255, 1);
    border-radius: 32px;
    height: 48px;
    max-height: 48px;
    color: #323232;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow-x: hidden;
    z-index: 1100;
}

@media (max-width: 1280px) {
    .burger-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        display: none;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        background: rgba(50, 50, 50, 1.0);
        color: #f0f0f0;
        padding: 2.5em 0 2.5em 0;
        padding-top: 2.5em;
        padding-bottom: 2.5em;
        margin-bottom: 2.5em;
        /* Above hero & hero info, below menu buttons */
        z-index: 600;
    }

    .nav-links a {
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
        line-height: 300%;
        background: none;
        width: 100%;
        color: #f0f0f0;
        border-bottom: 1px solid #585858;
        max-width: 100%;
        white-space: nowrap;
        overflow-x: scroll;
    }

    .nav-links a.mobile_level_2 {
        font-size: 80%;
        border-bottom: 0px;
        padding: 0;
    }

    .nav-links a.mobile_level_2:before {
        /* &raquo; */
        content: "\00BB ";
        padding: 0 6px 0 0;
    }

    .nav-links a:hover {
        color: #b0b0b0;
    }

    #burger-toggle:checked ~ .nav-links {
        visibility: visible;
        display: block;
    }
}

/* Search icon */

#lcd_search_icon {
    z-index: 1000;
    position: fixed;
    top: 32px;
    right: 32px;
    background-color: rgba( 255, 255, 255, 1);
    border-radius: 32px;
    height: 48px;
    width: 48px;
    max-height: 48px;
    color: #323232;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

.lcd_search_item {
    font-weight: bold;
    height: 32px;
    width: 32px;
    padding: 30px 0px;
    margin: 40px 0px;
    font-size: 150%;
}

.lcd_desktop_menu_item {
    display: inline;
    height: 48px;
    line-height: 48px;
    padding: 10px 10px;
    margin: 10px;
}

#lcd_logo_mainpage {
    max-height: 200px;
}

#lcd_main_title {
    hyphens: auto;
    font-weight: bold;
    font-size: 300%;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.75);
    transform: skew(-5deg, -7.5deg);
}

#lcd_main_subtitle {
    hyphens: auto;
    font-weight: 600;
    font-size: 150%;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.75);
    transform: skew(-5deg, -7.5deg);
}

p {
    hyphens: auto;
}

.nobr {
    white-space: nowrap;
}

/* Footer */

#lcd_footer {
    position: absolute;
    bottom: 12px;
    color: #ffffff;
    font-size: 75%;
    text-align: center;
    padding: 1em;
    border: 0;
    width: 100%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1.00);
}

.lcd_footer_link {
    text-decoration: none;
    color: #ffffff;
    padding: 0 5px;
}

.lcd_footer_link:hover {
    text-decoration: none;
    color: #ffffff;
    padding: 0 5px;
}

/* Media queries */

@media (max-width: 1280px) {
    #lcd_page_head_logo {
        display: block;
    }
    #lcd_desktop_menu {
        width: 25%;
        min-width: 25%;
        max-width: 25%;
    }
    #lcd_main_title {
        font-size: 250%;
    }
    #lcd_main_subtitle {
        font-size: 100%;
    }
    .lcd_content {
        padding: 0.25em 5%;
        font-size: 90%;
    }
    #menu_mobile {
        display: block;
    }
    #lcd_desktop_menu {
        display: none;
    }
}

@media (min-width: 1281px) {
    .nav-links {
        display: none;
    }
    #lcd_page_head_logo {
        display: none;
    }
    #menu_mobile {
        display: none;
    }
    #lcd_menu_icon {
        display: none;
    }
    #menu_desktop {
        display: block;
    }

}
