/*
Binder pour contemporavy 2.0
Binder OG Author: Clement Valla
Version: October 2025
*/

 *{
 	margin: 0;
	padding: 0;
 }
html {
	width: 100%;
	height: 100%;
}

body {
	position: relative;
	width: 100%;
	height: 100%;
	min-width: 900px;

	background: linear-gradient(270deg, #00c5fc, #0ef95f, #f9ea0e, #f90e0e, #ffffff);
    background-size: 800% 800%;
    animation: k18a 15s ease infinite;
    color: #000;
    font-family: 'text-medium';
    font-size: 1.0em;
    line-height: 1.3em;
}



div#background-site {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index:1;
}

div#background-site iframe {
	width: 100%;
	height: 100%;
	border: none;
	overflow: scroll;
}

div#menu {
	position: fixed;
	left: 10px;
	top: 40%;
	color: white;
	letter-spacing: .01em;
	z-index:10;
	padding: 13px;
	padding-right: 15px;
	font: 15px/25px;
    font-family: 'text-medium';
    /*letter-spacing: -0.3px;*/
	cursor: move;
	/*box-shadow: #fefb00 3px 3px 0, 6px 6px 0px #ff0000;*/
	box-shadow: #00ff00 3px 3px 0, 6px 6px 0px #0000ff;
	border-style: solid;
	border-color: #000;
	background-color: white;
}

img#logo {
	z-index: 20;
	position: fixed;
	right: 70px;
	top: 60px;
	width: 350px;
}

img#binder-clip{
	margin-top: -38px;
    position: fixed;
    margin-left: 80px;
    z-index: 20;
    -ms-transform: rotate(-27deg);
    -webkit-transform: rotate(-27deg);
    transform: rotate(-27deg);
}

ul#navigation {
	margin: 0;
	padding:0;
	list-style-type: none;
}

ul#navigation li{
	padding:0;
	margin:0;
	width:auto;
}

ul#navigation a, div.about{
    color: #0000ff;
	padding: 0;
	text-decoration: none;
	padding: 1px;
}
ul#navigation a.active{
	color: #000;
}
ul#navigation a:hover{
	color: #000;
}
ul#navigation .current_page_item a {
	color: #0000ff;
}

div.about{
	position: fixed;
    font-family: 'text-medium';
    font-size: 14px;
    line-height: 19px;
    z-index: 100;
	color: #000;
	z-index: 90;
	/*max-width: 377px;*/
	width: auto;
	right: 145px;
	top: 215px;
}


/* @group mobile */
@media only screen and (max-width: 720px) {
	body, html{
	position: relative;
		width: 100%;
	}
	div#background-site{
		-webkit-overflow-scrolling:touch; 
		overflow:auto;
	}
	div#background-site iframe{
		width: 100%;
		height: 5500px;
		overflow: hidden;
	}
	div#menu {
		position: fixed;
		width:100%;
		font-size: 16px;
		line-height: 22px;
		padding: 10px;
		z-index:10;
		left: 2px;
        right: 2px;
		top: 2px;
	}
	img#logo{
		position: fixed;
		left:50%;
		top:10px;
		margin-left: -80px;
		width:60px;
		margin: left:10%;
	}
	ul#navigation{
		display: none;
		text-indent: -1.5em;
		margin-left:1.5em; 
		margin-top: 20px;
	}
	div#menu-open{
		width: 30px;
		height: 35px;
		cursor: pointer;
	}
	div#menu-open div {
	    background-color: black;
	    border: 1px solid black;
	    border-radius: 2px 2px 2px 2px;
	    height: 15%;
	    margin-bottom: 15%;
	    width: 90%;
	}
	.border{
	}
	div.about{
		width: auto;
		display: none;
	}
}
/* @end */

.text-line {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 1em; /* Standardgröße für animierte Textzeilen */
}

/* Bilder responsiv machen */
img {
    max-width: 100%; /* Maximale Breite des Bildes ist 100% des übergeordneten Containers */
    height: auto;    /* Höhe passt sich der Breite proportional an */
}

/* Media Query für mobile Geräte */
@media only screen and (max-width: 600px) {
    body {
        font-size: 1.2em; /* Verkleinerte Schriftgröße für mobile Geräte */
    }

    .text-line {
        font-size: 0.9em; /* Kleinere Schriftgröße für animierte Textzeilen */
    }

    /* Anpassungen für Bilder auf mobilen Geräten */
    img {
        max-width: 100%; /* Stellt sicher, dass die Bilder nicht breiter als der Bildschirm sind */
        height: auto;    /* Höhe bleibt proportional zur Breite */
    }

    #container {
        padding: 20px 0; /* Weniger Padding auf mobilen Geräten */
    }
}
