@charset "utf-8";
*{margin:0; padding:0;}

@keyframes fadeIn {0% {opacity:0;} 100% {opacity:1;}}
@-moz-keyframes fadeIn {0% {opacity:0;} 100% {opacity:1;}}
@-webkit-keyframes fadeIn {0% {opacity:0;} 100% {opacity:1;}}
@-o-keyframes fadeIn {0% {opacity:0;} 100% {opacity:1;}}
@-ms-keyframes fadeIn {0% {opacity:0;} 100% {opacity:1;}}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

a {
	text-decoration: none;
}

p { /*Paragraph weiß*/
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	font-size: 1rem;
	color: white;
	line-height: 140%;
}

.p { /*Paragraph schwarz*/
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	font-size: 1rem;
	color: black;
	line-height: 140%;
}

h1 { /*YAMAHA HONDA usw*/
	font-size: 7.5rem;
	font-family: 'Teko', sans-serif;
	font-weight: 700;
	color: white;
	line-height: 85%;
	transition: font-size 1s ease;
}

h2 { /*Statement*/
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 125%;
	color: white;
}

h3 { /*Projekt*/
	font-size: 2rem;
	font-family: 'Teko', sans-serif;
	font-weight: 300;
	color: #666;
	line-height: 100%;
	text-transform: uppercase;
	margin: 0 0 1rem 0;
	text-shadow: 0px 0px 6px #141414;
}

h4 { /*ZURÜCK & MENÜ*/
	font-size: 2rem;
	font-family: 'Teko', sans-serif;
	font-weight: 300;
	color: #666;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: -0.3rem;
}

h5 { /*Überschrift weiß*/
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 2rem;
	color: white;
	text-transform: uppercase;
	margin-bottom: 2rem;
	text-align: center;
}

h6 { /*Überschrift schwarz*/
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: black;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.arrow-w {
	height: 5vw;
	min-height: 60px;
	max-height: 70px;
	width: 5vw;
	min-width: 60px;
	max-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
    transition: filter 0.3s ease;
}

.arrow-w:hover {
	filter: brightness(0.4);
}

.arrow-g {
	height: 5vw;
	min-height: 60px;
	max-height: 70px;
	width: 5vw;
	min-width: 60px;
	max-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
    transition: filter 0.3s ease;
	filter: brightness(0.4);}

.arrow-g:hover {
	filter: brightness(1.0);
}

.arrow-line {
	position: relative;
	top: 25%;
	height: 50%;
	width: 2px;
	border-left: white solid 2px;
}

.arrow-tip {
    width: 25%;
    aspect-ratio: 1;
    transform: rotate(45deg) translate(-2%, -2%);
    border-bottom: white solid 2px;
    border-right: white solid 2px;
}

.arrow-l {
	height: 120px;
	width: 5vw;
	min-width: 60px;
	max-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
    transition: filter 0.3s ease;
	pointer-events: all;
	margin-top: -1rem;
}

.arrow-l:hover {
	filter: brightness(0.4);
}

.arrow-line-l {
    position: relative;
    top: 14%;
    height: 70%;
    width: 2px;
    border-left: white solid 2px;
    animation: arrow-line-grow 2s infinite ease-in-out; /*Animation Pfeil*/
}

.arrow-l:hover .arrow-line-l {
    animation: none; /*Animation stoppt, wenn mouse hover auf Pfeil*/
}

.vertical-line {
	height: 5rem;
	width: 2px;
	border-left: white solid 2px;
}

/* ---------------------------------- HEADER - MENU START -----------------------*/

#header {
    width: 100vw;
    height: 5vw;
	min-height: 60px;
	max-height: 70px;
	position: fixed;
    top: -75px;
    left: 0;
    z-index: 999;
	transition: top 0.3s;
	overflow: hidden;
	background-color: rgba(20, 20, 20, 1);
	-webkit-box-shadow: 0px 0px 24px 0px #000000; 
	box-shadow: 0px 0px 24px 0px #000000;
}

#header.expanded {
	max-height: 100vh;
    height: 100vh;
    transition: height 0.8s ease;
}

#header-box {
    height: 5vw;
	min-height: 60px;
	max-height: 70px;
	width: 100%;
	position: relative;
    top: 0;
    left: 0;
	background-color: rgba(20, 20, 20, 1);
}

.arrow-back {
	position: absolute;
	top: 50%;
	left: 1vw;
	transform: translate(0, -50%);	
	height: 100%;
	width: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
    transition: filter 0.3s ease;
}

.arrow-back:hover {
	filter: brightness(4);
}

.arrow-back img {
	height: 100%;
}

#burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31px;
    height: 21px;
	margin-top: 27px;
	margin-bottom: 27px;
	margin-left: 22px;
	margin-right: 22px;
}

#burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #575655;
    transition: all 0.3s ease;
}

#burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#burger.active span:nth-child(2) {
    opacity: 0;
}

#burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo-header {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 60%;
}

.logo-header div {
	border: white solid 2px;
	height: 100%;
	width: auto;
}

.logo-header img {
	position: relative;
	top: 0;
	height: 100%;
	width: auto;
}

.menu {
	position: absolute;
	top: 50%;
	right: 2vw;
	transform: translate(0, -50%);	
	height: 100%;
	width: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
    transition: filter 0.3s ease;
}

.menu img {
	margin-left: 1vw;
	height: 100%;
}

.menu:hover {
	filter: brightness(4);
}


/*_____________________________________________________*/


#menu-text {
    height: calc(100% - 75px);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    padding-bottom: 2rem;
}

.menu-point {
	display: flex;
}

.menu-point-shifted {
	margin-left: 3rem;
}

.menu-point h5:hover {
    color: #666;
}

.dropdown-label {
    cursor: pointer;
    height: 2.4rem;
    width: 2.4rem;
    margin-left: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-label:hover {
    filter: brightness(0.4);
}

.arrow-dropdown {
    width: 50%;
    aspect-ratio: 1;
    transform: rotate(45deg) translate(-20%, -20%);
    border-bottom: white solid 2px;
    border-right: white solid 2px;
}

.dropdown-menu {
	margin-top: -1.5rem;
	margin-bottom: 1.5rem;
    max-height: 0;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: max-height 0.5s ease;
}

.dropdown-menu a {
    color: #666;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    text-transform: uppercase;
}

.dropdown-menu a:hover {
    color: white;
}

.dropdown-menu.expanded {
    max-height: 5rem;
}

.dropdown-label.rotated {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}



/* ---------------------------------- HEADER - MENU END -----------------------*/

/*--------------------------------------BUTTONS START--------------------------------*/

*,
*:before,
*:after{
  box-sizing: border-box;
}

.wrapper{
  position: relative;
  top: 0;
  left: 0;
}

.btn {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0.8rem;
	text-decoration: none;
	text-align: center;
	border: solid white 2px;
	color: white;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	background-color: rgba(20,20,20,1);
	transition: all .5s;
	margin-top: 1rem;
}

.btn:before,
.btn:after{
	color: white;
	background-color: rgba(20,20,20,1);
}

.btn:hover{
	color: black;
	background-color: white;
}

.d0 {
	display: none;
}

.buttonX {
	width: 100%;
	height: auto;
	padding: 0.8rem;
	padding-top: 0.6rem;
	border: solid white 2px;
	text-align: center;
	margin-top: 1rem;
	background-color: rgba(20, 20, 20, 1);
}

/*--------------------------------------BUTTONS END--------------------------------*/


/* -----------------------------------------DIALOG MODAL START------------------------------------*/

dialog[open] {
 	z-index: 1;
	position: fixed;
	width: calc(100vw - 60px);
	height: calc(100vh - 60px);
	top: 30px;
	left: 30px;
	border: none;
}

dialog[open]::backdrop {
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(3px);
}

.modal-X {
	position: fixed;
	top: 60px;
	right: 60px;
	height: 40px;
	width: 40px;
	z-index: 3;
}

.modal-X img {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
}

.modal-X .X2 {
	display: none;
	cursor: pointer;
}

.modal-X:hover .X2 {
	display: inline;
}


.modal-top {
	position: fixed;
	z-index: 2;
	top: 30px;
	left: 30px;
	width: calc(100vw - 80px);
	height: 100px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	pointer-events: none;
}

.modal-bottom {
	position: fixed;
	z-index: 2;
	bottom: 30px;
	left: 30px;
	width: calc(100vw - 80px);
	height: 100px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	pointer-events: none;
}

.modal-middle {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: clamp(20px, 3vw, 80px);
	padding-top: 80px;
	padding-bottom: 100px;
}

/* -----------------------------------------DIALOG MODAL END------------------------------------*/


/* =================================== COOKIE START =============================== */

#cookiePopup {
	background-color: white;
	position: fixed;
	width: 100vw;
	-webkit-box-shadow: 0px 0px 25px 6px rgba(0,0,0,0.8); 
	box-shadow: 0px 0px 25px 6px rgba(0,0,0,0.8);
	padding: 2rem;
	transition: all 0.5s ease-in;
	z-index: 9999;
	text-align: center;
	opacity: 0; /* diese Zeile löschen, wenn Cookie Banner wieder sichtbar sein soll */
	pointer-events: none; /* diese Zeile löschen, wenn Cookie Banner wieder sichtbar sein soll */
}

