/* Image Reveal Menu - 8496fcc1 */

.irm-8496fcc1-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #111;
}

/* Dual background layers for crossfade */
.irm-8496fcc1-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.irm-8496fcc1-bg.irm-8496fcc1-bg-active {
    opacity: 1;
}

/* Dark overlay for text readability */
.irm-8496fcc1-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

/* Menu container */
.irm-8496fcc1-menu {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 60px;
}

/* Menu items */
.irm-8496fcc1-item {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    transition: opacity 0.3s ease;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
}

/* Underline pseudo-element */
.irm-8496fcc1-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.irm-8496fcc1-item:hover::after,
.irm-8496fcc1-item.irm-8496fcc1-item-active::after {
    width: 100%;
}

/* Dim non-hovered items when any item is hovered */
.irm-8496fcc1-menu:hover .irm-8496fcc1-item {
    opacity: 0.4;
}

.irm-8496fcc1-menu:hover .irm-8496fcc1-item:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .irm-8496fcc1-item {
        font-size: 2rem;
    }

    .irm-8496fcc1-menu {
        padding: 24px 30px;
    }
}

@media (max-width: 480px) {
    .irm-8496fcc1-item {
        font-size: 1.5rem;
    }

    .irm-8496fcc1-menu {
        padding: 20px 20px;
    }
}
