#site-footer .logo {
    width: 200px;
}

#site-footer .menu-item {
    font-weight: 700;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    gap: calc(0.5 * var(--one-spacer));
}

.sub-menu .menu-item {
    font-weight: 400 !important;
    font-size: 1rem;
}

#easter-egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    pointer-events: none;
    transition: all 1s ease;
}
@media screen and (max-width: 991px) {
    #easter-egg {
        font-size: 1rem;
    }
}

#easter-egg-text {
    background: -webkit-linear-gradient(#F8F7EB 25%, #525242 75%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 100vw 400vh;
    background-position: 0 -300vh;
    transition: all 10s ease;
    transition-delay: 1s;
}
@media screen and (max-width: 991px) {
    #easter-egg-text * {
        font-size: var(--wp--preset--font-size--small) !important;
    }
}

#easter-egg-text.active {
    background-position: 0px 0px;
}

/* #easter-egg.active {
    display: flex;
    opacity: 1;
    background: var(--wp--preset--color--soil);
    pointer-events: all;
}

#easter-egg-cred a {
    text-decoration: underline !important;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
} */

#easter-egg-cred a {
    border-bottom: 1px solid transparent;
    transition: all 3s ease;
    transition-delay: 5s;
}

#easter-egg-text.active #easter-egg-cred a {
    border-bottom-color: var(--wp--preset--color--cloud);
}

#floating-palm {
    position: fixed;
    bottom: var(--four-spacer);
    transition: all 0.2s ease;
}

#floating-palm.hidden {
    opacity: 0;
    pointer-events: none;
}

#floating-palm svg {
    width: 30px;
    height: auto;
}