.image-stage {
    position: relative;
    width: 450px;
    height: 800px;
    z-index: 10;
    top: 100px;
}

.menu-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.menu-image.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
}

.menu-image img,
.menu-image figure,
.menu-image .wp-block-image {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0;
}

.menu-image img {
    width: 450px;
    height: 600px;
    object-fit: cover;
    display: block !important;
}

/* Menylänkar med hover effekt */
.menu-link {
    display: contents;
    cursor: pointer;
}

.menu-link > * {
    position: relative;
    cursor: pointer;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #b7b7b7;
    line-height: 1.2;
    padding: 0.5rem 0;
    margin: 0;
    transition: all 0.3s ease;
}

.menu-link > *::before,
.menu-link > *::after {
    content: '';
    position: absolute;
    left: -100vw;
    right: 0;
    width: 200vw;
    height: 1px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: -1;
}

.menu-link > *::before {
    top: 0;
}

.menu-link > *::after {
    bottom: 0;
}

.menu-link > *:hover {
    color: #2a2a2a;
}

.menu-link > *:hover::before,
.menu-link > *:hover::after {
    background-color: #2a2a2a;
}
