/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
}

/* FOOTER */


.footer {
    background: #002f6c;
    width: 100%;

    padding: 30px 40px 8px 40px;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;

    /* GANZ WICHTIG */
    align-items: flex-start;

    /* VERHINDERT STRETCHING */
    height: auto;
}

/* LINKE SEITE */

.footer-links {
    display: flex;
    align-items: flex-start;

    /* WENIGER ABSTAND */
    gap: 55px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    min-width: 150px;
}

.footer-column h3 {
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 6px;

    white-space: nowrap;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.7;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 0.75;
}

/* LOGO */


.footer-slogan {
    margin-left: 40px;
    padding-left: 0;
    flex-shrink: 1;
}

.footer-slogan-image {
    width: 400px;
    max-width: 100%;
    height: auto;
}

.footer-container {
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
}


/* TABLET */

@media (max-width: 1200px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }

    .footer-column {
        min-width: 140px;
    }

    .footer-slogan {
        margin-left: 0;
        padding-left: 0;
        top: 0;
        justify-content: center;
    }

    .footer-slogan-image {
        width: 280px;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .footer {
        padding: 25px 15px;
    }

    .footer-container {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;
    }

    .footer-column {
        min-width: auto;
    }

    .footer-column h3 {
        font-size: 15px;
        white-space: normal;
    }

    .footer-column a {
        font-size: 13px;
        white-space: normal;
        display: block;
    }

    .footer-slogan {
        width: 100%;
        justify-content: center;

        margin-top: 10px;

        top: 0;
        padding-left: 0;
    }

    .footer-slogan-image {
        width: 220px;
        max-width: 100%;
    }
}


/* KLEINE HANDYS */

@media (max-width: 480px) {

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-column {
        text-align: center;
    }

    .footer-slogan-image {
        width: 180px;
    }
}