@font-face {
    font-family: 'Julliet';
    src: url('../fonts/Julliet-Regular.ttf') format('truetype'); /* Pfad zur Schriftart anpassen */
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Juliett', sans-serif; /* Passen Sie die Schriftart an */
}

header {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 3em;
    font-weight: 700;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-right: 10px;
}

.menu a {
	font-size: 1.5em;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ff2525;
}

div {
	margin-left: 10%; /* Mindestens 10% Abstand zu beiden Seiten */
    margin-right: 2%;
	width:100%;
	
}
.section {
	height: 100vh;
	min-height: 1080px;
	min-width:500px;
    display: flex;
    color: white;
        }
.section1 {
	background: url('../img/background-section1.png') center/cover no-repeat fixed;
	background-size: cover;
	justify-content: left;
    align-items: center;
}

.section2 {
    background: url('../img/background-section2.png') center/cover no-repeat fixed; /* Hintergrundbild anpassen */
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left;
    color: #FFFFFF;
    text-align: center;
}
/* Festlegung der Mindestschriftgröße mit Medienabfrage */
@media screen and (max-width: 670px) {
    p {
        font-size: 20px; /* Schriftgröße für kleine Bildschirme */
        min-height: 20px; /* Mindesthöhe für das Element */
        min-width: 200px; /* Mindestbreite für das Element */
        display: inline-block;
        white-space: pre-line;
    }
}

/* Festlegung der Mindestschriftgröße */

p 	{
	font-size: 25px;
    justify-content: space-between;
	height: 10vh; /* Nutzt die volle Höhe des Viewports aus */
	max-width: 1000px;
    min-width: 600px; /* Festgelegte Mindestbreite für die Box */
	text-align: left;
    font-weight: normal;
    min-font-size: 20px; /* Mindestschriftgröße */
    color: #FFFFFF;
	display: inline-block;
	margin:auto;
}

/* Nun können Sie die Schriftart in Ihrer Stilregel verwenden */
h1 {
	text-align: left;
	font-family: 'Julliet', sans-serif;
    font-weight: bold;
    font-size: 6vw; /* Schriftgröße in VW-Einheiten für die Bildschirmbreite */
    min-font-size: 30px; /* Mindestschriftgröße */
    color: #FFFFFF;
}


h2  {
	margin-bottom: 10px;
	text-align: left;
	font-family: 'Julliet', sans-serif;
    font-weight: bold;
    font-size: 6vw; /* Schriftgröße in VW-Einheiten für die Bildschirmbreite */
    min-font-size: 30px; /* Mindestschriftgröße */
    color: #FFFFFF;
	}

h3  {
	margin-top: 10px;
	text-align: left;
	font-family: 'Julliet', sans-serif;
    font-weight: bold;
    font-size: 2.5vw; /* Schriftgröße in VW-Einheiten für die Bildschirmbreite */
    min-font-size: 30px; /* Mindestschriftgröße */
    color: #fff;
}

.text 	{
	font-size: 25px;
    justify-content: space-between;
	min-height: 10vh; /* Nutzt die volle Höhe des Viewports aus */
	
	max-width: 1000px;
    min-width: 600px; /* Festgelegte Mindestbreite für die Box */
	text-align: left;
	margin-left: 0%; /* Mindestens 10% Abstand zu beiden Seiten */
    margin-right: 2%;
	width:100%;

}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Hintergrund-Overlay für bessere Lesbarkeit */
}
.player{
	margin-top:30px;
	margin-bottom:20px;
	margin-left: 0px;

    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	
}
.content {
    z-index: 1;
}
.section3 {
    background: url('../img/background-section3.png') center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left;
    color: #FFFFFF;
    text-align: center;
}

.section3 h2 {
    /* Stile für die Überschrift in Section 3 hier hinzufügen */
	text-align: left;
	font-family: 'Julliet', sans-serif;
    font-weight: bold;
    font-size: 6vw; /* Schriftgröße in VW-Einheiten für die Bildschirmbreite */
    min-font-size: 30px; /* Mindestschriftgröße */
    color: #FFFFFF;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    z-index: 1;
}

.youtube-popup {
    cursor: pointer;
    position: relative;
    background-image: url('assets/img/btn_play_01.png');
    background-size: cover;
    width: 100px;
    height: 100px;
    transition: background-image 0.3s ease;
}

.youtube-popup:hover {
    background-image: url('assets/img/btn_play_02.png'); /* Pfad zum zweiten Bild */
}

.popup-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.section4 {
    background: url('../img/background-section4.png') center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left;
    color: #FFFFFF;
    text-align: center;
}
        /* Stil für den Button */
.button     {
		max-width: 1000px;
    min-width: 600px; /* Festgelegte Mindestbreite für die Box */
	text-align: left;
	margin-top: 30px;
	margin-left: 0%; /* Mindestens 10% Abstand zu beiden Seiten */
    margin-right: 2%;
	
}
 .custom-button {
	 
	 	font-size: 25px;
    display: inline-block;
	justify-content: left;
    padding: 10px 20px;
    background-color: #FFFFFF; /* Weiße Hintergrundfarbe */
    color: #000; /* Weiße Textfarbe */
    border: 2px solid #FFFFFF; /* Weiße Umrandung */
    border-radius: 30px; /* Abgerundete Ecken */
    text-decoration: none; /* Entfernt die Standard-Link-Unterstreichung */
    transition: background-color 0.3s, color 0.3s; /* Sanfte Übergänge für Hover-Effekt */
}

        /* Hover-Effekt für den Button */
    .custom-button:hover {
        background-color: #ff2525; /* Hintergrundfarbe ändern, wenn der Mauszeiger darüber schwebt */
         color: #fff; /* Textfarbe ändern, wenn der Mauszeiger darüber schwebt */
    }


/* Stilregel für den schwarzen Footer */
.footer {
    background-color: #000000; /* Schwarze Hintergrundfarbe */
    color: #FFFFFF; /* Weiße Textfarbe */
    padding: 20px; /* Optional: Fügt Innenabstand zum Footer hinzu */
    text-align: center; /* Zentriert den Text im Footer */
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0;
	height: 40px;
    color: white;
}
.footer p{
		height: 40px; /* Nutzt die volle Höhe des Viewports aus */
		font-size:20px;
		text-align: left;
}

}