.reveal-wrapper-410ace4e {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.reveal-overlay-410ace4e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.reveal-wrapper-410ace4e > * {
    position: relative;
    z-index: 2;
}

.reveal-top-410ace4e {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.reveal-logo-410ace4e {
    max-height: 80px;
    object-fit: contain;
}

.reveal-middle-410ace4e {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the menu horizontally */
    width: 100%;
}

.reveal-nav-410ace4e {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.reveal-menu-item-410ace4e {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    text-align: center;
}

.reveal-menu-item-410ace4e::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.reveal-menu-item-410ace4e:hover::after {
    transform: scaleX(1);
}

.reveal-bottom-410ace4e {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.reveal-socials-410ace4e {
    display: flex;
    gap: 15px;
}

.reveal-social-icon-410ace4e {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.reveal-social-icon-410ace4e svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
}

.reveal-social-icon-410ace4e:hover {
    transform: translateY(-3px);
    color: #ffcc00;
}

.reveal-short-text-410ace4e {
    color: #fff;
    font-size: 1.1rem;
    max-width: 300px;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reveal-nav-410ace4e {
        flex-direction: column;
        gap: 40px; /* Increased spacing on mobile */
    }
    .reveal-bottom-410ace4e {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .reveal-short-text-410ace4e {
        text-align: center;
    }
}