#home-bg {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-image: url('../assets/img/homepage-bg-small.webp');
    background-size: cover;
    background-position: center;
}

#logo {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);


    background-image: url('../assets/img/logo.webp');
    background-size: contain;
    background-repeat: no-repeat;

    width: clamp(225px, 75vw, 600px);
    height: 400px;
}

#request_booking {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-175px, 250px);
    width: 325px;
    height: 60px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: var(--font-size-small-heading);
    text-shadow: 1px 1px #000;
    text-align: center;
    line-height: 60px;
}

#request_booking:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    user-select: none;
}

#scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-image: url('../assets/img/arrow-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content_left > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
 
    #request_booking {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: unset !important;
        bottom: 100px !important;
    }

    #logo {
        height: 300px !important;
    }

    #ausstattung {
        margin-top: 10px !important;
    }

    
    .item {
        width: 135px !important;
        margin: 0;
        gap: 0;
        padding: 8px !important;
        height: 24px;
    }

    .item > img {
        width: 24px !important;
        margin-right: 3px !important;
    }

    .item > p {
        font-size: var(--font-size-footnote);
        line-height: 24px !important;
    }

}

#ausstattung {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.item {
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    gap: 10px;
    margin-bottom: 10px;
}

.item > img {
    width: 32px;
    aspect-ratio: 1/1;
    display: inline-block;
    margin-right: 5px;
}

.item > p {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    line-height: 32px;
}