/* ============================================
   MENU BAR - Larger, classic style
============================================ */

.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: var(--pure-white);
    border-bottom: 2px solid var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10000;
    font-size: 14px;
    font-family: 'Silkscreen', 'Chicago', monospace;
    font-weight: 700;
    /* Page load animation - slide down from top */
    animation: menuBarSlideDown 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes menuBarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-bar__left {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

.menu-bar__apple {
    padding: 0 12px 0 4px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Rainbow Apple Logo - 6 color stripes */
.apple-logo {
    width: 11px;
    height: 13px;
    background: linear-gradient(180deg,
        #61BB46 0%, #61BB46 16.66%,
        #FDB827 16.66%, #FDB827 33.33%,
        #F5821F 33.33%, #F5821F 50%,
        #E03A3E 50%, #E03A3E 66.66%,
        #963D97 66.66%, #963D97 83.33%,
        #009DDC 83.33%, #009DDC 100%
    );
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 17'%3E%3Cpath d='M13.5 12.3c-.3.7-.7 1.3-1.1 1.8-.6.8-1.2 1.2-1.7 1.4-.7.3-1.4.3-2.1 0-.4-.2-.9-.3-1.4-.3s-1 .1-1.4.3c-.7.3-1.3.3-2 0-.5-.2-1.1-.7-1.7-1.5C1.4 13 .9 12 .5 10.9.2 9.7 0 8.5 0 7.4c0-1.3.3-2.4.9-3.3.5-.7 1.1-1.3 1.8-1.7.7-.4 1.5-.6 2.4-.6.5 0 1.1.1 1.7.3.6.2 1 .3 1.2.3.2 0 .6-.1 1.3-.4.6-.2 1.2-.3 1.7-.3 1.3.1 2.3.5 3 1.4-1.2.7-1.7 1.7-1.7 3 0 1 .4 1.9 1.1 2.5.3.3.7.6 1.1.8-.1.3-.2.5-.3.8zM10.3 0c0 .8-.3 1.6-.8 2.3-.6.8-1.4 1.3-2.3 1.2 0-.1 0-.2 0-.3 0-.8.3-1.6.9-2.2.3-.3.6-.6 1.1-.8.4-.2.8-.3 1.2-.3 0 .1 0 .1-.1.1z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 17'%3E%3Cpath d='M13.5 12.3c-.3.7-.7 1.3-1.1 1.8-.6.8-1.2 1.2-1.7 1.4-.7.3-1.4.3-2.1 0-.4-.2-.9-.3-1.4-.3s-1 .1-1.4.3c-.7.3-1.3.3-2 0-.5-.2-1.1-.7-1.7-1.5C1.4 13 .9 12 .5 10.9.2 9.7 0 8.5 0 7.4c0-1.3.3-2.4.9-3.3.5-.7 1.1-1.3 1.8-1.7.7-.4 1.5-.6 2.4-.6.5 0 1.1.1 1.7.3.6.2 1 .3 1.2.3.2 0 .6-.1 1.3-.4.6-.2 1.2-.3 1.7-.3 1.3.1 2.3.5 3 1.4-1.2.7-1.7 1.7-1.7 3 0 1 .4 1.9 1.1 2.5.3.3.7.6 1.1.8-.1.3-.2.5-.3.8zM10.3 0c0 .8-.3 1.6-.8 2.3-.6.8-1.4 1.3-2.3 1.2 0-.1 0-.2 0-.3 0-.8.3-1.6.9-2.2.3-.3.6-.6 1.1-.8.4-.2.8-.3 1.2-.3 0 .1 0 .1-.1.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-bar__item {
    padding: 2px 10px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: default;
    position: relative;
    /* Smooth hover transition */
    transition: background-color 0.1s ease-out, color 0.1s ease-out;
}

/* INVERTED SELECTION STATE */
.menu-bar__item:hover,
.menu-bar__item.is-open {
    background: var(--pure-black);
    color: var(--pure-white);
}

/* ============================================
   DROPDOWN MENUS
============================================ */

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    background: var(--pure-white);
    border: 1px solid var(--pure-black);
    box-shadow: 2px 2px 0 0 var(--pure-black);
    padding: 4px 0;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-bar__item.is-open .menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-dropdown__item {
    display: block;
    width: 100%;
    padding: 6px 16px;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Silkscreen', 'Chicago', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--pure-black);
    cursor: default;
}

.menu-dropdown__item:hover {
    background: var(--pure-black);
    color: var(--pure-white);
}

.menu-bar__right {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Silkscreen', 'Chicago', monospace;
}
