.image-reveal-menu-wrapper-3b68649c {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 50vh;
    padding-left: 20px;
}

.image-reveal-menu-list-3b68649c {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.reveal-menu-link-3b68649c {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    display: inline-block;
    padding-bottom: 5px;
}

.reveal-menu-link-3b68649c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #d4af37; /* Default gold */
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.reveal-menu-item-3b68649c:hover .reveal-menu-link-3b68649c::after {
    width: 100%;
}