body, .parallax-kp {
    background: #A9BAC3 url(/images/bg.gif) repeat-x;
}

.header-container {
    background-color: #ffffff;
}


main.site-content {
    background-color: white;
}
.side-nav-container {
    display: inline-block;
    max-width: 24%;
    position: relative;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .side-nav-container {
        max-width: 100%; /*bei kleinen geräten box vergrößern*/
    }
}
@media (min-width: 768px) {
    .side-nav-container {
        max-width: 50%; /*bei kleinen geräten box vergrößern*/
    }
}
.sidemenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidemenu li {
    margin-bottom: 10px;
}

.sidemenu li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
}

.sidemenu li a:hover {
    background-color: #007bff;
    color: white;
}

.main-content {
    margin-left: 270px;
    padding: 20px;
}

.site-content {
    align-items: flex-start;
    flex-wrap: wrap; /* chenged from nowrap! */
}

.language-switcher {
    display: flex;
    align-items: center; 
}
.language-switcher button {
    background: none;
    border: none; 
}

.container .navbar-collapse{
    background-color: #e73c32;
    margin-left: -2.8%;
    margin-right: -2.9%;
}
.navbar-custom {
    border-top: none;
    background: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
}

.container-navbar {
    padding: 0px;
}


.navbar-toggler {
    border: none;
    background-color: transparent;
    padding-bottom: 20px; /* Für vertikalen Abstand */
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

#header a {
    color: #035682; /* Blau für Links im Header */
}


.navbar-toggler-icon::before, .navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}
#header {
    text-align: center;
}

#logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

#slogan {
    font-size: 1.2rem;
    margin: 0;
    color: #555;
}
.navbar-toggler-icon::after {
    top: 8px;
}
.footer-logo {
    width: 150px;
    height: auto; 
}

@media (max-width: 992px) {
    .footer-logo {
        width: 100px;
        height: auto; 
    }
}

@media (max-width: 576px) {
    .footer-logo {
        width: 70px;
        height: auto;
    }
}	


.language-switcher {
    position: relative;
    display: inline-block;
}

.language-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.current-flag {
    display: inline-block;
    width: 30px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 5px;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 30px;
    height: 20px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.dropdown-menu {
    z-index: 1050;
}

.flag-button {
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.flag-button:hover, .flag-button:focus {
    background-color: transparent; 
    box-shadow: none; 
}

.language-switcher .fi {
    width: 24px;  
    height: auto;
    margin-right: 5px; 
}

/* Carousel */
.carousel-indicators li {
    border-radius: 10px;
    width: 10px;
    height: 10px;
}

.carousel-control-prev-icon {
	color: #000 !important;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

.carousel-inner .carousel-item {
    width: 100%; /* Your width */
    max-height: 360px; /* Your height */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* This also makes sure it fills the whole div */
}

.carousel-custom {
    opacity: 0.9;
    width:100%;
}

@media (max-width: 1050px) {
    .carousel {
        display: none; /* Slider bei Bildschirmgrößen unter 1000px ausblenden */
    }
}