/* Mobile Menu Styles for Landing Pages */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green, #0e5030);
    cursor: pointer;
}

.mobile-menu-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-nav {
        display: block;
        padding: 1rem 0;
    }
}

.mobile-menu-nav > a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-gray, #333);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-menu-nav > a:hover {
    background: var(--light-gray, #f5f5f5);
    color: var(--primary-green, #0e5030);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green, #0e5030);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 968px) {
    .nav-links { 
        display: none !important; 
    }
    .language-selector:not(.mobile-lang) { 
        display: none !important; 
    }
    .mobile-menu-btn { 
        display: block !important; 
    }
    .mobile-controls { 
        display: flex !important; 
    }
}
