/* ============ CRITICAL FIXES ============ */

/* Footer - Remove animation, make always visible */
.site_footer {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* Burger menu - ensure it's visible and clickable */
.burger {
    display: block !important;
    position: relative;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.burger .content {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.burger span {
    display: block !important;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

/* Mobile menu positioning */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    z-index: 1000;
    padding: 120px 24px 24px;
}
