.os-stage-elements {
    display: flex;
    position: relative;
    height: 98vh;
    z-index: 0;
    margin-top: -120px;
}

.bookin-zone-stage {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    -moz-box-shadow: 0 0 16px 0 rgba(184, 184, 184, 1);
    flex-direction: column;
}

.title-stage-top {
    text-align: center;
}

.stage-inner-elements {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: center;
    height: 100%;
    width: 100%;
}

.title-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    margin: 50vh auto auto auto;
    max-width: 900px;
}

.title-stage-sec {
    font-size: 4rem;
    text-align: center;
    color: #fff;
    line-height: 1;
    font-weight: 800 !important;
    max-width: 80vw;
}

.title-stage-top {
    color: #ffffff80;
    text-transform: uppercase;
}

.background-header {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background: #000;
}

div.background-header>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: .44;
}

.os-section-container.os-stage-section {
    display: block;
    width: 100%;
    background: #f4f0f2;
}

.about-area-row {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    padding: 58px 12px;
}

.os-section-container.os-about-area {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
}

.about-text {
    display: inline-block;
    max-width: 960px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.about-text h2 {
    margin: 14px 0 32px 0;
}

.sticky-booking-bar {
    position: relative;
    background-color: #8b9c79;
    color: #fff;
    z-index: 9999;
    width: 80vw;
    max-width: 900px;
    margin: 0 auto 0 auto;
    border-bottom: 3px solid #5b6247;
}

.sticky-booking-bar .bar-inner {
    width: 88%;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-booking-bar .bar-message {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
}

.sticky-booking-bar .bar-buttons {
    display: flex;
    gap: 10px;
    position: relative;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

.sticky-booking-bar .button-hotel {
    background-color: #E2E8DD;
    color: #333;
    padding: 12px 32px;
    text-decoration: none;
    transition: background .3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-booking-bar .button-hotel:hover {
    background-color: #d2d9cc;
}

.sticky-booking-bar .button-buchen {
    background-color: #5B6247;
    color: #fff;
    padding: 12px 32px;
    text-decoration: none;
    transition: background .3s ease;
    cursor: pointer;
}

.sticky-booking-bar .button-buchen:hover {
    background-color: #4a513a;
}

.sticky-booking-bar .dropdown-links {
    display: none;
    position: absolute;
    right: -50px;
    background: #8c9b7a;
    border-radius: 10px;
    overflow: hidden;
    min-width: 272px;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .3);
    z-index: 100;
    margin-top: -148px;
}

.sticky-booking-bar .dropdown-links a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-weight: normal;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sticky-booking-bar .dropdown-links a:hover {
    background-color: #789463;
}

.sticky-booking-bar .dropdown-links.show {
    display: flex;
}

.button-hotel .arrow {
    transition: transform .3s ease;
}

#additional-toggle.open .arrow {
    transform: rotate(180deg);
}

@media (max-width:600px) {
    .sticky-booking-bar .bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .sticky-booking-bar .bar-buttons {
        width: 100%;
        flex-direction: column
    }

    .sticky-booking-bar .dropdown-links {
        position: static;
        width: 100%;
        border-radius: 0
    }
}

@media screen and (max-width:1200px) {
    .about-text {
        width: 90%
    }

    div.background-header>img {
        height: 98%
    }

    .sticky-booking-bar .button-hotel {
        background-color: #E2E8DD;
        color: #333;
        padding: 12px 32px;
        text-decoration: none;
        transition: background .3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: center;
    }

    .sticky-booking-bar .button-buchen {
        display: flex;
        justify-content: center;
    }
}