@charset "utf-8";
@font-face{
	font-family: 'Playfair Display';
    src: url("../webfonts/PlayfairDisplay-VariableFont_wght.ttf") format(truetype);
}
:root{
    --NavHoehe: min(8rem, 13rem);
    --text-color1: #fef1d0;
    --text-color1a: oklch(from var(--text-color1) calc(l * 0.8) c h);
    --bg-color1: #606c38;
    --bg-color1a: oklch(from var(--bg-color1) calc(l * 1.2) c h);
    --bg-color1tr: oklch(from var(--bg-color1) l c h / 0.7);
    --bg-color2:#283618;
    --bg-color2a: oklch(from var(--bg-color2) calc(l * 1.2) c h);
    --bg-color2tr: oklch(from var(--bg-color2) l c h / 0.7);
    --box-color-shadow: rgba(254,241,208,0.6);
}
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(12px, calc(2vw + 0.5em),4em);
    color: var(--text-color1);
    background-color: var(--bg-color2);
    min-height: 100vh;
    display: flex;
}
a{
    text-decoration: underline;
    color: var(--text-color1);
}
.link2{
	color: var(--bg-color2);
    text-decoration: none;
	cursor: pointer;
}
.link2:hover{
	text-decoration: underline;
}
.todo{
	opacity: 0;
	transform: scale(0.8, 0.8);
	transition: 600ms ease;
}
.todo.show{
	opacity: 1;
	transform: scale(1, 1);
}

/*Naviagation Anfang*/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: var(--NavHoehe);
    background:var(--bg-color1);
    position: fixed;
    top:0;
    right:0;
    left:0;
    z-index: 99;
    transition: transform .25s .1s ease-in-out;
}
svg{
    fill: var(--text-color1);
    width: 3rem;
}
#navbar.down{
    transform: translate3d(0, max(-9.5rem, -14.5rem), 0);
}
nav label{
    margin-right: 2rem;
}
.logo{
    width: 80%;
}
.links-container{
    display: none;
}
.sidebar-container{
    display: flex;
    flex-direction: column;
    position: fixed;
    right: -18rem;
    width: 15rem;
    top: var(--NavHoehe);
    z-index: 11;
    background-color: var(--bg-color1);
    box-shadow: -0.2rem 0.2rem 0.3rem gray;
    transition: 0.75s ease-out;
}
#sidebar-active{
    display: none;
}
.close-sidebar-button{
    display: none;
}
#sidebar-active:checked ~ .sidebar-container{
    right: 0;
}
#sidebar-active:checked ~ .open-sidebar-button{
    display: none;
}
#sidebar-active:checked ~ .close-sidebar-button{
    display: block;
}
#sidebar-active:checked ~ #overlay{
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: var(--NavHoehe);
    left: 0;
    z-index: -1;
    background: rgba(85, 85, 85, 0.5);
}
.nav1, .nav2, .nav3{
    padding: 1rem;
}
.nav1:hover, .nav2:hover, .nav3:hover{
    background-color: var(--bg-color2);
}
/*Naviagation Ende*/

/*Seitenbereich Anfang*/
.grid-container{
    justify-content: center;
    width: 100%;
    display: grid;
    grid-auto-columns: 2rem 1fr 2rem;
    grid-auto-rows: var(--NavHoehe) 1fr auto;
    grid-template-areas:
    "header header header"
    ". main side"
    "footer footer footer";
}
.header{
    position: fixed;
    top: 0;
}
.main{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
	gap: 1rem;
	overflow: hidden;
    margin-top: 1rem;
}
.side{
    display: flex;
    justify-content: flex-end;
    margin-top: 80vh;
}
.sticky{
    position: sticky;
    top: 80vh;
    width: 3rem;
    height: 3rem;
    background: var(--bg-color1tr);
    border-radius: 50%;
}
.footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
	margin-top: 2rem;
    padding: 2rem;
    color: var(--bg-color2);
    background-color: var(--text-color1);
}
[class^="box"]{
    box-sizing: border-box;
    width: 100%;
    position: relative;
    text-align: center;
}
.text{
    
    position: relative;
    background: var(--bg-color1tr);
    border: 0.2rem solid var(--box-color-shadow);
    border-radius: 1rem;
    padding: 1rem;

}
.text_big{
    position: relative;
    background: var(--bg-color1tr);
    border: 0.2rem solid var(--box-color-shadow);
    border-radius: 1rem;
    padding: 1rem;
	height: 30rem;
    overflow-y: scroll;
}

.text ul{
    text-align: left;
    list-style-position: inside;
    padding-left: 2rem;
}
.text li{
    text-indent: -2.2rem;
    padding-left: 3rem;
}
.boxBaseline{
	align-self: flex-end;
}

@media screen and (min-width: 768px){
	.body{
	font-size: clamp(14px, calc(1.5vw + 0.5em), 4em);
        
	}
    
}

@media screen and (min-width: 992px) {
    .body{
        
        font-size: clamp(16px, calc(1vw + 0.55em), 4em);
        background: url("../images/background/Curve_EndPage.png") bottom no-repeat, url("../images/background/BG_2560x2.jpg") repeat-y;
	    background-size: 100vw 20rem, 100vw;
    }
    
    .sidebar-container{
        display: none;
    }
    .open-sidebar-button,
    .close-sidebar-button{
        display: none;
    }
    .logo{
        width: min(40%, 40rem);
    }
    .links-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem ;
        font-size: 2.1rem;
        width: 50%;
    }
    .nav_1 .nav_2 .nav_3{
	    display: flex;
    }
    .nav_1::after{
	    content: '';
    	position: absolute;
    	margin-left: -2rem;
    	z-index: -1;
    	height: 3.1rem;
    	width: 3.1rem;
    	background: url("../images/PageContent/MonsteraCopper.png");
    	opacity: 0.5;
    	transition: 0.5s;
    }
    .nav_2::after{
    	content: '';
    	position: absolute;
    	margin-left: -2rem;
    	z-index: -1;
    	height: 3.1rem;
    	width: 3.1rem;
    	background: url("../images/PageContent/MonsteraCopper.png");
    	opacity: 0.5;
    	transition: 0.5s;
    }
    .nav_3::after{
    	content: '';
    	position: absolute;
    	margin-left: -2rem;
    	z-index: -1;
    	height: 3.1rem;
    	width: 3.1rem;
    	background: url("../images/PageContent/MonsteraCopper.png");
    	opacity: 0.5;
    	transition: 0.5s;
    }
    .nav_1:hover::after{
    	opacity: 1;
    	transform: scale(1.5) rotate(-70deg) translate(10px, 5px);
    }
    .nav_2:hover::after{
    	opacity: 1;
    	transform: scale(1.5) rotate(-70deg) translate(10px, 5px);
    }
    .nav_3:hover::after{
	    opacity: 1;
    	transform: scale(1.5) rotate(-70deg) translate(10px, 5px);
    }
    .grid-container{
        grid-auto-columns: min(3rem) min(90vw, 1200px) min(3rem);
    }
    .main{
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer{
        font-size: 1.3rem;
        flex-direction: row;
        align-content: flex-start;
        align-items: flex-end;
        margin-top: 5rem;
    }
    .box1{
        width: 93%;
    }
    .box2{
        width: 45%;
    }
    .box3{
        width: 45%;
    }
    .text{
        font-size: 1.2rem;
        background: var(--bg-color2tr);
    }
    .text_big{
        height: auto;
        overflow: auto;
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1200px) {
    .box3{
        width: 33%;
    }
    
    
}