/* Einbindung der Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto+Slab:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: url('images/background_raw_clean.gif') repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header-Bereich */
.header {
    height: 80px;
   background: hsla(100,100%,100%,0.2);
    display: flex;
    align-items: center;
    padding-left: 4%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 16%;
    min-width: 180px; /* Falls der Bildschirm zu schmal ist */
}

/* Video-Bereich */
.video-container {
    width: 100%;
	position: relative;
}

.background-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Hauptinhalt */
.content {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15% 50px 30px;
    flex-grow: 1;
}

.content img {
    width: 40%;
	max-width: 210px;
    border-radius: 50%;
    margin-right: 5px;
}

.content-text {
    font-family: 'Roboto Slab', serif;
    color: black;
}

.content-text h1 {
    font-size: 36px;
    color: #8B693F;
}

.content-text p {
    font-size: 16px;
}

.content a {
    color: #8B693F;
}

/* Footer */
.footer {
    width: 100%;
    height: 106px;
    background: url("images/bg_footer.png") repeat-x center bottom;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    margin-top: auto; /* Footer bleibt unten */
}

.footer-content {
	float: left;
	padding-left: 4%;
	display: flex;
	color: white;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer a {
	float: right;
	padding-left: 15px;
    text-decoration: none;
    color: #8B693F;
    font-weight: bold;
}