#cookiePopup img {
	display: block;
	width: 3.75em;
	transform: translateZ(0);
	position: relative;
	margin: auto;
	margin-bottom: 1rem;
}

#cookiePopup button {
	color: #f56808;
	max-width: 200px;
	font-size: 1rem;
	padding: 0.8rem;
	padding-top: 0.6rem;
	display: block;
	position: relative;
	margin-top: 1rem;
	left: 50%;
	border: solid #f56808 2px;
	transform: translateX(-50%);
}

#cookiePopup a {
	color: #f56808;
}

.hide {
	visibility: hidden;
	bottom: 0;
	left: 0
}

.show {
	visibility: visible;
	bottom: 0;
	left: 0;
}

/* =================================== COOKIE END =============================== */


/* =================================== FOOTER START =============================== */

.footer-white {
	position: relative;
	top: 0;
	left: 0;
	height: auto;
	width: 100vw;
	padding-top: 2rem;
	background-image: url("Assets/Verlauf-1.png");
	background-size: 100% 100%;
	background-color: rgba(228,228,228,1);
}

.footer-black {
	position: relative;
	top: 0;
	left: 0;
	height: auto;
	width: 100vw;
	background-color: rgba(20, 20, 20, 1);
}

#footer1 {
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: auto;
	width: 90vw;
}

.date {
    display: none;
}

.box-Logo {
	width: 30vw;
	height: auto;
	min-height: 100px;
	float: left;
	display: flex;
    justify-content: center;
    align-items: center;
}

.box-Logo img {
	width: 70%;
	height: auto;
}

.box-Text {
	width: 60vw;
	min-height: 100px;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
	column-fill: balance;
	-webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
	float: right;

}

.line-black {
	border-left: #c3c3c3 solid 1.5px;
	border-right: #c3c3c3 solid 1.5px;
}

.line-white {
	border-left: black solid 1.5px;
	border-right: black solid 1.5px;
}

.box-headline {
	height: auto;
	width: 100%;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	padding-bottom: 1rem;
	padding-top: 0.2rem;
	text-transform: uppercase;
}

.white {
	color: black;
}

.black {
	color: #c3c3c3;
}

.box-link {
	height: auto;
	width: 100%;
	text-align: center;
}

button {
	all: unset;
    font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	padding: 5px;
}

button:hover {
	cursor: pointer;
	filter: invert(0.6);
}

.button-icon {
	height: 1rem;
	width: auto;
	margin-bottom: -0.2rem;
	margin-right: 0.2rem;
}

#footer2 {
	position: relative;
	left: 0;
	top: 0;
	height: auto;
	width: 100%;
	display: flex;
	justify-content: center;
}

#footer2 img {
	height: 50px;
	width: auto;
	margin-top: 60px;
}

#footer3 {
	position: relative;
	left: 0;
	top: 0;
	height: auto;
	width: 100%;
	text-align: center;
	padding: 1rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	font-size: 0.8rem;
}

.paper {
	position: relative;
	width: 100vw;
	height: auto;
	z-index: 1;
	display: flex;
	overflow: hidden;
}

.paper img {
	min-width: 800px;
	height: auto;
}

/* =================================== FOOTER END =============================== */


/*------Scroll Pfeil Animation --------*/

@keyframes arrow-line-grow {
    0%, 20%, 50%, 80%, 100% {
        height: 70%; /* Standardhöhe */
    }
    40% {
        height: 75%; /* Verlängert sich */
    }
    60% {
        height: 72%; /* Leicht zurück */
    }
}
/*------Scroll Pfeil Animation --------*/



@media only screen and (max-width: 700px) {


p {/*Paragraph weiß*/
	font-size: 0.9rem;
}

.p {/*Paragraph weiß*/
	font-size: 0.9rem;
}

h1 { /*YAMAHA HONDA usw*/
	font-size: 5rem;
}

h2 { /*Statement*/
	font-size: 1.2rem;
}

h4 { /*ZURÜCK & MENÜ*/
	opacity: 0;
}

h5 { /*Überschrift weiß*/
	font-size: 1.8rem;
}

h6 { /*Überschrift schwarz*/
	font-size: 1.8rem;
}

.box-Logo {
	width: 90vw;
	margin-bottom: 50px;
}

.box-Text {
	width: 90vw;
}

.line-black {
	border-left: none;
}

.line-white {
	border-left: none;
}

button {
	font-size: 0.9rem;
}

#footer3 {
	font-size: 0.7rem;
}

.box-Logo img {
	width: 60%;
}

.button-icon {
	display: none;
}

}


