/*@import url("scrollbar.css");*/
@import url("colors.css");


@font-face {
    font-family: 'schick';
    src: url('/fonts/MonsieurLaDoulaise-Regular.woff') format('woff'),
         url('/fonts/MonsieurLaDoulaise-Regular.ttf') format('truetype');
} 





* {
    margin: 0;
    padding: 0;
}




body { 
    margin: 0; 
    background: rgb(22,15,15); 
    font-family:'Courier New', Courier, monospace; 
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(22,15,15);
    background: linear-gradient(0deg, rgba(22,15,15,1) 0%, rgba(34,88,28,1) 56%, rgba(111,170,64,1) 100%); 
}


.nyan {
    position: absolute;
    left: 0;
    width: 200px;
    
    transform: translateX(-200px); /* initially */
    
    animation-name: fly;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
    cursor: pointer;

    filter: brightness(70%);
}

@keyframes fly {
    0%   { transform: translateX(-200px); }
    100% { transform: translateX(100vw); } /* vw ist die länge des windows in prozent */
}

#waldzell-logo {
    height: calc(100% - 10px - 60px);
    text-align: center;
    margin: 5px;
    margin-top: 65px;
}

#waldzell-logo img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.foreground {
    position: relative;
    margin: auto;
    width: 100%;
    pointer-events: none;
}

.foreground * {
    pointer-events: visible;
}

.foreground .blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.1);
    font-size: 1em;
    box-shadow: 10px 10px  rgba(34,88,28,0.1);
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.foreground .blur p {
    margin: 0;
}

.foreground .blur img,video {
    width: 80%;
    margin: 1em;
}


.foreground .zitat {
    background-color: none;
    font-size: 3em;
    overflow: hidden;
    color: white;
    margin-top: 20%;
    margin-bottom: 20%;
    text-shadow: 0px 0px 15px white;
    text-align: center;
}

#slogan {
    position: fixed;
    pointer-events: none;
    transform: rotate(-90deg);
    left: -140px;
    top: 240px;
    opacity: 0.5;
}











#navigation {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: var(--secondary-color);
    font-family: schick;

    background-color: rgba(34,88,28,1);
    border-bottom-style: solid;
    border-width: 0.5mm;
    box-sizing: border-box;
    border-color: black;
    
    font-size: 2.4em;
    text-align: center;
    z-index: 100;
}


#menu_bar {
    position: relative;
    width: 50%;
}

#menu_bar li {
    list-style: none;
    display: none;
	position: relative;
    line-height: 60px;
    /*background-color: var(--secondary-color);*/
    background-color: rgba(34,88,28,1);
    border-bottom-style: solid;
    border-right-style: solid;
    border-width: 0.5mm;
    box-sizing: border-box;
    border-color: black;
}

#menu_symbol {
    display: block;
    height: 60px;
    width: 60px;
    /*background-color: var(--secondary-color);*/
}

#menu_symbol img {
    height: 100%;
    transform: scale(0.8,0.8);
}

#menu_symbol:hover + #menu_bar li , #menu_bar:hover li {
    display: block;
}

#menu_bar li a {
    display: block;
    text-decoration: none;
    /*font-size: 20px;
    color: var(--main-color);*/
    color: white;
    text-shadow: 0px 0px 5px white;
    padding: 0 10px;
}

#menu_bar li ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0px;
}

#menu_bar li:hover ul {
    display: block;
}

#menu_bar li a.active {
    color: black;
    text-shadow: 0px 0px 5px black;
    /*color: var(--secondary-color);
    background-color: var(--main-color);*/
}

#menu_bar li a:hover {
    color: rgba(111,170,64,1);
    text-shadow: 0px 0px 5px rgba(111,170,64,1);
    /*color: var(--secondary-color);
    background-color: var(--select-color);*/
}

#menu_bar li a:hover + #menu_bar li ul {
    display: block;
}




/*



body {
    background-color: var(--main-color);
}

.wrapper {
    width: 100%;
}







.text_block {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    background-color: var(--secondary-color);

    color: var(--text-color);
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    text-align: justify;
}

.text_block p {
    padding: 10px 0;
}

.text_block h1 {
    font-size: 25px;
    padding: 10px 0;
}

.text_block ul {
    padding: 10px 0;
}

.text_block ul li {
    list-style-type: square;
    list-style-position: inside;
    padding-left: 20px;
}

.text_block img,video {
	width: 100%;
}

div.center {
	text-align: center;
}


.image_gallery {
    width: calc(100% - 20px);
    background-color: var(--secondary-color);
    padding: 10px;

    display: grid;  
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    grid-auto-flow: dense row;
}

.image_gallery img,video {
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.image_gallery img.i2x2,video.i2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.image_gallery img.i3x3,video.i3x3 {
    grid-column: span 3;
    grid-row: span 3;
}

.image_gallery img.i2x3,video.i2x3 {
    grid-column: span 2;
    grid-row: span 3;
}

.image_gallery img.i1x3,video.i1x3 {
    grid-column: span 1;
    grid-row: span 3;
}

.image_gallery img.i3x2,video.i3x2 {
    grid-column: span 3;
    grid-row: span 2;
}

.image_gallery img.i3x1,video.i3x1 {
    grid-column: span 3;
    grid-row: span 1;
}

.image_gallery img.i2x1,video.i2x1 {
    grid-column: span 2;
    grid-row: span 1;
}

.image_gallery img.i1x2,video.i1x2 {
    grid-column: span 1;
    grid-row: span 2;
}


#showRoom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    display: none;
    
    background-color: rgba(0.0,0.0,0.0,0.5);
    backdrop-filter: blur(10px);

    user-select: none;

}

#showRoom .button {
    position: absolute;
    display: block;
    background-color: var(--secondary-color);
    
    width: 3em;
    height: 3em;

    cursor: pointer;
}

#showRoom .button img {
    height: 100%;
    transform: scale(0.8,0.8);
}

#showRoom .button:hover {
    background-color: var(--select-color);
}

#showRoom-close {
    right: 0;
    top: 0;
}

#showRoom-right {
    right: 0;
    top: calc(50% - 1.5em);
}

#showRoom-left {
    left: 0;
    top: calc(50% - 1.5em);
}
*/

@media only screen and (min-width: 768px) {
    .foreground {
        width: 600px;
        margin: 0 auto;
    }

    #menu_bar {
        width: 100%;
    }

    #menu_bar li {
        /*display: block;*/
        position: relative;
        display: inline-block;
        background: none;
        border-style: none;
        /*float: left;*/

    }

    #menu_bar li ul {
        position: absolute;
        top: 60px;
        left: 0px;
        float: none;
    }

    #menu_symbol {
        display: none;
    }

    #menu_bar li a:hover {
        display: inline-block;
    }

    #menu_bar:hover li {
        display: inline-block;
    }

    .foreground .zitat {
        font-size: 5em;
    }

    .foreground .blur {
        font-size: 2em;
    }

}

@media only screen and (min-width: 1200px) {
    .foreground {
        width: 1100px;
        margin: 0 auto;
    }
    /*
    .image_gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    */
}


/*
#shaderBG {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	pointer-events: none;
	z-index: -1;
}
*/
