/* -------------------------------------------------- */
/* --- ROOT / VARIABLES ------------------------------ */
/* -------------------------------------------------- */

:root {
    --page-width: 960px;

    --col-blue-bright: #95c3ca;
    --col-blue-light: #83aebb;
    --col-blue-medium: #15597a;
    --col-blue-dark: #11242e;

    --col-red: #e30421;
    --col-white: #ffffff;
    --col-cream: #f9f7e8;
    --col-green: #41a803;

    --font-main: 'Yanone Kaffeesatz', sans-serif;

    --size-xs: 17px;
    --size-s: 20px;
    --size-m: 22px;
    --size-l: 28px;
    --size-xl: 36px;
}

/* -------------------------------------------------- */
/* --- BASE ------------------------------------------ */
/* -------------------------------------------------- */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: var(--size-m);
    letter-spacing: 1px;
    color: var(--col-blue-bright);
    background: linear-gradient(#fcfcfc, #c7c8ca);
    background-attachment: fixed;
}

/* -------------------------------------------------- */
/* --- LAYOUT ---------------------------------------- */
/* -------------------------------------------------- */

#wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: url('/gfx/watermark.png') no-repeat bottom;
}

#main {
    flex: 1;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 20px;
}

.clear {
    clear: both;
}

/* -------------------------------------------------- */
/* --- HEADER ---------------------------------------- */
/* -------------------------------------------------- */

#header {
    max-width: var(--page-width);
    height: 200px;
    margin: 0 auto;
    background: url('/gfx/header_logo.png') no-repeat left top;
}

#menu {
    font-size: var(--size-xs);
    text-align: right;
    padding-top: 158px;
    padding-right: 10px;
}

#menu a {
    color: var(--col-blue-medium);
    text-decoration: none;
}

#menu a:hover {
    text-decoration: underline;
}

.menu_selected {
    color: var(--col-red);
}

/* -------------------------------------------------- */
/* --- FOOTER ---------------------------------------- */
/* -------------------------------------------------- */

#footer {
    max-width: var(--page-width);
    height: 150px;
    margin: 0 auto;
    border-top: 1px solid var(--col-blue-medium);
    text-align: center;
}

.footer_spacer {
    height: 10px;
}

#visit_social_media {
    padding: 15px;
    color: var(--col-blue-medium);
    font-size: var(--size-m);
}

#company_info {
    padding-top: 25px;
    color: var(--col-blue-medium);
    font-size: var(--size-xs);
}

/* -------------------------------------------------- */
/* --- TYPOGRAPHY ------------------------------------ */
/* -------------------------------------------------- */

.headlines {
    font-size: var(--size-xl);
    margin: 0;
    padding-bottom: 14px;
    text-transform: uppercase;
    color: var(--col-blue-medium);
}

.sub_headlines {
    font-size: var(--size-l);
    padding: 10px 0 14px;
    text-transform: uppercase;
    color: var(--col-blue-medium);
}

.page_desc {
    font-size: var(--size-m);
    line-height: 30px;
    color: var(--col-blue-medium);
}

.page_desc a {
    color: var(--col-blue-light);
    text-decoration: none;
}

.page_desc a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* --- FRONT PAGE ------------------------------------ */
/* -------------------------------------------------- */

.welcome {
    font-size: var(--size-xl);
    text-align: center;
    padding: 10px 0 15px;
    text-transform: uppercase;
}

.holder {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.block {
    flex: 1 1 300px;
}

.thumb-holder {
    position: relative;
    height: 129px;
}

.thumb-holder img {
    position: absolute;
    top: 2px;
    left: 2px;
}

.block h1 {
    font-size: var(--size-xl);
    margin-top: 10px;
    color: var(--col-blue-medium);
    font-weight: normal;
}

.thumb-text {
    font-size: var(--size-m);
    line-height: 32px;
    color: var(--col-blue-medium);
    border-top: 1px solid var(--col-blue-medium);
    margin-top: 10px;
    padding-top: 10px;
}

/* Buttons */

.read_more {
    width: 79px;
    height: 26px;
    background: url('/gfx/button_read_more.png') no-repeat;
    border: none;
    cursor: pointer;
}

.read_more:hover {
    background-position: 0 -26px;
}

/* -------------------------------------------------- */
/* --- GALLERY --------------------------------------- */
/* -------------------------------------------------- */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.gallery li {
    width: 226px;
    height: 191px;
    background: url('/gfx/gallery_thumb_bgr.png') no-repeat;
    list-style: none;
    text-align: center;
    position: relative;
}

.gallery li img {
    margin: 2px;
}

.gallery li span {
    display: none;
    position: absolute;
    top: 2px;
    left: 1px;
    width: 224px;
    height: 150px;
    background: url('/gfx/over.png') no-repeat;
}

.gallery li:hover span {
    display: block;
}

/* -------------------------------------------------- */
/* --- CONTACT --------------------------------------- */
/* -------------------------------------------------- */

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
    min-height: 400px;
    background: url('/gfx/map_odder.png') no-repeat center top;
}

.addy {
    padding-top: 50px;
    font-size: var(--size-s);
    color: var(--col-blue-medium);
}

input, textarea {
    width: 100%;
    font-size: 13px;
    border: 1px solid var(--col-blue-medium);
    background: var(--col-cream);
    padding: 5px;
    border-radius: 5px;
}

/* -------------------------------------------------- */
/* --- RESPONSIVE ------------------------------------ */
/* -------------------------------------------------- */

@media (max-width: 768px) {

    #header {
        height: auto;
        background-size: contain;
    }

    #menu {
        text-align: center;
        padding-top: 10px;
    }

    .holder {
        flex-direction: column;
    }

    .block {
        width: 100%;
    }

    .contact-right {
        display: none;
    }
}