/* Header Container */
#footer.footer-1 .footer-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Content */
#footer.footer-1 .footer-content-first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--primary);
    padding-top: 64px;
}

#footer.footer-1 .footer-content-second {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--dark);
}

#footer.footer-1 .footer-second-content{
    display: flex;
    flex-direction: row;
    gap: var(--space-s);
    padding: var(--space-m) 0;
}

#footer.footer-1 .footer-second-content a{
    color: var(--text-body);
    font-size: var(--text);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-decoration: none;
    cursor: pointer;
}

#footer.footer-1 .footer-sc-nav{
    color: var(--text-body);
    font-size: var(--text);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-decoration: none;
}

#footer.footer-1 .footer-second-content{
    display: flex;
    flex-direction: row;
    gap: var(--space-s);
    padding: var(--space-m) 0;
}

/* Logo */
#footer.footer-1 .footer-logo-container {
    display: flex;
    align-items: center;
}

#footer.footer-1 .footer-logo {
    max-height: 60px;
    width: auto;
}

/* Header Right */
#footer.footer-1 .footer-right{
    display: flex;
    flex-direction: row;
    gap: var(--space-2xs);
}

/* Navigation Links */
#footer.footer-1 nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#footer.footer-1 .nav-links {
    list-style: none;
    display: flex;
    gap: 20px; 
}

#footer.footer-1 .nav-links li a {
    text-decoration: none;
    font-family: var(--secondary-font);
    color: var(--primary); ;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

#footer.footer-1 .nav-links li a:hover {
    color: var(--primary); 
}

/* Buttons */
#footer.footer-1 .footer-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer.footer-1 .footer-buttons button {
    border: 1px solid var(--primary);
    background-color: var(--light);
    color: var(--primary);
    padding: 12px 24px;
    margin-left: 10px;;
    cursor: pointer;
    font-size: 14px;
}

#footer.footer-1 .footer-buttons button.primary {
    background-color: var(--primary); /* Blaue Farbe */
    color: var(--light); /* Weißer Text */
    border: 1px solid var(--primary);
}

@media only screen and (max-width: 765px){
    #footer.footer-1 .footer-content-first {
        display: flex;
        gap: var(--space-m);
        flex-direction: column;
        justify-content:center;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid var(--primary);
        padding-top: 64px;
        padding-bottom: var(--space-2xl);
    }

    #footer.footer-1 .nav-links {
        padding-left: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px; 
    }

    #footer.footer-1 .footer-second-content{
        display: flex;
        flex-direction: column;
        gap: var(--space-s);
        padding: var(--space-m) 0;
        padding-bottom: var(--section-space) !important;
    }

    #footer.footer-1 .footer-second-content a{
        text-align: center;
        color: var(--text-body);
        font-family: var(--secondary-font);
        font-size: var(--text);
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        text-decoration: none;
        cursor: pointer;
    }
    
    #footer.footer-1 .footer-sc-nav{
        text-align: center;
        color: var(--text-body);
        font-family: var(--secondary-font);
        font-size: var(--text);
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        text-decoration: none;
    }

    #footer.footer-1 nav {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }
}