@CHARSET "ISO-8859-1";

* {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: titleFont;
	src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
	font-family: standardFont;
	src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
	font-family: captchaFont;
	src: url(../fonts/monofont.ttf);
}

h1{
	font-size: 3em;
	font-family: standardFont, Arial, Helvetica, sans-serif;
	color: white;
	margin: 0;
	padding: 0.67em 0.2em;
}

h2{
	font-size: 2em;
	font-family: standardFont, Arial, Helvetica, sans-serif;
	color: white;
	margin: 0;
	padding: 0.67em 0.2em;
}

p {
	font-size: 1.1em;
}

body {
	margin: 0;
	padding: 0;
	font-family: standardFont, Arial, Helvetica, sans-serif;
    background: #1f1f1f;
	color: white;
}

.view-page{
	min-height: 100vh;
	border-bottom: 1px solid white;
}

nav {
	height: 90px;
	border-bottom: 1px solid white;
	text-align: right;
}

nav ul {
	list-style: none;
	font-size: 1.1em;
	margin: 0;
	padding: 0;
	padding-top: 25px;
}

nav ul li {
	padding-left: 17px;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 20px;
	border: 1px solid #1f1f1f;
}

nav ul li:hover {
	border: 1px solid white;
	border-radius: 20px;
}

nav a {
	color: white;
	text-decoration: none;
}

a {
	color: white;
	text-decoration: underline;
}

a:hover {
	color: white;
}

#nav-icon1 {
	display: none;
	width: 40px;
	height: 45px;
	position: absolute;
	right: 20px;
	top: 26px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
  }
  
  #nav-icon1 span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: white;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
  }
  
  #nav-icon1 span:nth-child(1) {
	top: 0px;
  }
  
  #nav-icon1 span:nth-child(2) {
	top: 15px;
  }
  
  #nav-icon1 span:nth-child(3) {
	top: 30px;
  }
  
  #nav-icon1.open span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
  }
  
  #nav-icon1.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
  }
  
#nav-icon1.open span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.logo-screen{
	position: absolute;
	height: 100vh;
	width: 97vw;
	background-color: #1f1f1f;
	animation: opacityOnMain 3s normal forwards;
}

.image-container{
	position:absolute;
	top: calc(50% - 284px);
	left: calc(50% - 284px);
	z-index: 20;
	animation: opacityOnContainer 3s normal forwards;
}

@keyframes opacityOnMain {
    0% {
        opacity: 1;
    }
	75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes opacityOnContainer {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
	75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#content {
	margin: 0 10%;
}

#home{
	display: grid;
	grid-template-rows: 1fr 2fr 212px 1fr;
	text-align: center;
}

.headline{
	height: 150px;
}

.home-page-titleline{
	font-weight: lighter;
	font-size: 4em;
	margin: 0;
	padding: 0;
	font-family: titleFont, Arial, Helvetica, sans-serif;
}

.home-page-subtitle{
	font-weight: lighter;
	font-size: 2em;
	margin: 0;
	padding: 0;
	font-family: titleFont, Arial, Helvetica, sans-serif;
}

@keyframes moveFromLeft1 {
    50% {
        margin-left: -800px;
    }
    100% {
        margin-left: calc(50% - 200px);
    }
}

@keyframes moveFromLeft2 {
    50% {
        margin-left: -800px;
    }
    100% {
		margin-left: calc(50% - 230px);
    }
}

@keyframes moveFromLeft3 {
    50% {
        margin-left: -800px;
    }
    100% {
		margin-left: calc(50% - 300px);
    }
}

@keyframes moveFromLeft4 {
    50% {
        margin-left: -800px;
    }
    100% {
		margin-left: calc(50% - 290px);
    }
}

@keyframes moveFromLeft5 {
    50% {
        margin-left: -800px;
    }
    100% {
		margin-left: calc(50% - 260px);
    }
}

.reachup-logo-image{
	height: 25vh;
}

.team-image{
	width: 800px;
}

.qr-code-image{
	max-width: 80%;
}



/*--------------------------------------------------------------------------------------------
Info
--------------------------------------------------------------------------------------------*/

#info-view{
	padding-top: 10%;
	font-size: 1.2em;
	text-align: center;
}

#info-view img{
	width: 15px;
}

/*--------------------------------------------------------------------------------------------
about us
--------------------------------------------------------------------------------------------*/

#about-us{
	text-align: center;
}

#about-us h1{
	font-size: 3em;
}

/*--------------------------------------------------------------------------------------------
Registration
--------------------------------------------------------------------------------------------*/

#registration {
	text-align: center;
}

