/* Hintergrundbild für den Hero-Bereich */
.hero {
	height: 800px;
	position: relative;
	display: flex;
	align-items: center;
	/* Zentriert den Inhalt vertikal */
	justify-content: flex-end;
	/* Bild nach rechts schieben */
	overflow: hidden;
}

/* Hintergrundvideo */
.hero video.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Schwarzes Overlay */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	/* Schwarze Transparenz */
	z-index: 1;
}

/* Text oben im Hero-Bereich */
.top-text {
    position: absolute;
    top: 10px;
	left: 20px;
    width: 100%; /* Volle Breite */
    color: white;
    z-index: 2;
    padding: 10px 0; /* Etwas Innenabstand oben/unten */
}

/* Text in linker Mitte */
.hero .text-box {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	color: white;
	z-index: 2;
	font-size: 4rem;
}

.hero .text-box h1 {
    font-size: 4rem;
    font-weight: bold;
}


