/*Style Allgemein*/
:root {
    /* Farben */
    --primary: #0da09d;
    --primary_hover: #097674;
    --SBB_red: #eb0000;
    --SBB_red_hover: #b40000;
    --UI: #d9d9d9;
    --UI_dark: #b9b9b9;

    --primary-alpha-20: rgba(13, 160, 157, 0.2);
}

* {
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

h1 {
    margin: 0px;
}

h2 {
    font-weight: 800;
    font-size: 1.5em;
    text-align: left;
    color: black;
}

h3 {
    font-weight: 800;
    font-size: 1.3em;
    text-align: left;
    color: black;
}

h4 {
    text-align: left;
    color: black;
}

p {
    font-weight: 200;
    font-size: 1em;
    line-height: 1.4;
    text-align: left;
    color: black;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary_hover);
}

button {
    width: 250px;
    font-weight: 200;
    font-size: 1em;
    border-radius: 40px;
    border: 0px;
    padding: 20px;
    margin-top: 30px;
    background-color: var(--primary);
    color: white;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.1),
        0 5px 5px 0 rgba(0, 0, 0, 0.11);
    cursor: pointer;
}

button:hover {
    background-color: var(--primary_hover);
}

main {
    display: flex; /*Übergeordnetes Element*/
    flex-direction: column;
    justify-content: center; /*Untergeordnete Elemente (div und form) in Horinzontale Linie in der Mitte anorden*/
    width: 90%;
    align-self: center;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
}

header {
    position: sticky;
    z-index: 100;
    top: 0;
    background-color: white;
}

/*Style Navigation Mobile*/
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    border-style: solid;
    border-color: var(--UI);
    border-width: 0px 0px 1px 0px;
    box-shadow: 0 10px 10px 0 rgba(181, 181, 181, 0.038),
        0 4px 4px 0 rgba(189, 189, 189, 0.11);
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    padding: 0px;
    margin-top: 8px;
}

nav img {
    height: 20px;
    margin-top: 10px;
}

nav li {
    padding: 10px 10px;
    color: black;
}

nav .active li {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 16px;
}

nav a {
    text-decoration: none;
    font-size: 1em;
}

/*Style Navigation Desktop*/
@media (min-width: 768px) {
    /*Navigation*/
    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        padding: 0% 2% 0% 2%;
    }

    nav img {
        margin-top: 0;
    }

    nav ul {
        gap: 20px;
        margin-top: 16px;
    }
}

/*Footer Mobile*/
footer {
    display: flex; /*Übergeordnetes Element*/
    flex-direction: column;
    justify-content: center; /*Untergeordnete Elemente (div und form) in Horinzontale Linie in der Mitte anorden*/
    width: 100%;
    margin-top: 5%;
    padding-bottom: 1%;
    border-style: solid;
    border-color: var(--UI);
    border-width: 1px 0px 0px 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5% 2% 0% 2%;
}

.footerspalte {
    width: 100%;
}

.footerspalte h3 {
    display: none;
}

.footerspalte img {
    height: 20px;
}

.footerspalte .social-icons {
    display: flex;
    gap: 10px;
    padding: 2% 0%;
}

.footer-bottom {
    padding: 0% 0% 0% 2%;
}

/*Footer Desktop*/
@media (min-width: 1080px) {
    .footer-content {
        flex-direction: row;
        padding: 2% 2% 0% 2%;
    }

    .footerspalte {
        width: 20%;
    }

    .footerspalte h3 {
        display: block;
    }

    .footer-bottom {
        padding: 0% 0% 0% 2%;
        height: 50px;
    }
}
