/**
 * Desktop Styles - Ensure desktop layout is preserved
 * Only applies to screens wider than 768px
 */

/* ============================================
   DESKTOP STYLES (min-width: 769px)
   ============================================ */
@media (min-width: 769px) {
    
    /* ========== MOBILE MENU - HIDDEN ON DESKTOP ========== */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    /* ========== DESKTOP NAVIGATION - PREMIUM ========== */
    .main-navigation {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%) !important;
        padding: 0 !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.12), 
                    inset 0 1px 0 rgba(255,255,255,0.1),
                    0 4px 6px -1px rgba(0,0,0,0.1) !important;
        overflow: visible !important;
        right: auto !important;
        transition: none !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        border-bottom: 2px solid rgba(0,0,0,0.08) !important;
    }
    
    /* Remove mobile menu header */
    .main-navigation::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 2px !important;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255,255,255,0.4) 30%, 
            rgba(255,255,255,0.6) 50%, 
            rgba(255,255,255,0.4) 70%, 
            transparent 100%) !important;
        animation: menuShimmer 4s ease-in-out infinite !important;
        z-index: 1 !important;
    }
    
    .main-navigation .container {
        padding: 0 15px !important;
    }
    
    .nav-menu {
        flex-direction: row !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        list-style: none !important;
        justify-content: center !important;
        align-items: stretch !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .nav-menu li {
        width: auto !important;
        border: none !important;
        margin: 0 !important;
        position: relative !important;
        flex: 0 1 auto !important;
    }
    
    /* Desktop divider */
    .nav-menu li:not(:first-child)::before {
        content: '' !important;
        position: absolute !important;
        top: 25% !important;
        left: 0 !important;
        width: 1px !important;
        height: 50% !important;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(255,255,255,0.15) 50%, 
            transparent 100%) !important;
        z-index: 1 !important;
        opacity: 0.6 !important;
    }
    
    .nav-menu li:first-child::before {
        display: none !important;
    }
    
    .nav-menu a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 14px 22px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,0.9) !important;
        text-decoration: none !important;
        border-radius: 0 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        width: auto !important;
        min-height: 50px !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        position: relative !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.15) !important;
        z-index: 2 !important;
    }
    
    .nav-menu a .menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
        transition: transform 0.3s ease !important;
    }
    
    .nav-menu a .menu-icon svg {
        width: 100% !important;
        height: 100% !important;
        fill: currentColor !important;
        opacity: 0.9 !important;
    }
    
    .nav-menu a .live-play-icon {
        width: 14px !important;
        height: 14px !important;
        fill: currentColor !important;
        opacity: 0.95 !important;
        flex-shrink: 0 !important;
        margin-right: 6px !important;
    }
    
    .nav-menu a .live-icon-wrapper {
        width: auto !important;
        height: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        margin-left: 4px !important;
        margin-right: 8px !important;
    }
    
    .nav-menu a .live-icon-wrapper .live-icon {
        width: 8px !important;
        height: 8px !important;
        background: #ff4444 !important;
        border-radius: 50% !important;
        animation: livePulse 0.8s ease-in-out infinite !important;
        box-shadow: 0 0 6px rgba(255, 68, 68, 0.7) !important;
        flex-shrink: 0 !important;
        display: inline-block !important;
    }
    
    /* Desktop Hover Effect - Modern */
    .nav-menu a::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: transparent !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        z-index: -1 !important;
    }
    
    .nav-menu a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 3px !important;
        background: rgba(255,255,255,0.9) !important;
        transition: width 0.3s ease !important;
        z-index: 1 !important;
    }
    
    .nav-menu a:hover::before {
        opacity: 0 !important;
    }
    
    .nav-menu a:hover::after {
        width: 80% !important;
    }
    
    .nav-menu a:hover {
        color: #ffffff !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.2) !important;
    }
    
    .nav-menu a:hover .menu-icon {
        transform: scale(1.1) !important;
    }
    
    .nav-menu a:hover .menu-icon svg {
        opacity: 1 !important;
    }
    
    .nav-menu .current-menu-item > a {
        color: #ffffff !important;
        font-weight: 700 !important;
        background: transparent !important;
    }
    
    .nav-menu .current-menu-item > a::before {
        opacity: 0 !important;
    }
    
    .nav-menu .current-menu-item > a::after {
        width: 80% !important;
        background: rgba(255,255,255,1) !important;
        box-shadow: 0 0 8px rgba(255,255,255,0.5) !important;
    }
    
    .nav-menu .current-menu-item::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255,255,255,0.9) 50%, 
            transparent 100%) !important;
        box-shadow: 0 -2px 10px rgba(255,255,255,0.4) !important;
        animation: activePulse 2.5s ease-in-out infinite !important;
        z-index: 3 !important;
    }
    
    /* ========== HEADER ========== */
    .site-header {
        position: relative !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    }
    
    .header-top {
        padding: 12px 0 !important;
        padding-right: 0 !important;
    }
    
    .header-top-right {
        display: flex !important;
    }
    
    .site-logo .logo-image {
        height: 75px !important;
        max-width: 350px !important;
    }
    
    .header-banner {
        display: block !important;
        padding: 10px 0 !important;
    }
    
    /* ========== CONTENT LAYOUT ========== */
    .site-content {
        padding: 20px 0 !important;
    }
    
    .content-wrapper {
        flex-direction: row !important;
        gap: 20px !important;
    }
    
    .main-content-area {
        flex: 1 !important;
        order: 1 !important;
        width: auto !important;
        padding: 20px !important;
    }
    
    .sidebar {
        width: 300px !important;
        order: 2 !important;
        display: block !important;
        padding: 20px !important;
    }
    
    .sidebar.collapsed {
        display: block !important; /* Always show on desktop */
    }
    
    /* ========== SIDEBAR TOGGLE - HIDDEN ON DESKTOP ========== */
    .sidebar-toggle-mobile {
        display: none !important;
    }
    
    /* ========== CONTAINER ========== */
    .container {
        max-width: 1200px !important;
        padding: 0 15px !important;
    }
    
    /* ========== FOOTER ========== */
    .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px !important;
        padding: 40px 0 !important;
    }
    
    .footer-menu {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .footer-bottom-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        text-align: left !important;
    }
    
    .footer-legal {
        flex-direction: row !important;
        gap: 10px !important;
    }
    
    .footer-legal .separator {
        display: inline !important;
    }
    
    .newsletter-form {
        flex-direction: row !important;
        gap: 10px !important;
    }
    
    .newsletter-form input {
        flex: 1 !important;
        width: auto !important;
    }
    
    .newsletter-form button {
        width: auto !important;
    }
    
    /* ========== UTILITY CLASSES ========== */
    .desktop-only {
        display: block !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    /* ========== BODY ========== */
    body {
        font-size: 14px !important;
        line-height: 1.6 !important;
        overflow-x: visible !important;
        max-width: none !important;
    }
    
    body.menu-open {
        overflow: visible !important;
        position: static !important;
        width: auto !important;
    }
}

/* ============================================
   LARGE DESKTOP (min-width: 1025px)
   ============================================ */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px !important;
    }
    
    .sidebar {
        width: 300px !important;
    }
}


