/* === Hamburger Drawer Menu === */
.menu-drawer {
    position: fixed;
    top: 0;
    right: -260px; /* hidden by default */
    width: 260px;
    height: 100%;
    background-color: #0469B8;
    box-shadow: -2px 0 8px rgba(0,0,0,0.3);
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .menu-drawer.open {
        right: 0; /* slide in */
    }

    .menu-drawer a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        padding: 8px 4px;
        border-radius: 6px;
        transition: background 0.2s ease-in-out;
        text-align: left;
    }

        .menu-drawer a:hover {
            background: rgba(255,255,255,0.15);
        }

    .menu-drawer .close-btn {
        align-self: flex-end;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
    }

/* === Footer Strip === */
.footer-strip {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    background-color: #0469B8;
    color: white;
    padding: 8px 0;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

    .footer-strip a,
    .footer-strip span {
        color: white;
    }

/* === Menu Tiles === */
.menu-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: #ffffff;
    color: #0469B8;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
    height: 120px;
}

    .menu-tile img {
        height: 32px;
        width: 32px;
        margin-bottom: 8px;
    }

    .menu-tile:hover {
        background: #0469B8;
        color: black;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

/* === Footer Buttons (Menu Page) === */
.footer-icon {
    height: 18px;
    width: 18px;
    margin-right: 6px;
}
/* Always show hamburger (override Bootstrap hiding on desktop) */
.navbar .navbar-toggler {
    display: block !important;
}