.reg-container{
	/*padding-top: 80px;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;

	.input-fields {
		display: grid;
		grid-template-columns: 200px;
	}
}


/* .reg-right form{
	grid-template-columns: 50vw;
	row-gap: 10px;
} */

.reg-input{
	max-width: 280px;
	height: 38px;
	border-radius: 0px;
	opacity: 0.8;
	background-color: white;
	border: 2px solid #EEA44F;
	transition: background-color 8000ms ease, border-color 6000ms ease;
	-webkit-transition: background-color 8000ms ease, border-color 6000ms ease;
    -moz-transition: background-color 8000ms ease, border-color 6000ms ease;
    -o-transition: background-color 8000ms ease, border-color 6000ms ease;
	}

.reg-captcha{
	opacity: 1;
	transition: opacity 8000ms ease;
	-webkit-transition: opacity 8000ms ease 6000ms ease;
    -moz-transition: opacity 8000ms ease 6000ms ease;
    -o-transition: opacity 8000ms ease 6000ms ease;
}

.reg-captcha-label{
	color: white;
	transition: color 8000ms ease;
	-webkit-transition: color 8000ms ease 6000ms ease;
    -moz-transition: color 8000ms ease 6000ms ease;
    -o-transition: color 8000ms ease 6000ms ease;
}


input{
	font-size: 0.9em;
	color: #1f1f1f;
	margin: 5px auto;
	width: 100%;
}

.reg-input::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: #1f1f1f;
	margin-left: 8px;
}

.checkbox-label {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
  }
  
  /* Checkbox vergrößern */
  .checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
  }
  
  /* Optional: Stil für Link */
  .checkbox-label a {
	text-decoration: underline;
  }

.reg-button {
	margin-top: 70px;
	width: 130px;
	height: 40px;
	border: 0px;
	font-weight: bold;
	background-color: #EEA44F;
	transition: background-color 1500ms ease;
}

/* Regel für deaktivierten Button */
.reg-button:disabled {
	background-color: #ccc;
	color: #666;
	cursor: auto;
}

.invisible{
	border-color: #0C0E0F;
	background-color: #0C0E0F;
	color: #1f1f1f;
}

/*--------------------------------------------------------------------------------------------
Contact
--------------------------------------------------------------------------------------------*/

#contact{
	text-align: center;
}

#contact h1{
	font-size: 3em;
}


/*--------------------------------------------------------------------------------------------
Validate Form
--------------------------------------------------------------------------------------------*/

.captcha-form{
	background-color: white;
}



/*--------------------------------------------------------------------------------------------
Footer
--------------------------------------------------------------------------------------------*/

.footer{
	text-align: center;
	font-size: 0.8em;
	font-weight: lighter;
}




@media screen and (max-width : 1200px) {
	.reg-container{
		grid-template-columns: 1fr;
		row-gap: 90px;
	}

	/* .reg-right{
		margin: auto;
		margin-top: -280px;
	} */

	.background-fire-on{
		background: linear-gradient(#1d4456, #112630);
		opacity: 1;
		z-index: -2;
		-webkit-transition: all 1200ms linear;
		transition: all 1200ms linear;  
	}

	.fire-on{
		height: 110vh !important;
		display: none;
	}
}

@media screen and (max-width : 710px) {
	/* .reg-right form{
		grid-template-columns: 1fr 1fr;
	} */

	
}

@media screen and (max-width : 780px) {
	#home{
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}

	.reachup-logo-image{
		width: 90vw;
	}

	.team-image{
		width: 90vw;
	}

	@keyframes moveFromLeft1 {
		0% {
			margin-left: -800px;
		}
		100% {
			margin-left: 28%;
		}
	}
	
	@keyframes moveFromLeft2 {
		0% {
			margin-left: -800px;
		}
		100% {
			margin-left: 18%;
		}
	}
	
	@keyframes moveFromLeft3 {
		0% {
			margin-left: -800px;
		}
		100% {
			margin-left: 5%;
		}
	}
	
	@keyframes moveFromLeft4 {
		0% {
			margin-left: -800px;
		}
		100% {
			margin-left: 8%;
		}
	}
}

@media screen and (max-width : 580px) {
	
	#content {
		margin: 0 15px;
	}

	#nav-list{
		display:none;
	}

	nav {
		position: absolute;
		text-align: left;
		border: 0px;
		width: 80%;
	}
	
	nav ul {
		padding-top: 0;
		background-color: #1f1f1f;
		border-bottom: 1px solid #EEA44F;

	}
	
	nav ul li {
		display: block;
		padding: 5px 10px;
		margin: 5px 20px;
		border: 2px solid #1f1f1f;
		transition: padding-left 500ms ease;
	}

	nav ul li:hover {
		border: 2px solid #1f1f1f;
		border-left: 2px solid #EEA44F;
		border-radius: 0;
		padding-left: 28px;
		transition: padding-left 500ms ease;
	}
	

	#nav-icon1{
		display: block;
	}

	.home-page-titleline{
		font-size: 3em;
	}
	
	.home-page-subtitle{
		font-size: 1.7em;
	}

	/* .reg-right form{
		display: block;
	} */

	.reg-right form input{
		display:block;
		width: 100%;
	}

	.reg-button{
		width: 130px !important;
	}

	/* .reg-right{
		width: 100%;
	} */
	
	.image-container img{
		width: 300px;
	}

	.image-container{
		top: calc(50% - 150px);
		left: calc(50% - 150px);
	}
}