/* Image Reveal Menu Widget Style - Suffix: 858a89b5 */

.irm-container-858a89b5 {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    font-family: inherit;
    box-sizing: border-box;
    overflow: hidden;
    align-items: center; /* Centering image box and menu vertically */
}

/* Left side navigation */
.irm-left-side-858a89b5 {
    width: 35%;
    display: flex;
    align-items: center;
    padding: 5% 4%;
    box-sizing: border-box;
    z-index: 10;
}

.irm-menu-858a89b5 {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.irm-menu-item-858a89b5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    transition: color 0.4s ease;
}

.irm-number-858a89b5 {
    font-size: 0.75rem;
    font-family: sans-serif;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.irm-menu-item-858a89b5:hover .irm-number-858a89b5,
.irm-menu-item-858a89b5.active .irm-number-858a89b5 {
    opacity: 1;
}

.irm-title-wrapper-858a89b5 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.irm-title-858a89b5 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Bottom line animation (Left to Right) */
.irm-title-line-858a89b5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.irm-menu-item-858a89b5:hover .irm-title-line-858a89b5,
.irm-menu-item-858a89b5.active .irm-title-line-858a89b5 {
    transform: scaleX(1);
}

/* Right side Image display */
.irm-right-side-858a89b5 {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5% 4%;
    box-sizing: border-box;
}

.irm-image-wrapper-858a89b5 {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1.5; /* Customizable aspect ratio */
    overflow: hidden;
    background-color: rgba(0,0,0,0.02);
}

.irm-image-slide-858a89b5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: opacity 0.6s ease, clip-path 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active state reveals image from left to right */
.irm-image-slide-858a89b5.active {
    opacity: 1;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.irm-img-858a89b5 {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fill correctly */
}

/* Mobile responsive layout adjustment */
@media (max-width: 1024px) {
    .irm-container-858a89b5 {
        flex-direction: column-reverse;
        min-height: auto;
    }
    .irm-left-side-858a89b5 {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
    .irm-right-side-858a89b5 {
        width: 100%;
        padding: 1.5rem;
    }
    .irm-image-wrapper-858a89b5 {
        width: 100%;
    }
    .irm-menu-858a89b5 {
        gap: 32px;
    }
    .irm-title-858a89b5 {
        font-size: 1.75rem;
    }
}
