@import url('variables.css');
@import url('fonts.css');
@import url('new_styles.css');



/***************** color classes **************************/

/* bg-colors */

.bo-bg-color-accent1 {
    background: var(--bo-color-accent1);
}

.bo-bg-color-accent1-light {
    background: var(--bo-color-accent1-light);
}

.bo-bg-color-accent2 {
    background: var(--bo-color-accent2);
}

.bo-bg-color-accent2-light {
    background: var(--bo-color-accent2-light);
}

.bo-bg-color-black {
    background: var(--bo-color-black);
}

.bo-bg-color-black-light {
    background: var(--bo-color-black-light);
}

.bo-bg-color-grey {
    background: var(--bo-color-grey);
}

.bo-bg-color-white-dark {
    background: var(--bo-color-white-dark);
}

/* text-colors */

.bo-text-color-accent1 {
    color: var(--bo-color-accent1);
}

.bo-text-color-accent1-light {
    color: var(--bo-color-accent1-light);
}

.bo-text-color-accent2 {
    color: var(--bo-color-accent2);
}

.bo-text-color-accent2-light {
    color: var(--bo-color-accent2-light);
}

.bo-text-color-black {
    color: var(--bo-color-black);
}

.bo-text-color-black-light {
    color: var(--bo-color-black-light);
}

.bo-text-color-grey {
    color: var(--bo-color-grey);
}

.bo-text-color-white-dark {
    color: var(--bo-color-white-dark);
}

html {
    font-size: 16px; /* Setzen Sie die Schriftgröße des Wurzelelements auf 16px */
}

body {
    font-family: 'Lato-Regular', sans-serif;
    font-size: 1.0rem;
    background: var(--bo-color-white-dark);
    font-weight: normal;
    color: var(--bo-color-black);
}

ul li {
    line-height: 2em;
}

li::marker {
    color: var(--bo-color-accent1);;
}

.text-subline {
    font-family: 'PlayfairDisplay-Medium-Italic', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.bo-text-link {
    color: var(--bo-color-accent1);
    text-decoration: none;
}

.bo-text-link:hover {
    color: var(--bo-color-accent2);
    text-decoration: underline;
}

.content-block {
    padding: calc(2 * var(--default-spacing));
}

.height-50 {
    height: calc((100vh - (2 * var(--default-spacing)))/2);
}

.content-block--one-third-height {
    height: calc((100vh - (2 * var(--default-spacing)))/3);
    padding: calc(2 * var(--default-spacing));
}

.image-cover-full img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ghost-button {
    background-color: transparent;
    border: 2px solid var(--bo-color-black-light);
    color: var(--bo-color-black-light);
    padding: 4px 15px 5px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.ghost-button:hover {
    background-color: var(--bo-color-accent1);
    color: #fff;
}

.ghost-button--inverted {
    background-color: var(--bo-color-accent1);
    color: #fff;
}

.ghost-button--inverted:hover {
    color: var(--bo-color-black-light);
    background-color: transparent;
}

/** NAVIGATION **/
#bo-overlay-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
}

.bo-navbar {
    position: absolute;
    right: 0;
    z-index: 200;
    background-color: transparent;
    color: var(--bo-color-black-light);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding: 0 20px;
    margin-top: calc( 2 * var(--default-spacing));
    margin-right: calc(0.6 * var(--default-spacing));

    @media (min-width: 992px) {
        margin-right: calc(1.5 * var(--default-spacing));
    }
}

.bo-navbar-toggler {
    color: var(--bo-color-black-light);
    cursor: pointer;
    font-size: 24px;
}

.bo-navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.close-btn {
    cursor: pointer;
    margin-top: calc(2.4 * var(--default-spacing));
    margin-right: calc(2.2 * var(--default-spacing));

    @media (min-width: 992px) {
        margin-top: calc(2.5 * var(--default-spacing));
        margin-right: calc(3.1 * var(--default-spacing));
    }
}

.bo-navbar-menu ul {
    list-style: none;
    padding: 0;
}

.bo-navbar-menu ul li {
    margin: 15px 0;
    text-align: center;
}

.bo-navbar .bo-nav-link {
    position: relative;
    text-decoration: none;
    color: inherit;
}

.bo-navbar-menu ul li {
    margin: 15px 0;
    text-align: center;
    position: relative; /* Fügt Positionierung hinzu */
}

.bo-navbar-menu .bo-nav-link::after {
    content: '';
    bottom: -5px;
    position: absolute;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--bo-color-accent1);
    transition: width 0.5s ease-out, left 0.5s ease-out;
    transform: translateX(-50%); /* Zentriert den Unterstrich */
}

.bo-navbar-menu .bo-nav-link:hover::after {
    width: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%); /* Zentriert den Unterstrich im Hover-Zustand */
}

.bo-navbar-menu.active {
    width: 100%;

    @media (min-width: 992px) {
        width: 50%;
    }
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease; /* Fügt eine Übergangsanimation hinzu */
}

