.home-header {
    width: 100%;
    height: 100vh;
    background-image: url('../assets/header/tandemcockpit-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-header .overlay {
    width: 100%;
    height: 40vh;
    position: absolute;
    top: 60vh;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 99;
}

#header-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
    
#header-info {
    width: calc(100% - 400px);
    height: 200px;
    position: relative;
    margin: auto;
    top: calc(100% - 350px);
    z-index: 999;
}

#header-info .title {
    font-size: 72px;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

#header-info .description {
    font-size: 24px;
}

#header-info .button {
    padding: 12.5px 30px;
    background: rgba(202, 0, 0, 0.7);
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    top: 30px;
    z-index: 999;
}

#header-info .button:hover {
    background-color: rgba(202, 0, 0, 0.6);
    top: 28px;
    transition: all 0.2s;
}

/* 1. Verkleinerung */ 
@media all and (max-width: 1350px) {
	#header-info {
        width: calc(100% - 40px);
        height: 200px;
        position: relative;
        margin: auto;
        top: calc(100% - 350px);
    }
}

/* 2. Verkleinerung (Handy Version) */ 
@media all and (max-width: 980px) {
    #header-info .title {
        font-size: 48px;
    }

    #header-info .description {
        font-size: 24px;
    }
}