/* Header allgemein */

header {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* Hintergund */

header video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

header .gradient {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
}

/* Komponenten */

.header-content {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 2;
    width: calc(100% - 40px);
    /* background-color: red; */
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px;
}

.header-content a img {
    width: 120px;
    position: absolute;
    top: -100px;
    right: 0px;
    transition: all .3s ease;
}

.header-content a img:hover {
    transform: rotate(20deg);
}

.header-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    /* padding: 0 20px; */
    gap: 10px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}

.header-booking-section {
    width: 100%;
    max-width: 840px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    gap: 40px;
}

.booking-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 40px;
}

.booking-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.booking-item img {
    width: 26px;
}

.booking-item.second, .booking-item.third {
    display: none;
}

.booking-item-infos {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.booking-item-infos span {
    font-size: 12px;
    font-weight: 200;
    color: white;
}

/* Schriftgrößen */

.header-text h1 {
    font-family: 'Cormorant Garamond';
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.header-text h5 {
    font-family: 'Inter';
    font-size: 26px;
    font-weight: 300;
    color: #B8C7DD;
}

.header-text h6 {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    color: white;
}

@media screen and (min-width: 400px) {
    .booking-item-infos {
        /* font-size: 16px; */
        font-weight: 300;
    }

    .booking-item-infos span {
        font-size: 14px;
        font-weight: 200;
    }

    .header-text h1 {
        font-size: 44px;
    }

    .header-text h5 {
        font-size: 30px;
    }

    .header-content a img {
        width: 140px;
        position: absolute;
        top: -120px;
        right: 0px;
    }
}

@media screen and (min-width: 768px) {
    .header-content {
        left: 50px;
        z-index: 2;
        width: calc(100% - 100px);
    }

    .header-text h1 {
        font-size: 46px;
    }

    .header-text h5 {
        font-size: 34px;
    }

    .header-text h6 {
        font-size: 18px;
    }

    .booking-item.second {
        display: flex;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        padding-left: 30px;
    }
}

@media screen and (min-width: 900px) {

    .header-text h1 {
        font-size: 54px;
    }

}

@media screen and (min-width: 950px) {

    .booking-item.third {
        display: flex;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        padding-left: 30px;
    }
}

@media screen and (min-width: 1024px) {

    .header-content a img {
        width: 140px;
        position: absolute;
        top: 50px;
        right: 0px;
    } 
}

@media screen and (min-width: 1200px) {
    .header-content {
        width: 1100px;
        left: 50%;
        transform: translateX(-50%);
    }
}