/* SMAJ PI JOBS - Responsive Styles */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-stats {
        gap: var(--space-2xl);
    }
    
    .dashboard-grid {
        grid-template-columns: 240px 1fr;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 var(--space-md);
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .logo {
        font-size: var(--font-size-lg);
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .search-box .btn {
        width: 100%;
    }
    
    .section-header {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .filters-bar {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .modal {
        padding: var(--space-lg);
    }
    
    .wallet-option {
        padding: var(--space-sm);
    }
    
    .wallet-option-icon {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --space-lg: 16px;
        --space-xl: 24px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo span {
        font-size: var(--font-size-base);
    }
    
    .wallet-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .wallet-btn span:first-child {
        display: none;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-badge {
        font-size: var(--font-size-xs);
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-lg);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: var(--space-md);
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
    
    .dashboard-content {
        padding: var(--space-md);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-menu a {
        padding: var(--space-sm);
    }
    
    .page-header {
        padding: 100px 0 var(--space-lg);
    }
    
    .page-title {
        font-size: var(--font-size-xl);
    }
    
    .job-card {
        padding: var(--space-md);
    }
    
    .job-card-footer {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .modal {
        max-height: 90vh;
        overflow-y: auto;
    }
}

