html,
body {
    margin: 0;
    padding: 0;
    width: 100%;

    background-color: rgba(229, 231, 235, 0.11);

}





html {
    scroll-behavior: smooth;
}

/*Balken*/

/*.balken {*/
/*    !*background-color: #99acb8;*!*/
/*    background-color: rgba(143, 161, 171, 0.6);*/
/*    backdrop-filter: blur(5px);*/
/*    height: 35px;*/

/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 0 20px;*/
/*}*/
.balken {
    background-color: rgba(143, 161, 171, 0.6);
    backdrop-filter: blur(5px);
    height: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    padding: 0 20px;

    position: relative;
    z-index: 3000;
}

.balken a {
    color: white;
    font-size: 18px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    pointer-events: auto;
}

.navbar {
    height: 124px;
    background-color: #f8f8f8;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin-right: 40px;


}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-variant-caps: all-small-caps;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover{
    color:gray;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px; /*Dicke der Linie*/
    background-color: #99acb8;
    transition: 0.2s;
}
.nav-links a:hover::after, .nav-links a.active::after{
    width: 100%;

}



.logo img {
    height: 400px;
    display: block;
    object-fit: contain;

    margin-left: -40px;
}

/* Hamburger standardmäßig verstecken */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    margin-left: auto;
    z-index: 2000;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #4a4a4a;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .balken {
        position: relative;
        z-index: 3000;
    }

    .navbar {
        height: 90px;
        padding: 0 20px;

        position: sticky;
        top: 0;
        left: auto;
        right: auto;

        width: 100%;
        box-sizing: border-box;
        z-index: 2000;
    }

    .logo img {
        height: 250px;
        margin-left: -30px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;

        width: 100%;
        box-sizing: border-box;

        background-color: #f8f8f8;
        flex-direction: column;
        align-items: center;
        gap: 25px;

        padding: 30px 0;
        margin: 0;
        z-index: 2500;

        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }
}




/*Footer*/

.footer {

    margin-top: auto;

    padding: 60px 120px;


    display: grid;
    grid-template-columns: 2fr 1.8fr 1fr;
    gap: 40px;

    font-family: 'Manrope', sans-serif;

    background: #0f1b24; /* tiefes Navy */
    color: #e6edf2;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}




/* Branding */

.footer-brand h3 {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.footer-subtitle {
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8fa3b0;
}

/* Text */

.footer p,
.footer li {
    font-size: 15px;
    line-height: 2.3;
    color: #b8c6cf;
    margin: 0;
}


/* Section Titel */

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Listen */

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

/* subtiler Hover */

.footer-section li:hover {
    color: #ffffff;
}

/* Öffnungszeiten */

.zeiten li {
    display: flex;
    gap: 12px; /* statt auseinanderziehen */
}

.zeiten span {
    min-width: 28px; /* kleiner als vorher */
    font-weight: 600;
    color: #e6edf2;
}

/* Bottom */

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 14px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section li a {
    color: #b8c6cf;
    text-decoration: none;
    font: inherit;
    transition: color 0.2s ease;
}

.footer-section li:hover a {
    color: #ffffff;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f95a3;
}

.footer-bottom a {
    font-size: 14px;
    font-weight: 500;
    color: #b8c6cf;
    text-decoration: none;
    margin-left: 18px;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 42px 20px;
        gap: 26px;
    }

    .footer-section {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 14px;
    }

    .footer-section ul {
        display: none;
        margin-top: 10px;
    }

    .footer-section.active ul {
        display: block;
    }

    .toggle {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

    .toggle::after {
        content: "+";
        color: #8fa3b0;
        transition: 0.2s;
    }

    .footer-section.active .toggle::after {
        transform: rotate(45deg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 14px;
    }
}

.footer-address p {
    margin: 0 0 6px 0; /* mehr Abstand zwischen Zeilen */
    line-height: 1.9;  /* luftiger */
}
.footer-social h4 {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Icons Container */
.social-icons-footer {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

/* Einzelne Buttons */
.social-icons-footer a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    text-decoration: none;


    transition: all 0.2s ease;
}

/* Icons */
.social-icons-footer i {
    font-size: 40px;

}

/* Farben */
.whatsapp i {
    color: #25D366;

}

.instagram i {
    color: #E1306C;
}

/* Hover  */
.social-icons-footer a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.zeiten-social-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 68px;

}


.footer-social {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-bottom: -32px;

}
