/* HTML Teile */

html 
{
background-color: #fff;
background-repeat: no-repeat;
font-family:verdana, sans-serif;
}

body {
    background: linear-gradient(
        to bottom, 
        #fff 0%,    /* Start ganz oben mit dem dunklen Blau */
        #D3D3D3 150px, /* Verlauf zum hellen Blau bis 250px Höhe */
        #DEE0E2 200px, /* Sanftes Auslaufen in das Hellgrau bis 350px */
        #DEE0E2 100%   /* Der Rest der Seite bleibt neutral hell */
    );
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Körperbereiche */

#header {
    /* Deine bestehenden Styles */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #990000;
    width: 1000px;
    max-width: 1000px;
    height: 160px;
    margin: 25px auto;
    border-radius: 8px;
    border: 1px solid #4F0000;
    
    /* WICHTIG: Damit das Kreuz innerhalb des Headers bleibt */
    position: relative; 
    overflow: hidden;
}

/* Der horizontale Balken */
#header::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 20px; /* Breite des Balkens */
    background: #fff; /* Dunkles Templer-Rot */
    z-index: 1; /* Hinter dem Text, aber über dem Hintergrund */
    box-shadow: 0 0 15px rgba(153, 0, 0, 0.5); /* Dezenter Glow */
}

/* Der vertikale Balken */
#header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    transform: translateX(-50%);
    width: 20px; /* Breite des Balkens */
    height: 100%;
    background: #fff;
    z-index: 1;
    /*box-shadow: 0 0 15px rgba(153, 0, 0, 0.5);*/
}



#body
{
background-color: #990000;
width: 970px;
max-width: 970px;
min-height: 1000px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
border-radius: 8px;
font-size: 16px;
padding: 15px;
}

#body h1
{
font-size: 25px;
padding: 5px;
color: white;
text-shadow: 1px 1px darkgrey;
}

#footer
{
background-color: green;
width: 1000px;
max-width: 1000px;
height: 125px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}

/* Objekte */

#logo {
width: 572px;
height: 103px;
margin-left: 15px;
margin-top: 30px;
z-index: 2;
}

#loginbox {
background: linear-gradient(#fff, #808080);
box-shadow: 2px black;
width: 380px;
height: 80px;
margin-top: 35px;
border-radius: 5px;
padding: 5px;
z-index: 2;
border: 1px solid red;
}

#menue
{
background-color: purple;
float: right!important;
display: flex;
position: absolute;
z-index: 1;
width: 400px;
height: 180px;
margin: 0 auto 0 auto;
}


/* Elemente */

.box
{
padding: 15px;
background-color: #fff;
border-radius: 8px;
}

.button
{
background-color: #7F0000; 
color: white; 
padding: 10px 20px; 
border: none; 
border-radius: 5px; 
cursor: pointer; 
}

.video-container {
    width: 500px;
    height: 281px; /* Entspricht 16:9 */
    border: 2px solid #B3001B;
    margin: 0 auto 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Entfernt den Standard-Rahmen von YouTube */
}

#warnung { 
background:#FFFFFF; color:#404040; padding:15px; border-radius:5px; margin-bottom:10px;
}