/* Jubiläumsbanner */
.jubilaeum-banner {
    background-color: #CC0000;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
}

/* Menüzeile */
.navbar-expand-lg .navbar-collapse {	
	justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 15px; /* Abstand zwischen den Menüelementen */
}

.navbar {
    background-color: #CC0000; /* Einheitliche Hintergrundfarbe */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    position: relative;
}

.navbar-nav {
    list-style: none;
    display: flex;    
}

.navbar a {
    text-decoration: none;
    color: #000000; /* Einheitliche Schriftfarbe */
    font-size: 1rem; /* Angemessene Schriftgröße */
    transition: color 0.3s, background-color 0.3s;
    margin: 0 15px; /* Abstand zwischen den Links */
}

.navbar a.active {
    border-bottom: 1px solid #CC0000; /* Aktiver Menüpunkt */
	font-weight: bold; /* Aktiver Menüpunkt fett */
}

.navbar a:hover {
    color: #CC0000; /* Helle Farbe für Hover */
}


/* Kontaktinformationen */
.kontakt-banner {
    background-color: #CC0000;
    color: #ffffff;
    width: 100%;
    text-align: center;
	padding: 10px;    
    font-size: 1rem;    
}
@media (max-width: 768px) {
    .kontakt-banner {
        flex-direction: column; /* Auf kleineren Bildschirmen untereinander anordnen */
        align-items: center; /* Zentriert die Elemente, damit es schön aussieht */
        text-align: center; /* Text in der Mitte ausrichten */
        font-size: 14px; /* Kleinere Schriftgröße für mobile Geräte */
    }
}

.kontakt-link {
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: inherit; /* Übernimmt die Schriftfarbe des übergeordneten Elements */    
}

.kontakt-link:hover {
    font-weight: bold; 
}

/* Molers Image */
.molers-image-wrapper {
    text-align: left;
}

.molers-image-wrapper-center {
    text-align: center;
}

.molers-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
	margin-top: 20px;
}

.default-content {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.default-text {
    line-height: 1.6;
    color: #333333;
}

/* Buttons */
button {
    background-color: #CC0000;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    color: #000000;
}

/* Karussell Abschnitt */
.karussell-section {

}

.carousel {
    position: relative;
    max-width: 100%;
    margin: 20px 0 20px 0;
    text-align: left;
}

.carousel-inner {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Prev/NEXT Buttons mit rotem Kreis */
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 40px; /* Größe des Kreises */
    height: 40px;
    background-color: #CC0000; /* Roter Kreis */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 50%; /* Größe des Icons */
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Schatten für 3D-Effekt */
}

/* Hover-Effekt für die Buttons */
.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
    background-color: #FF0000; /* Helleres Rot beim Hover */
    transform: scale(1.1); /* Leichte Vergrößerung */
    transition: all 0.3s ease-in-out;
}

.carousel-control-prev-icon {
    background-image: url('../img/ausstellung/navigation/prev.svg'); /* Pfad zu deinem Bild */    
}

.carousel-control-next-icon {
    background-image: url('../img/ausstellung/navigation/next.svg'); /* Pfad zu deinem Bild */
}

.carousel-indicators {
    text-align: left;
    padding-left: 10px;
}

.carousel-indicators .active {
    background-color: #CC0000;
}

.bg-footer-color {
    --bs-bg-opacity: 1;
    background-color: #000066;
}

.footer-text-white {
	text-decoration: none;
	color: #ffffff;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer li {
    margin-right: 15px; /* Abstand zwischen den Links */
}

footer li:last-child {
    margin-right: 0; /* Kein Abstand beim letzten Element */
}