.image-reveal-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #222;
    padding: 50px 20px;
}

.image-reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.image-reveal-bg .reveal-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-reveal-bg iframe.reveal-media {
    pointer-events: none;
    transform: scale(1.2); /* Hide youtube edges */
}

.image-reveal-menu {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.image-reveal-menu-item {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.image-reveal-menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

.image-reveal-menu-item:hover::after {
    width: 100%;
}