.menu>ul {
    @apply flex flex-row;
}

.header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1002;
    background: #fff;
}

.header-logo, .header-titel > img{
    max-width: 80%;
}

.main-menu{
    display: flex;
    align-items: center;
}

.header-main{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    position: sticky;
    top: 0;
    z-index: 1002;
    background: #fff;
}

.header-left{
    gap: 40px;
}

.header-wrapper{
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}

.menu li a {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    transition: background 0.2s;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 300;
}
.menu li a:hover,
.menu li a:focus {
    color: #D600B3;
    transition: 0.2s;
}
.menu li.current-menu-item a,
.menu li.current_page_item a,
.menu li.current-menu-ancestor a {
    color: #D600B3;
    transition: 0.2s;
    font-weight: 700;
}


@media screen and (max-width: 800px) {
    .main-menu {
        display: none;
    }

    .header-titel{
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 1.7rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 4px;
        margin: 7px 0;
        background: #D600B3;
        border-radius: 2px;
        transition: 0.2s;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 60vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 2rem 1rem;
        z-index: 1000;
        transition: right 0.2s;
    }
    .mobile-menu.open {
        right: 0;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu li a {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #222;
        padding: 0.75rem 1rem;
        border-radius: 0.375rem;
        display: block;
        transition: background 0.2s, color 0.2s;
    }
    .mobile-menu li a:hover,
    .mobile-menu li a:focus {
        color:#D600B3;
    }
    .mobile-menu li.current-menu-item a,
    .mobile-menu li.current_page_item a,
    .mobile-menu li.current-menu-ancestor a {
        color:#D600B3;
        font-weight: 700;
    }
    .mobile-menu.open ~ .mobile-menu-overlay {
        display: block;
        opacity: 1;
    }
}


@media screen and (min-width: 800px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-toggle {
    transition: 0.2s;
}
.mobile-menu-toggle span {
    transition: 0.2s;
}
.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(220, 220, 220, 0.6);
    z-index: 999;
    transition: opacity 0.2s;
}
