.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color: #1c1b1b;
    z-index: 1000;
    transition: background-color 0.9s, padding 0.9s;
}



/* Logo-Container und Basis-Größe */
.logo-container {
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.02);
    opacity: 0.85;
}

.logo-container img {
    width: 220px;
    height: auto;
    transform-origin: center center;
    animation: logoWobble 9s ease-in-out infinite;
    transition: width 0.3s, transform 0.3s; 
    transform: rotate(0deg) scale(1);
    padding: 2px;
}



@keyframes logoWobble {
    0%, 80%, 100% {
        transform: rotate(0deg) scale(1); 
    }
    85% {
        transform: rotate(0deg) scale(1.02); 
    }
    90% {
        transform: rotate(0deg) scale(1.01); 
    }
    95% {
        transform: rotate(0deg) scale(1.01); 
    }
}

.menu-toggle {
    position: relative;
    top: 0px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #241102;
    padding: 10px;
    z-index: 99;
    box-sizing: border-box;
}

.main-navigation.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2px;
    align-items: center;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    line-height: 1;
}

.menu-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.menu-list li {
    margin: 15px 0;
}

.menu-list li:last-child {
    margin-bottom: 0;
}

.menu-list a {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.menu-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-subtitle {
    font-size: 14px;
    opacity: 0.7;
}

.menu-list a:hover {
    color: #00bcd4;
}

.menu-list a:hover .menu-subtitle {
    opacity: 1;
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .main-navigation {
        padding: 5px;
    }
    .menu-list li {
        margin: 0px 0;
    }
}