.site-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: auto;
}

.menu-toggle {
    position: relative;
    top: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    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: 100vh;
    background: rgba(7, 4, 24, 0.95);
    padding: 20px;
    z-index: 99999; /* Extrem hoch machen, damit nichts drüber kommt */
    box-sizing: border-box;
}

/* Wenn das Menü aktiv ist (wird per JS getoggelt) */
.main-navigation.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    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: 25px 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;
}

    }