#scrollable-navigation {
    position: fixed;
    z-index: 199;
    background-color: transparent;
    color: var(--bo-color-black-light);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    right: calc(1.5 * var(--default-spacing));
    margin-top: -200px;
    transition: margin-top 0.5s ease;
    overflow: hidden;
    width: 50px;

    @media (min-width: 992px) {
        right: calc(2.5 * var(--default-spacing));
    }
}

#scrollable-navigation.opened {
    margin-top: var(--default-spacing);
}
/** END NAVIGATION **/


#first-impression #slider-home {

    height: calc(50vh - (2 * var(--default-spacing)));

    @media (min-width: 992px) {
        height: calc(100vh - (2 * var(--default-spacing)));
    }

    overflow: hidden;
}

#first-impression #slider-home .carousel-inner {
    height: 100%;
}

#first-impression #slider-home .carousel-item {
    height: 100%;
    transition: ease;
}

#first-impression #slider-home .carousel-control-prev,
#first-impression #slider-home.carousel-control-next {
    opacity: 0.8;
}

#first-impression #slider-home .carousel-navigation-icon {
    border: 2px solid white;
    display: flex;
    padding: 5px;
}

#first-impression #slider-home.carousel-control-prev:hover,
#first-impression #slider-home .carousel-control-next:hover {
    opacity: 1;
}

#faq .answer {
    display: none;
    overflow: hidden;
}

#faq #faq-list .question {
    cursor: pointer;
}

#faq #faq-list .toggle {
    float: right;
}

#impressions-image-gallery .image-container,
#impressions-image-gallery .image-container-divider {
    height: 225px;
    background-size: cover;
    background-position: center;
    transition: transform 400ms;
    position: relative;
    overflow: hidden;
}

#impressions-image-gallery .image-wrapper:hover .image-container {
    transform: scale(1.02);
}

#impressions-image-gallery .overlay {
    position: absolute;
    width: 100%;
    border-radius: 200% 0;
    height: 0;
    background: var(--bo-color-accent1);
    opacity: 0;
    transition: opacity 0.3s, height 0.4s, border-radius 0.4s;
    overflow: hidden;
}

#impressions-image-gallery .image-container:hover .overlay {
    height: 100%;
    border-radius: 0;
    opacity: 0.5;
    bottom: 0; /* Lässt das Overlay von unten nach oben aufgehen */
}

#impressions-image-gallery .image-caption {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: var(--bo-color-white-dark);
    z-index: 1;
    opacity: 1;
    transition: opacity 200ms, top .8s;
    cursor: pointer;
}

#impressions-image-gallery .image-container:hover .image-caption {
    opacity: 1;
    top: 0;
}

#modal-image-gallery .image-view {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: transform 400ms;
    position: relative;
    overflow: hidden;
}

#modal-image-gallery #slider-impressions {
    height: calc(65vh - (2 * var(--default-spacing)));
    overflow: hidden;
}

#modal-image-gallery #slider-impressions .carousel-inner {
    height: 100%;
}

#modal-image-gallery .carousel-control-prev,
#modal-image-gallery .carousel-control-next {
    opacity: 0.8;
}

#modal-image-gallery .carousel-navigation-icon {
    border: 2px solid white;
    display: flex;
    padding: 5px;
}

#modal-image-gallery .carousel-control-prev:hover,
#modal-image-gallery .carousel-control-next:hover {
    opacity: 1;
}

.fog {
    background: var(--bo-color-white-dark);
}

.fog-occupied {
    background-image: -webkit-linear-gradient(right bottom, #f4b2b2 50%, var(--bo-color-white-dark) 0) !important;
}

.not-occupied {
    background: #bef3ca;
}

.occupied {
    background: #f4b2b2;
}

.occupied-start {
    background-image: -webkit-linear-gradient(right bottom, #f4b2b2 50%, #bef3ca 0) !important;
}

.occupied-end {
    background-image: -webkit-linear-gradient(left top, #f4b2b2 50%, #bef3ca 0) !important;
}

/* only for legend */
.occupied-start-end {
    background-image: -webkit-linear-gradient(right, #f4b2b2 50%, #bef3ca 0) !important;
}

#price-list {
    width: 80%;

    @media (min-width: 520px) {
        width: 60%;
    }

    @media (min-width: 768px) {
        width: 70%;
    }

    @media (min-width: 992px) {
        width: 95%;
    }

    @media (min-width: 1200px) {
        width: 95%;
    }

    @media (min-width: 1400px) {
        width: 85%;
    }
}

#footer #footer-navigation ul {
    list-style: none;
    padding-left: 0;
}

#footer #footer-navigation a {
    color: var(--bo-color-black-light);
    text-decoration: none;
}

#footer #footer-navigation a:hover {
    color: var(--bo-color-accent1);
    text-decoration: underline;
}
