/*Schriftart: Ysabeau Infant*/
body {
    font-family: 'Ysabeau Infant', serif;
}
footer {
    font-family: 'Ysabeau Infant', serif;
}


@media (max-width: 768px) {
    /*Ferienhaus Details Anpassung Mobile*/
    .ferienhaus_cont2{
        padding-top: 65px;
    }
    /*Ferienhaus Ausstattung Anpassung Mobile*/
    .ferienhaus_cont3{
        padding-top: 65px;
        margin-left: auto !important;
        margin-right: auto !important;
    }


}

/*Slider Anpassung*/
.owl-carousel {
    width: 100%;
}
.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;
}
/*Knopf Anpassung*/
.btn-custom {
    background-color: #4FA23B !important;
    color: white !important;
    font-weight: bold !important;
}
.btn-custom:hover {
    color: yellow !important;
}

/*Ferienhaus Lage Google Maps Anpassung*/
.ferienhaus_cont{
    margin-top: 50px !important;
}

/*Links Ausflüge Anpassung*/
.link_ausflug {
    font-weight: bold;
    color: black;
    text-decoration: none; /* Entfernt die Unterstreichung */
}
.link_ausflug:hover {
    color: dimgray;
}

/*Footer Anpassung*/
.footer {
    background-color: #4FA23B;
    color: white;
    font-weight: bold;

}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    color: yellow;
}