/* Responsive Design - Mobile and Desktop Breakpoints */

/* Desktop Navigation - Hide mobile nav on larger screens */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
    
    .top-nav {
        display: flex;
    }
}

/* Mobile and Tablet Breakpoints */
@media (max-width: 920px) {
    /* Mobile viewport fixes */
    html, body {
        overflow-x: hidden;
    }
    
    /* Hero section mobile fixes */
    .hero {
        min-height: calc(100vh - 120px); /* Account for bottom nav */
        padding-bottom: 120px; /* Ensure content clears bottom nav */
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin: 1rem;
        max-width: 100%;
    }
    
    /* Hero title mobile sizing */
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 4rem 0;
    }
    
    /* Room scenario mobile fixes */
    .room-examples {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .room-scenario {
        margin-bottom: 2rem;
        padding: 1.5rem;
        transform: none !important; /* Remove rotation on mobile */
    }
    
    .room-scenario:hover {
        transform: translateY(-3px) !important; /* Simple hover effect */
    }
    
    /* Bottom navigation mobile adjustments */
    .bottom-nav {
        display: flex;
        padding: 0.8rem 1rem 1.2rem 1rem;
        backdrop-filter: blur(20px);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-item {
        min-width: 50px;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-icon {
        font-size: 1.3rem;
    }
    
    .nav-label {
        font-size: 0.65rem;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Enhanced path card mobile styling */
    .path-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        /* Remove complex clip-path on mobile for cleaner look */
        clip-path: none;
    }
    
    .path-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .path-icon {
        margin-bottom: 0.5rem !important;
    }
    
    .path-title {
        margin-bottom: 0.25rem !important;
    }
    
    .path-tagline {
        margin-bottom: 0 !important;
    }
    
    .path-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        padding: 0.75rem 0.75rem 0.75rem 1rem;
        font-size: 1rem;
        line-height: 1.5;
        background: rgba(0, 255, 136, 0.05);
        border-radius: 6px;
        border-left: 3px solid rgba(0, 255, 136, 0.4);
    }
    
    .path-perfect-for {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .path-perfect-for h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .path-perfect-for p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Path section mobile spacing */
    .path-section {
        padding: 4rem 0;
    }
    
    .context-gap {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gap-divider {
        transform: rotate(90deg);
    }
    
    .bottom-nav {
        display: flex;
    }
    
    .rosey-features {
        grid-template-columns: 1fr;
    }

    .rosey-feature {
        transform: none !important;
    }

    .rosey-feature:hover {
        transform: translateY(-3px) !important;
    }

    .trust-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-divider {
        transform: rotate(90deg);
    }

    .levels-simple {
        flex-direction: column;
    }

    .level-arrow {
        transform: rotate(90deg);
    }
    
    /* Mobile-specific navigation adjustments */
    .nav-links {
        gap: 0.5rem;
    }
    
    .technical-link,
    .rebellion-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Hero section mobile fixes */
    .hero {
        min-height: calc(100vh - 120px); /* Account for bottom nav */
        padding-bottom: 120px; /* Ensure content clears bottom nav */
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin: 1rem;
        max-width: 100%;
    }
    
    /* Section padding adjustments */
    section {
        padding: 4rem 0;
    }
    
    /* Room scenario mobile fixes */
    .room-examples {
        padding: 0 1rem;
    }
    
    .room-scenario {
        margin-bottom: 2rem;
        transform: none !important; /* Remove rotation on mobile */
    }
    
    .room-scenario:hover {
        transform: translateY(-3px) !important; /* Simple hover effect */
    }
    
    /* Room scenario mobile adjustments */
    .room-examples {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .top-nav {
        padding: 0.8rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
