:root {
    --hintergrundfarbe: white; /* Standard-Hintergrundfarbe */
}

/* ================= Variable Webfont local einbinden ================= */

/*
ACHTUNG: Der Font "Inter" kann stufenlos im "font-weight" zwischen 100 und 900 eingestellt werden
beim Font-Style geht nur "normal" oder "italic", also keine Zwischenstufen
*/

@font-face {
    font-family: "Inter";
    src: url("inter-variable-font/Inter-VariableFont_slnt_wght.woff2")
        format("woff2");
}

/* ================================ normalize ================================ */

html {
    font:
        100%/1.5 "Inter",
        Verdana,
        Helvetica,
        sans-serif;
    color: #444;
    background-color: #fff;
    hyphens: auto;
    scroll-behavior: smooth;
}

/* ================================ main ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
}

.hero-text img {
    width: 70%;
    height: auto;
    @media (max-width: 780px) {
        width: 100%;
        margin-top: 30vh;
    }
}

.underlined {
    text-decoration-style: solid;
    color: white;
    opacity: 100%;
    mix-blend-mode: normal;
    text-underline-offset: 0.2rem;
    transition: all 0.3s ease-in-out;
}

.underlined:hover {
    text-decoration-style: solid;
    opacity: 40%;
    text-underline-offset: 0.1rem;
}

/*main*/

h2,
h3,
p {
    margin-left: 4vw;
    margin-right: 4vw;
    color: white;
    font-weight: normal;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 2rem;
    padding-top: 8rem;
    padding-bottom: 1rem;

    a {
        text-decoration: none;
        color: white;
    }
}

h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

p {
    color: white;
    font-size: 1rem;
    padding-bottom: 1rem;
}

div.header {
    background-image: url(/assets/JA26_Hero_Blur_BigImg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-position: left;
    background-attachment: fixed;
}

@media (max-width: 780px) {
    div.header {
        background-image: url(/assets/JA26_Hero_Blur_BigImg1.2.webp);
        min-height: 700px;
        background-position: left;
        width: auto;
        background-attachment: scroll;
    }
}

header {
    position: sticky;
    top: 0;
    height: auto;
}

.bottom {
    background-image: url(/assets/JA26_Blur_BigImg2.1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-position: center;
    background-attachment: scroll;
}

@media (max-width: 780px) {
    .bottom {
        min-height: 120px;
        width: auto;
    }
}

/*Logo*/

.logoTop {
    position: absolute;
    top: 2vw;
    left: 2vw;
    width: 15%;
    margin: 0;

    @media (max-width: 780px) {
        width: 30%;
    }
}

footer {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    padding: 2vw;
    min-height: 30vh;
    position: relative;
}

figure.logo {
    grid-column: 1 / 6; /* oder z.â€¯B. 3 / span 12 */
    @media (max-width: 780px) {
        grid-column: 1 / 12;
    }
    margin: 0;
    position: sticky;
    bottom: 0;
    align-self: end;
}

figure.logo img {
    width: 100%;
    height: auto;
    position: sticky;
    bottom: 0;
}

.bigImg1 {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    background-image: url(assets/JA26_BigImg1.webp);

    .ImgCredit {
        top: 400%;
        overflow: hidden;
        font-size: 0.5rem;

        transform-origin: center;
        text-align: right;
        position: sticky;
    }

    @media (max-width: 780px) {
        min-height: 70vh;
        width: auto;
        background-size: cover;
        background-attachment: scroll;
    }
}

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.banner div {
    white-space: nowrap;
    font-family: inter;
    font-size: 8em;
    letter-spacing: -0em;
    font-weight: normal;
    color: black;
    line-height: 1;
    will-change: transform;
}

@media (max-width: 680px) {
    .banner div {
        font-size: 4em;
    }
}

.legal {
    margin-top: 4rem;
}

/* Diashow

figure#raumplan {
    padding: 0;
    margin: 0;
}

figure#raumplan img {
    width: 100%; /* 100% der Viewport-Breite */ /*
    height: auto; /* HÃ¶he proportional zur Breite */ /*
    display: block; /* Verhindert zusÃ¤tzlichen Abstand unter dem Bild */ /*
    padding: 0;
    margin-bottom: 150px;
}

div.eindruecke-container {
    padding-left: 32vw;
    padding-right: 32vw;
}

#eindruecke img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#eindruecke img:first-child {
    display: block;
}
*/

/*Buttons Slider

#zurueckButton {
    color: white;
    border: none;
    background: transparent;
    font-size: 4em;
}


#weiterButton {
    color: white;
    border: none;
    background: transparent;
    font-size: 4em;
}

.buttons {
    display: flex;
    justify-content: center;
}

*/
