/* Hamburger Menu Button - Consistent Style for All Pages */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    width: 44px;
    height: 40px;
    flex-direction: column;
    gap: 4px;
    z-index: 1101;
}

.mobile-menu-btn:hover {
    background: var(--accent-secondary);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-btn.active span:nth-child(1) { 
    transform: rotate(45deg) translate(4px, 4px); 
}

.mobile-menu-btn.active span:nth-child(2) { 
    opacity: 0; 
}

.mobile-menu-btn.active span:nth-child(3) { 
    transform: rotate(-45deg) translate(4px, -4px); 
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }
}
