/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
.footer-social i,
.menuitem a,
hr,
h1,
.prev, 
.next,
.teaser i,
button,
.button,
input[type=submit],
#bottomfooter p,
#bottomfooter a {
    color: var(--white);
}

/* BROWN */
.dropdown li a:hover,
#bottomfooter p,
#bottomfooter a,
#topfooter p,
#topfooter a,
#topfooter h3,
a,
.form h4,
#decline,
#popup h3,
#selection {
    color: var(--brown);
}

/* BLACK */
.dropdown .menuitem a,
#bottomfooter a,
#bottomfooter p,
.dropdown a,
h2,
h3,
h4,
p,
li i,
#selection,
#topfooter p,
#topfooter a,
header.scrolled nav li a {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
#burgermenu .burger .line,
#topfooter,
#bottomfooter,
body,
.dropdown,
#teaserbox .box {
    background: var(--white);    
}

/* GREY */
input,
textarea,
.topmenu {
    background: var(--grey);
}

/* Light BROWN */
.teaser{
    background: var(--light-brown);
}

/* BROWN */
.footer-social li,
button,
.button,
.teaser i,
input[type=submit],
#topfooter nav a::after,
#topfooter .address a::after {
    background: var(--brown);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}
header.scrolled {
  background-color: #fff;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--brown);
}

/**** BOX SHADOW ****/
#popup {
    -webkit-backdrop-filter: blur(3rem);
    backdrop-filter: blur(3rem);
    box-shadow: var(--black) 0 0 10rem -4rem;
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}
#popup a,
#bottomfooter a {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Roboto slab';
    src: url(../font/Roboto_Slab/static/RobotoSlab-Regular.ttf);
}
@font-face {
    font-family: 'Montserrat';
    src: url(../font/Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat bold';
    src: url(../font/Montserrat/static/Montserrat-Bold.ttf);
}
@font-face {
    font-family: 'Montserrat medium';
    src: url(../font/Montserrat/static/Montserrat-Medium.ttf);
}

* {
    font-family: 'Roboto slab';
    line-height: 1.5;
}

.form .address a,
a,
.content .text h2,
.content .text h3,
.dropdown .menuitem a,
#bottomfooter a,
#topfooter a,
#topfooter p,
p {
    font-family: 'Montserrat';
}
#topfooter .name{
    font-family: 'Montserrat medium';
}
.nav li a{
    font-family: 'Montserrat bold';
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --brown: #422817; 
    --black: #000000;
    --light-brown: #f1efec;
}