

header {
    background-color: #000000;
    padding: 20px;
    display: flex;
    height: 100px;
    position: relative;
    box-shadow: 0px 0px 10px #303030;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;

}


header img {
    height: 100px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    flex-wrap: wrap;
    font-size: 18px;
}

nav li {
    margin-left: 30px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    margin: 40px;
    flex-wrap: wrap;

}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
    transition-delay: 0.1s;
}

a {
    color: #000000;
    text-decoration: none;
}



.button {
    background-color: #ffffff;
    font-size: 16px;
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
    border: 2px solid white;
}

/* CSS für das Hamburger-Menü */
.menu-icon {
    display: none;
}
.menu.showing {
    display: none;
}

.menu {
    display: none;
}


.header {
    justify-content: space-between;
    align-items: center;
}

.header {
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
}

h1 {
    font-size: 38px;
    font-family: montserrat;
    right: 50%;
    left: 50%;
    margin: 0;
}

h4{
    margin-left: 200px;
    text-align: start;
    margin-left: 450px;
    font-family: montserrat;
    font-weight: bold;
    font-size: 30px;
}



h2 {
    font-size: 32px;
    font-weight: bold;
    font-family: montserrat;
    text-align: center;
}
h3{
    text-align: start;
    font-family: montserrat;
    font-weight: bold;
    font-size: 30px;
}



h6{
    font-family: montserrat;
    font-size: 20px;
    font-weight: bold;
}

body {
    padding: 0;
    font-family: montserrat;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background-color: #000000;
    max-width: 100%;
    margin: 0 auto;
}



/* CSS für das responsive Layout */


#menu-container{
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

iframe {
    float: left;
    margin-right: 20px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 100px;
}

.container a {
    color: white;
    font-size: 18px;
}

.container p {
    color: white;
    font-size: 20px;
}

.container li {
    color: white;
    font-size: 18px;
}

.social-media {
    clear: both;
    margin-top: 20px;
}

.social-media ul {
    display: flex;
    justify-content: center;
}

.social-media li {
    margin: 0 10px;
}

.social-media img {
    width: 40px;
    height: 40px;
}

