@font-face {
    font-family: RobotoMono;
    src: url(fonts/RobotoMono-VariableFont_wght.ttf);
}

* {
    box-sizing: border-box;
}

/* allgemeines Body-Layout (bestehend) */
body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to bottom, blue, black);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    color: white;
    font-family: RobotoMono;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imprintLink {
    color: white;
    text-decoration: none;
}
.imprintLink:hover{
    text-decoration:underline ;
}

.logo {
    max-width: 350px;
    max-height: 350px;
    height: 100%;
    width: 100%;
}

.description {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.downloadImg {
    cursor: not-allowed;
}

/* Carousel: kein Autoplay mehr, scroll-basierte Navigation */
.image-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}

.carousel-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* scrollbar ausblenden */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel-container::-webkit-scrollbar { display: none; }

.images {
    flex: 0 0 auto;
    width: min(300px, 80vw);
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid black; /* Komma entfernt */
    scroll-snap-align: center;
}

/* Pfeil-Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    line-height: 1;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-button:disabled {
    opacity: 0.4;
    cursor: default;
}

/*------------------------ Media-Querry ----------------------*/

/* @media(max-width: 650px){
    .logo{
        max-width: 0px;
        max-height: 300px;
    }
} */