/* Custom fixes for Moviqo website */

/* Fix 1: Mobile Footer Alignment - Make address section align with Quick links and Newsletter */
@media (max-width: 991px) {
    .footer.style-2 .footer__main {
        flex-direction: column;
    }
    
    .footer.style-2 .footer__main .info-left {
        margin-bottom: 40px;
        width: 100%;
    }
    
    .footer.style-2 .footer__main .right .top {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer.style-2 .footer__main .right .top .widget {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

/* Fix 2: Navbar spacing on login/signup pages */
.header .header__right .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .header__right .menu .menu-item {
    margin: 0;
}

/* Fix 3: Ensure mobile menu closes properly */
@media (max-width: 1024px) {
    #main-nav-mobi {
        display: none;
    }
    
    #main-nav-mobi.active {
        display: block;
    }
}
