/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
#nav .button:hover,
#bottomfooter,
hr,
h1,
.prev, 
.next,
.teaser i,
.teaser h3,
button,
.button,
input[type=submit]{
    color: var(--white);
}

/* WHITE 2 */
#hero p{
    color: var(--white-2);
}
/* GREY 3 */
.right p,
.teaser-caption p {
    color: var(--grey-3);
}

/* GREY 5 */
#bottomfooter p{
    color: var(--grey-5);
}

/* GREY 6 */
#nav li a{
    color: var(--grey-6);
}
/* GREEN */
#nav li a:hover,
#teaserbox i,
#nav .button,
.teaser a:hover,
a,
.form h4,
#decline,
#popup h3,
#selection,
.menuitem a:hover {
    color: var(--green);
}

/* BLACK */
#bottomfooter a,
h2,
h3,
h4,
p,
li i,
#selection,
.menuitem a,
#topfooter p,
#topfooter a {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
#nav .button,
.teaser a:hover,
body,
.bottommenu nav,
.bottommenu,
.dropdown,
#teaserbox{
    background: var(--white);    
}

/* GREY */
input,
textarea,
.topmenu,
#topfooter {
    background: var(--grey);
}

/* GREY 2 */
#teaserbox .box {
    background: var(--grey-2);
}

/* GREY 4 */
.contact,
#about  {
    background: var(---grey-4);
}

/* GREEN */
#nav .button:hover,
button,
.button,
.teaser i,
input[type=submit],
#burgermenu .burger .line {
    background: var(--green);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--green);
}

/**** 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: 'Text';
    src: url(../font/Roboto/static/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'lightbold';
    src: url(../font/Roboto/static/Roboto-Medium.ttf);
}
* {
    font-family: 'Text';
    line-height: 1.5; /* Anpassen basierend auf Font */
}
#nav li a {
    font-family: 'lightbold';
    line-height: 1.5; /* Anpassen basierend auf Font */
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --green: #22a360; 
    --black: #000000;
    --grey-2: #fefefe;
    --grey-3: #7c8595;
    --white-2: #e1e1e1;
    ---grey-4: #f8f8f8;
    --grey-5: #454545;
    --grey-6: #405263;
}