html {
    scroll-behavior: smooth;
    background-color: #000000;
}

body {
    padding: 0;
    margin: 0;

    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right center;
    background-size: cover;
}

h1 {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: white;
    margin: 0;
}

.unterueberschrift {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    display: block;
    margin: 0;
}

h2,
h3 {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    margin: 0;
}

p {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    color: white;
}

.text {
    margin: 0;
}

.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.material-symbols-outlined {
    font-size: 1.1rem;
    color: #ffffff;
}

/* - - Landingpage - - */

.startseite {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 300px 5%;
    gap: 80px;
}

.startseite-bild {
    width: 500px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 30px;
    gap: 5px;
}

/* - - Projektbeschreibung - - */

#projekbeschreibung {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    padding: 150px 5%;
}

.container-beschreibung {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.angaben {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.projektangaben {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 2px solid #ffffff;
    border-radius: 12px;
}

.projektangaben span:not(.material-symbols-outlined) {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

#projektbild {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

/* - - Abschnittsbeschreibung - - */

.abschnittsbeschreibung {
    display: flex;
    justify-content: center;
    padding: 150px 5%;
    box-sizing: border-box;
}

.abschnittsbeschreibung-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    box-sizing: border-box;
    color: white;
}

.column-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* - - Beschreibung Detail - - */

.beschreibung-detail {
    width: 100%;
    padding: 100px 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.beschreibung-detail-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: end;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

/* - - Gestaltung - - */

#gestaltungselemente {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    gap: 50px;
}

.gestaltungselemente-logo-color {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
}

#gestaltungselemente-logo,
#gestaltungselemente-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

#switchLogo,
#switchColor {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.boxButtonLogo {
    display: flex;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 10px #0003;
    padding: 10px;
    margin-top: 20px;
    gap: 8px;
    z-index: 10;
}

.buttonLogo {
    background-color: white;
    padding: 0px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buttonLogo:hover {
    transform: scale(1.1);
}

.boxButtonColor {
    display: flex;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 10px #0003;
    padding: 10px;
    margin-top: 20px;
    gap: 8px;
    z-index: 10;
}

.buttonColor {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #ffffff80;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buttonColor:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #0003;
}

/* - - Media - - */

@media (max-width: 1024px) {
    body {
        background-image: url(svg/Hintergrund-mobile.svg);
    }

    .startseite-bild {
        width: 400px;
    }

    #projekbeschreibung {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 40px 5%;
        min-height: auto;
    }

    .container-beschreibung {
        padding: 5%;
    }

    .text {
        max-width: 100%;
    }

    #projektbild {
        max-width: 100%;
    }

    .beschreibung-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .beschreibung-detail {
        padding: 40px 5%;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .abschnittsbeschreibung {
        padding: 40px 5%;
    }

    .abschnittsbeschreibung-container {
        flex-direction: column;
        gap: 10px;
    }

    .column-right {
        justify-content: flex-start;
    }

    .example-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    #gestaltungselemente {
        margin: 25px 15px;
        gap: 30px;
    }
}