@media (max-width: 600px) {
    iframe {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .social-media ul {
        flex-wrap: wrap;
    }

    .social-media li {
        margin: 0 5px;
    }

    .social-media img {
        width: 40px;
        height: 40px;
    }
}

iframe {
    display: block;
    margin: 0 auto;
}

.map-container {
    margin-bottom: 100px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px; /* set the height to the same value as the iframe height */
}

.map-container iframe {
    display: block;
}

@media only screen and (max-width: 768px) {
    header {
        padding: 10px;
        height: auto;
        width:auto;
        margin-bottom: 0;
    }

    h1{
        font-size: 30px;
    }
    header img {
        height: 50px;
        margin-right: auto;
        margin-left: 10px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 10px 0;
        text-align: center;
        z-index: 1;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 10px 0;
    }

    nav a {
        font-size: 16px;
        margin: 0;
        color: white;
        display: block;
        padding: 10px 0;
    }

    .button {
        margin-top: 10px;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 2;
    }

    .menu-icon .navicon {
        width: 18px;
        height: 2px;
        background-color: white;
        display: block;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .menu-icon .navicon:before,
    .menu-icon .navicon:after {
        width: 100%;
        height: 100%;
        background-color: white;
        display: block;
        content: "";
        position: absolute;
        left: 0;
        transition: transform 0.3s ease;
    }

    .menu-icon .navicon:before {
        top: -6px;
    }

    .menu-icon .navicon:after {
        top: 6px;
    }

    .menu-icon.active .navicon {
        background-color: transparent;
    }

    .menu-icon.active .navicon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-icon.active .navicon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .menu-icon.active ~ nav {
        display: block;
    }
    .header {
        position: relative;
        display: block;
        margin-bottom: -100px;

    }

    .menu {
        display: none;
        list-style-type: none;
        margin: 0;
        padding: 0;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }


    #welcome-section.menu-open {
        transform: translateY(50%);

    }



    .menu.showing {
        display: block;
        background-color: #000000;
        z-index: 999;
        left: 0;
        right: 0;
        text-shadow: 0px 0px 20px white;
    }



    .menu.showing a {
        display: block;
        font-size: 10px;
        color: white;
        text-shadow: 0px 0px 0px white;
    }

    .menu li {
        flex-grow: 1;
        text-align: center;
    }

    .menu hr{
        width: 200px;
        margin: 0 auto;
    }

    .hr hr{
        width: 100%;
    }
    .menu a {
        display: block;
        padding: 10px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }


    .menu.showing + .welcome-area {
        margin-bottom: 200px;
        transform: translate(-50%, -50%);
    }


    #welcome-area {
        display: block;
        filter: brightness(60%) contrast(120%);

    }

    .welcome-areaText {
        position: absolute;
        display: block;
        top: 29%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 1;
        width: 80%;
        max-width: 600px;
    }

    .welcome-areaText h1 {
        font-size: 16px;
    }

    .welcome-areaText p {
        font-size: 8px;
    }

    .buttonWM {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 120%;
        background-color: #ffffff;
        font-size: 8px;
        color: #000000;
        padding: 5px 10px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }



    .Willkommen:not(.menu-showing) {
        margin-bottom: 100px;
    }



    .menu li {
        display: block;

    }

    .menu li a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
        margin-bottom: 0;
    }

    /* Desktop-Navigation ausblenden */
    nav ul {
        display: none;
    }
    .navmobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px; / Platz für das Logo */
    margin-bottom: 0;
    }
    .button {
        display: none;
    }

    /* Hamburger-Menü-Links */
    .navmobile a {
        display: block;
        font-size: 1.25em;
        margin: 1em 0;
        color: #fff;
        text-decoration: none;
    }

    /* Hamburger-Menü-Links beim Hover */
    .navmobile a:hover {
        color: #fff;
    }

    /* Hamburger-Icon bei Hover */
    .menu-icon:hover i {
        color: #fff;
    }

    /* Desktop-Logo im Hamburger-Menü ausblenden */
    .navmobile .logo {
        display: none;
    }

    /* Logo im Hamburger-Menü */
    .navmobile .logo-mobile {
        display: block;
        margin-bottom: 2em;
        font-size: 1.5em;
        color: #fff;
        text-align: center;
    }

    /* Navigation anzeigen, wenn das Hamburger-Menü geöffnet ist */
    nav.showing ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 50px;
    }

    nav.showing ul li {
        margin: 1em 0;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    nav li {
        margin-left: 0;
        margin-right: 30px;
        margin-bottom: 10px;
    }
    header {
        height: auto;
        padding: 10px;
    }

    header img {
        height: 50px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        text-align: center;
        z-index: 1;
    }

    nav li {
        margin: 10px 0;
    }

    nav a {
        margin: 0;
        font-size: 24px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid white;
    }

    .button {
        font-size: 14px;
        padding: 8px 16px;
    }

    h2{
        font-size: 30px;
    }

    .container{
        padding: 50px;
    }
}

img {
    max-width: 100%;
    height: auto;
}



.footer {
    background-color: #000;
    color: white;
    font-family: Montserrat;
    font-size: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}




.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    float: left;
    justify-content: left;
    align-items: start;
}

.logo-img {
    width: 220px;
    margin-bottom: 25px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: start;
}

.footer-section ul li {
    margin-top: 8px;
    padding-left: 0;
    padding-top: 8px;
}

.footer-section ul li a,
.footer-section p a {
    color: white;
    text-decoration: none;
    text-align: start;
    margin-top: 8px;
    font-size: 16px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.icon {
    display: inline-block;
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.icon img {
    width: 20px;
    height: 20px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 22px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.info-block {
    margin-bottom: 30px; /* Mehr Abstand zwischen Einträgen */
}

.info-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: white;
}

.icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    margin-top: 2px;
}

.icon img {
    width: 100%;
    height: auto;
}

.info-text {
    display: block;
    line-height: 1.6;
    text-align: left;
}

.footer-section a:hover {
    text-decoration: underline;
}





@media (max-width: 768px) {

    .footer {
        height: auto;
        padding-bottom: 250px;
        text-align: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin: 20px 0;
        align-items: center;
    }

    .logo-img {
        width: 220px;
        margin-bottom: 30px;
    }

    .info-link {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin: 0 0 8px 0;
    }

    .footer-section ul li a,
    .footer-section p a {
        text-align: center;
    }


    .info-text {
        padding: 0;
        font-size: 16px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
}




