/*Schriftart: Ysabeau Infant*/
body {
    font-family: 'Ysabeau Infant', serif;
}
footer {
    font-family: 'Ysabeau Infant', serif;
}

/*Slider Anpassung*/
.owl-carousel {
    width: 100%;
}
@media (max-width: 768px) {
    .slider-box {
        padding-top: 65px;
    }
    #calendar {
        width: 100% !important;
    }
}
.owl-carousel .item img {
    padding: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.owl-item.active img {
    animation: zoom 5s forwards;
}
/*Slider Zoom*/
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/*Navbar Anpassung*/
.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold !important;
}
.navbar-nav .nav-item.active .nav-link {
    color: yellow !important;
}
.navbar-nav .nav-link:hover {
    color: yellow !important;
}

/*Belegungsplan Anpassung*/
.cont1_belegung{
    padding-top: 65px;
    padding-bottom: 65px;
    text-align: center;
}
/*Preise Anpassung*/
.card-header {
    background-color: #4FA23B;
    color: yellow;
    font-weight: bold;
}

/*Kalender Anpassung*/
#calendar {
    width: 50%;
    margin: 0 auto;
}

/* Hintergrund des Kalenders */
.fc {
    background-color: #FFFFFF;
}

/*Footer Anpassung*/
.footer {
    background-color: #4FA23B;
    color: white;
    font-weight: bold;

}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    color: yellow;
}