/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
button,
.button,
footer a,
footer p,
footer h3,
.teaser i,
.menuitem a,
footer a:hover,
input[type=submit],
#nav .dropdown li:hover a{
    color: var(--white);
}

/* RED */
a,
.form h4,
#decline,
#popup h3,
#selection {
    color: var(--red);
}

/* BLACK */
p,
h1,
h2,
h3,
h4,
li i,
.prev, 
.next,
#selection,
#nav .dropdown li a {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

footer a {
    color: #8f96a3;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
#teaserbox .box,
#nav .dropdown li {
    background: var(--white);    
}

/* RED */
input,
button,
.button,
.teaser i,
input[type=submit],
#burgermenu .burger .line {
    background: var(--red);
}

/* BLACK */
footer,
button:hover,
.button:hover,
input[type=submit]:hover,
#nav .dropdown li:hover {
    background: var(--black);
}

/* OTHER */
#selection,
#burgermenu,
#decline {
    background: transparent;
}

#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--red);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}

/**** 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,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Helvetica';
    src: url(../font/helvetica-neue-lt-pro-2/HelveticaNeueLTProThEx.otf);
}
@font-face {
    font-family: 'Garamond';
    src: url(../font/itc-garamond/ITCGaramondStd-BkCond.ttf);
}
* {
    font-family: 'Helvetica';
    letter-spacing: 1px;
    font-size: 1rem;
    line-height: 1.3;
}
.menuitem a {
    font-family: 'Garamond';
    letter-spacing: initial;
    line-height: 1;
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --red: #e30613; 
    --black: #000000;
}