/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
#nav .dropdown a:hover,
#nav .dropdown a,
#nav .vertical a:hover,
.fa-caret-down,
.menuitem a,
hr,
h1,
.prev, 
.next,
.teaser i,
button:hover,
.button:hover,
input[type=submit]{
    color: var(--white);
}

/* LIGHT GREY */
#bottomfooter p,
#bottomfooter a,
#topfooter a,
#topfooter p,
.fa-cart-shopping,
#topfooter .footer-box a,
button,
.button,
h2,
h3,
h4,
p,
a,
.form h4,
#decline,
#popup h3,
#selection {
    color: var(--light-grey);
}

/* BLACK */
li i,
#selection,
.menuitem a.scrolled {
    color: var(--black);
} 

/* TURQUOISE */
#linkblock a,
#nav .menuitem a:hover,
 a:hover {
    color: var(--turquoise);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}
#nav .menuitem a {
text-shadow: 10px 10px 10px rgba(0,0,0,1);
}
#nav .vertical a ,
#nav .dropdown a {
    text-shadow: none;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
#burgermenu .burger .line,
body,
#teaserbox .box {
    background: var(--white);    
}

/* GREY */
#bottomfooter,
input,
.teaser,
textarea,
#teaserbox,
#topfooter {
    background: var(--grey);
}

/* LIGHT GREY */
.teaser i,
input[type=submit]{
    background: var(--light-grey);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}


/* TURQUOISE */
#accept,
button:hover,
.button:hover {
    background: var(--turquoise);
}

/* OTHER */
header,
button,
.button {
    background-color: transparent;
}
#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
#accept,
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--light-grey);
}
.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;
}
#popup a,
#bottomfooter a {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
nav,
#more,
header,
.all i,
.dropdown,
.menuitem a,
.logo-scroll,
.logo-default,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Text';
    src: url(../font/Raleway/static/Raleway-Regular.ttf);
}
* {
    font-family: 'Text';
    line-height: 1.5; /* Anpassen basierend auf Font */
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --light-grey: #646462; 
    --black: #000000;
    --light-brown: #6c5b48;
    --beige: #988d7a;
    --turquoise: #8ab8a9;
    --green: #0f5546;
}