/*Schriftart: Ysabeau Infant*/
body {
    font-family: 'Ysabeau Infant', serif;
}
footer {
    font-family: 'Ysabeau Infant', serif;
}

/* Slider Anpassung*/

.owl-carousel {
    width: 100%; /* Breite des Sliders auf 100% der Breite des Containers setzen */
}
@media (max-width: 768px) {
    .slider-box {
        padding-top: 65px;
    }
}
.owl-carousel .item img {
    padding: 0;
    width: 100%; /* Breite des Bildes auf 100% der vollen Breite des Sliders setzen */
    height: auto; /* Höhe automatisch anpassen, um das Seitenverhältnis beizubehalten */
    object-fit: cover; /* Bild so anpassen, dass es den gesamten Container füllt */
    display: block; /* Zentriert das Bild */
}

/* Zoom Slider */
.owl-item.active img {
    animation: zoom 5s forwards;
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Navigation */
.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;
}

 /*Container Übersicht mit 2 Bildern - Links */
.cont1_index_link {
    color: black;
    font-weight: bold;
    text-decoration: none; /* Entfernt die Unterstreichung */
}
.cont1_index_link:hover {
    color: dimgray;
}
.cont1_index_span{
    color: dimgray;
}

/* Mini Galerie */
.cont3_index_img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.cont3_index_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*Footer - Anpassung*/
.footer {
    background-color: #4FA23B;
    color: white;
    font-weight: bold;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    color: yellow;
}