﻿body {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(240, 240, 240, 0.6));
    backdrop-filter: blur(10px);
}

header {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    /*border-radius: 16px;*/
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

 
    header .logo {
        color: white;
        padding-top: 15px;
        padding-bottom: 15px;
    }

        header .logo .instrument {
            color: white;
        }

    header .menu a {
        color: white !important;
    }

    header.shrink {
        position:sticky;
        padding-top:0px;
        display:block;

    }

        header.shrink .menu {
            top: 12px;
        }
        header.shrink .logo {
            padding-bottom:0px
        }

        .top-header {
            display: block;
            height: 22px;
        }

.banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.banner a {
    color: white; 
    text-decoration: none;
}


.start {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden; /* <-- verhindert Overflow */
}
header {
    display: flex;
    justify-content: space-between; /* verteilt Logo links, Menü rechts */
    align-items: center;
}

    header .logo {
        text-align: left;
        flex: 1; /* oder auto */
    }

@media screen and (max-width: 1450px) {
    header .menu.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background-color: rgba(220, 220, 220, .9);
        color: #000;
        height: 100vh;
    }

    @media Screen and (max-width: 600px) {
        header .language {
            display: none;
        }
    }

    /*.start::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: scale(1.1);
        animation: zoomInOnLoad 5s ease-out forwards;
        z-index: 0;
    }


@keyframes zoomInOnLoad {
    0% {
        transform: scale(1.1);*/
    /*opacity: 0;*/
    /*}

    100% {
        transform: scale(1);*/
    /*opacity: 1;*/
    /*}
}*/

