/* Image Reveal Menu Widget Style - Suffix: 6a2dd40d */

.irm-container-6a2dd40d {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    font-family: inherit;
    box-sizing: border-box;
    overflow: hidden;
    align-items: center; /* Vertically center left and right content */
}

/* Left side navigation */
.irm-left-side-6a2dd40d {
    width: 35%;
    display: flex;
    align-items: center;
    padding: 5% 4%;
    box-sizing: border-box;
    z-index: 10;
}

.irm-menu-6a2dd40d {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.irm-menu-item-6a2dd40d {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    transition: color 0.4s ease;
}

.irm-number-6a2dd40d {
    font-size: 0.75rem;
    font-family: sans-serif;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.irm-menu-item-6a2dd40d:hover .irm-number-6a2dd40d,
.irm-menu-item-6a2dd40d.active .irm-number-6a2dd40d {
    opacity: 1;
}

.irm-title-wrapper-6a2dd40d {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.irm-title-6a2dd40d {
    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-6a2dd40d {
    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-6a2dd40d:hover .irm-title-line-6a2dd40d,
.irm-menu-item-6a2dd40d.active .irm-title-line-6a2dd40d {
    transform: scaleX(1);
}

/* Right side Image display */
.irm-right-side-6a2dd40d {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5% 4%;
    box-sizing: border-box;
}

.irm-image-wrapper-6a2dd40d {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1.5; /* Fixed 3:2 Aspect Ratio */
    overflow: hidden;
    background-color: rgba(0,0,0,0.03);
}

.irm-image-slide-6a2dd40d {
    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 elegantly from left to right */
.irm-image-slide-6a2dd40d.active {
    opacity: 1;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.irm-img-6a2dd40d {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill box identically without changing the box size */
}

/* Mobile responsive layout adjustment */
@media (max-width: 767px) {
    .irm-container-6a2dd40d {
        flex-direction: column-reverse;
        min-height: auto;
    }
    .irm-left-side-6a2dd40d {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
    .irm-right-side-6a2dd40d {
        width: 100%;
        padding: 1.5rem;
    }
    .irm-image-wrapper-6a2dd40d {
        width: 100%;
        aspect-ratio: 1.5;
    }
    .irm-menu-6a2dd40d {
        gap: 2rem;
    }
    .irm-title-6a2dd40d {
        font-size: 1.75rem;
    }
}
