/* === GENERAL === */


/* === NAVBAR === */
.navbar {
    background: #fff;
}


.navbar-brand img {
    transition: filter 0.3s ease;
}

/* === SCROLL TO TOP BUTTON === */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: none;
    background: transparent;
    color: black;
    border: none;
    font-weight: bold;
    font-size: 25px;
    padding: 0 10px;
}

/* === MENU CARDS === */
.menu-card {
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.menu-card h5 {
    text-transform: uppercase;
}

.menu-card:hover {
    transform: scale(1.01);
}

.menu-desc {
    font-size: 14px;
    margin-bottom: 6px;
}

.menu-img {
    max-width: 100px;
    border-radius: 8px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.menu-img:hover {
    transform: scale(1.05);
}

/* === CATEGORY SELECT === */
#categorySelect {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Light theme select */

/* Dark theme select */

/* Option styling (may not apply in all browsers) */


/* === RESPONSIVE SELECT / TABS === */
@media (max-width: 767px) {
    #menuTabs {
        display: none;
    }

    #categorySelect {
        /*display: block;*/
    }
}

@media (min-width: 768px) {
    #categorySelect {
        /*display: none;*/
    }
}

/* === LOADING STATES === */
#menuLoader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 300px;
    background-color: inherit;
    z-index: 10;
    transition: opacity 0.3s ease;
}

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

#menuContainer.invisible {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#menuContainer.visible {
    visibility: visible;
    opacity: 1;
}