/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
.header-menu .button-bar a:hover,
.header-menu .button-bar a,
.menuitem .contact-button:hover,
#topfooter,
#topfooter a,
#topfooter p,
hr,
.prev, 
.next,
.teaser i,
button,
.button,
input[type=submit],
#bottomfooter p,
#bottomfooter a {
    color: var(--white);
}

/* BROWN */
.menuitem a,
h1,
h3,
h4,
p,
h2,
.button:hover,
a,
.form h4,
#decline,
#popup h3,
#selection,
.menuitem a:hover {
    color: var(--brown);
}

/* BLACK */
li i,
#selection{
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
.button:hover,
body,
.dropdown,
#teaserbox .box:hover {
    background: var(--white);    
}

/* BEIGE */
.menuitem a:last-child,
.bottommenu nav,
.bottommenu,
#teaserbox .box,
#hero {
    background-color: var(--beige);
}

/* GREY */
input,
.teaser,
textarea,
.topmenu,
#teaserbox {
    background: var(--grey);
}

/* BROWN */
.header-menu .button-bar a,
.menuitem .contact-button:hover,
#topfooter,
button,
.button,
.teaser i,
#bottomfooter,
input[type=submit],
#burgermenu .burger .line {
    background: var(--brown);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--brown);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem 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: 'Text';
    src: url(../font/panton-regular.otf);
}
@font-face {
    font-family: 'Bold';
    src: url(../font/pantono-bold.otf);
}
* {
    font-family: 'Text';
    line-height: 1.5; /* Anpassen basierend auf Font */
}
.header-menu .button-bar a,
.button:not(.contact-button),
#topfooter .box-one a {
    font-family: 'Bold';
    line-height: 1.5; /* Anpassen basierend auf Font */
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --brown: hsla(20, 13%, 26%, 1); 
    --black: #000000;
    --beige: #ded8d4;
}