/* Core Container */
.irm-container-59a6e60b {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Layers */
.irm-bg-wrapper-59a6e60b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.irm-bg-layer-59a6e60b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 4s ease-out;
    transform: scale(1.05);
}

.irm-bg-layer-59a6e60b.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay */
.irm-overlay-59a6e60b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Menu Layout */
.irm-menu-wrapper-59a6e60b {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 5%;
}

.irm-nav-59a6e60b {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Glassmorphism Menu Item */
.irm-menu-item-59a6e60b {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.irm-menu-item-59a6e60b:hover,
.irm-menu-item-59a6e60b:focus,
.irm-menu-item-59a6e60b:active {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Removed underline effect entirely */
