:root{
    --white: #f8f8f8;
    --black: #343434;
    --gray: #898989;
    --tomato: #B41900;
    --lightdough: #E6D2B4;
    --darkdough: #B48C5A;
    --lighttext: #ffE9C9;
    --darktext: #6E5435;

} /* variables*/

/* General and reset *************************************************/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color: var(--darktext);
    font-family: 'Vollkorn', serif;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
}
h1{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--darkdough);
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
}
h2{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--tomato);
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Icons *************************************************/
.divider-with-icon{
    position: relative;
    height: 100px;
    margin-top: 3rem;
}
.iconwrapper{
    z-index: 6;
    position: absolute;
    background-color: white;
    padding: 10px;
    top: 0%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.iconwrapper img{
    height: 80px;
}
.icondividerwrapper{
    padding-top: 50px;
    height: 100px
}


/* Layout **********************************************************/
.onecolumn{
    width: 80%;
    max-width: 1000px;
    display: block;
    margin: 3rem auto;
}

.columnwrapper{
    /*just for desktop important*/
}
.twocolumn, .twocolumnportrait{
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 30px;
}
div.twocolumn:has(img){
    padding: 0 !important;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}
.twocolumnfullsizeimage{
    height: auto;
    width: 100%;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 50%;
    transform: translateX(-50%)
}
.twocolumnportrait{ /*additional*/
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    text-align: center;
}
.portraitimage{
    width: 40%;
    border-radius: 50%;
    margin: 0 2% 0 2%;
}


a{
    text-decoration: none;
    color: var(--tomato);
}
a:hover{
    text-decoration: underline;
}
ul{
    list-style: none;
}

/* Dividers *************************************************/
hr.divider{
    border-top: 0.5px solid var(--lightdough);
    width: 80%;
    max-width: 1150px;
    display: block;
    margin: auto;
}
hr.headerdivider{
    display: none;
}

/* Header *************************************************/
.header{
    background-color: var(--tomato);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*box-shadow: 1px 1px 5px 0px var(--gray);*/
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    line-height: normal;
    z-index: 9;
}
.header.startpage{
    height: 66vh;
    z-index: 6;
}
.header-cta-btn{
    float: right;
    margin: 27px 27px auto auto;
}

/* Logo *************************************************/
.logomobile{
    display: flex;
    position: absolute;
    color: var(--lightdough);
    text-decoration: none;
    font-weight: 500;
    font-size: 6.5vw;
    text-align: center;
    align-items: center;
    top: 43px;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
a.logomobile:hover{
    text-decoration: none;
}
.logomobile img{
    height: 2em;
    max-height: 60px;
    display: inline;
    margin-right: 10px;
    margin-bottom: 5px;
}
.claim{
    font-style: italic;
    font-weight: 400;
    font-size: 2.2vh;
    line-height: 0.8;
    padding-left: 8px;
}
.logo.startpage .claim{
    color: var(--darkdough) !important;
}
/* Desktoplogo hidden on mobile*/
.logo{
    display: none;
}

/* Toolbar/Nav *************************************************/
.toolbar{
    background-color: var(--tomato);
    box-shadow: 0px 0px 5px 0px black;
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    line-height: normal;
    z-index: 7;
}
.nav{
    width: 100%;
    height: 100%;
    /*background-color: var(--tomato);*/
    overflow: hidden;
}
.menu a{
    display: block;
    padding: 20px;
    color: var(--lighttext);
}
.naveldivider{
    display: none;
    padding: 20px 0 20px 0;
    color: var(--lighttext);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon *************************************************/
.hamb{
    cursor: pointer;
    float: left;
    padding: 40px 27px;
}/* Style label tag */

.hamb-line {
    background: var(--lighttext);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--lighttext);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon *************************************************/
.side-menu:checked ~ nav{
    max-height: 100% !important;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/* Footer *************************************************/
footer{
    color: var(--darkdough);
    margin: 3rem;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}
footer a{
    color: var(--darkdough);
}
svg.footerimage{
    display: block;
    margin: 2rem auto 3rem auto;
    width: 10rem;
}


/* Contact Form ********************************************************/
/* NOT FOR THE ANGULAR BOOKING TOOL ********************************************************/
input,
button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}
form.material.form-content {
    display: grid;
    width: 64rem;
    max-width: 100%;
}
.inputfield {
    display: grid;
    overflow: visible;
    margin: 0 2rem;
    position: relative;
}
.inputfield label {
    color: var(--darktext);
    font-size: 1.1rem;
    position: absolute;
    top: 1rem;
}
.inputfield input {
    background-image: linear-gradient(to bottom, transparent calc(100% - 0.125rem), #ccc 0.125rem);
    font-family: sans-serif;
    font-size: 1.1rem;
    border: none;
    outline: none;
    padding: 3rem 0 0.5rem 0;
}
.material-textarea{
    background-image: linear-gradient(to bottom, transparent calc(100% - 0.125rem), #ccc 0.125rem);
    margin: 3rem 0;
    color: var(--darktext);
    font-family: sans-serif;
    font-size: 1.1rem;
    line-height: inherit;
    border: none;
    line-height: 1.2;
    height: 10rem;
}
.inputfield.hint {
    color: #999;
    font-size: 1.75rem;
    font-weight: 500;
    margin: 1rem 0;
}
button.material {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.325rem 0.125rem #0003;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    padding: 0.5rem 1.5rem;
}
button.material.flat {
    background: none;
    box-shadow: none;
}
button.material.primary {
    background-color: var(--tomato);
    font-family: sans-serif;
    color: var(--lighttext);
}
button.material.accent {
    background-color: var(--lightdough);
    font-family: sans-serif;
    color: var(--darktext);
}
button.material.cta {
    font-size: 18px;
    padding: 1rem 2rem;
}



/* Meke it responsive *************************************************/
/**********************************************************************/
/**********************************************************************/

/*Only Mobile*/
@media (max-width: 768px) {
    .hideonmobile{
        display: none !important;
    }
    .toolbar.startpage{
        position: fixed;
        /*background-color: transparent;*/
        width: 82px;
    }
    .logo.startpage{
        display: block;
        margin: 0;
        color: var(--lightdough);
        font-size: 4.5vh;
        font-weight: 500;
        text-decoration: none;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .logo img{
        height: 22vh
    }
    .claim{
        font-size: 2.9vh;
    }
    .side-menu:checked ~ nav{
        /*position: fixed;*/
        width: 100vw;
        background-color: var(--tomato);
        z-index: 6;
    }
}

/*Desktop*/
@media (min-width: 768px) {

    body{
        font-size: 1.3rem;
        line-height: 1.7;
    }
    
    hr.divider{
        width: 70%;
    }
    
    .onecolumn{
        width: 60%;
    }    
    .columnwrapper{
        display: flex;
        /*flex-wrap: wrap; /*allow wrapping items*/
        flex-direction: row;
        align-items: center;
    }
    .twocolumn, .twocolumnportrait{
        padding: 5%;
        overflow-wrap: anywhere;
        flex-grow: 1;
        flex-basis: 50%; /*50% for two in a row, 33% three in a row etc.*/
        flex-direction: column;
    }
    .twocolumnfullsizeimage{
        height: 40vw;
        width: auto;
    }
    .portraitimage{
    }
    
    header:not(.startpage){
        height: 27vh;
    }
    
    hr.headerdivider{
        display: block;
    }

    .nav{
        max-height: none;
        top: 0;
        position: relative;
        width: fit-content;
        display: block;
        margin: auto;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
    }
    .naveldivider{
        display: block;
    }

    .hamb{
        display: none;
    }
    
    .logomobile{
        display: none;
    }
    
    .logo{
        display: block;
        margin: 0;
        color: var(--lightdough);
        font-size: 3.4vh;
        font-weight: 500;
        text-decoration: none;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        /* float: left; /* Only for Bookingtool */
    }
    a.logo:hover{
        text-decoration: none;
    }
    .logo img{
        height: 13vh
    }
    .logo.startpage{
        font-size: 4.5vh;
    }
    .logo.startpage img{
        height: 18vh;
        margin-top: 10%;
    }
    .logo.startpage .claim{
        font-size: 2.9vh;
    }
}