/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
h1,
.prev, 
.next,
.teaser i,
#teaserbox h3 {
    color: var(--white);
}

/* GREEN */
a,
#selection {
    color: var(--green);
}

/* BLACK */
h2,
h3,
h4,
p,
li i,
.logo,
button,
.button,
.form h4,
#popup h3,
.arrow-btn,
header a,
#selection,
.menuitem a,
#topfooter p,
#topfooter a,
#bottomfooter a,
input[type=submit] {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

#topfooter a:hover,
#bottomfooter a:hover,
.menuitem a:hover {
    color: #949494;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
.bottommenu nav,
.bottommenu,
.dropdown,
#teaserbox .box {
    background: var(--white);    
}

/* BLACK */ 
#burgermenu .burger .line {
    background: var(--black);
}

/* GREY */
#nav,
input,
footer,
.teaser,
textarea {
    background: var(--grey);
}

/* GREEN */
.teaser i {
    background: var(--green);
}

#selection,
#burgermenu {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
input:focus,
textarea:focus {
    outline: 1px solid var(--green);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}

#nav {
    border: solid var(--white) 40px;
}
footer {
    border-left: solid var(--white) 40px;
    border-right: solid var(--white) 40px;
}

/**** 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;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
.dropdown,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Michroma';
    src: url(../font/Michroma/Michroma-Regular.ttf);
}
@font-face {
    font-family: 'Montserrat';
    src: url(../font/Montserrat/Montserrat-VariableFont_wght.ttf);
}
.logo, footer h3, h1, h2, h3, h4, h5, header * {
    font-family: 'Michroma';
    text-transform: uppercase;
    line-height: 1.5;
}
*,
#text *,
footer * {
    font-family: 'Montserrat';
    line-height: 1.5;
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #e7eadb;
    --green: #9d9c71; 
    --black: #000000;
}