/* =========================================
   HEADER
========================================= */


.header {

    width: 100%;

    background: #050505;

    border-bottom: 1px solid rgba(0, 123, 255, 0.35);

    padding: 20px 10%;

}



.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1400px;

    margin: 0 auto;

}



/* =========================================
   LOGO
========================================= */


.logo {

    color: var(--white);

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s ease;

}



.logo:hover {

    color: var(--blue-light);

}



/* =========================================
   NAVIGATION
========================================= */


.navigation ul {

    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;

}



.navigation a {

    position: relative;

    color: #b9c7d9;

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s ease;

}



.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--blue);

    transition: 0.3s ease;

}



.navigation a:hover {

    color: white;

}



.navigation a:hover::after {

    width: 100%;

}



/* =========================================
   FOOTER
========================================= */


.footer {

    width: 100%;

    background: #050505;

    border-top: 1px solid rgba(0, 123, 255, 0.35);

    padding: 60px 10% 25px;

}



/* Footer Inhalt */


.footer-container {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 40px;

}



/* Footer Bereiche */


.footer h2 {

    color: white;

    font-size: 26px;

    margin-bottom: 15px;

}



.footer h3 {

    color: var(--blue-light);

    font-size: 18px;

    margin-bottom: 15px;

}



.footer p {

    color: #9caec4;

    line-height: 1.7;

}



/* Footer Links */


.footer ul {

    list-style: none;

}



.footer a {

    color: #9caec4;

    text-decoration: none;

    transition: 0.3s ease;

}



.footer a:hover {

    color: var(--blue-light);

}



/* =========================================
   FOOTER BOTTOM
========================================= */


.footer-bottom {

    max-width: 1400px;

    margin: 40px auto 0;

    padding-top: 20px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,0.08);

}



.footer-bottom p {

    font-size: 14px;

    color: #68788d;

}



/* =========================================
   RESPONSIVE DESIGN
========================================= */


@media(max-width: 768px) {


    .header-container {

        flex-direction: column;

        gap: 20px;

    }



    .navigation ul {

        flex-direction: column;

        gap: 20px;

    }



    .footer-container {

        flex-direction: column;

    }

    .btn-primary,
    .btn-secondary {

    display:inline-block;

}

    


}