/**
 * Responsive Styles for MBIZ Development Foundation
 */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .grid-3 {
        gap: 24px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }
    
    .primary-menu li {
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
        background: var(--mdf-primary, #1c7651);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.2rem;
    }
    
    .primary-menu {
        display: none;
    }
    
    .primary-menu.active {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        margin-top: 20px;
    }
    
    /* Grid Layouts */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Priority Box */
    .priority-box {
        padding: 32px 20px;
        margin: 40px 0;
    }
    
    .priority-box h3 {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-widget-area {
        text-align: center;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 32px 20px !important;
    }
    
    .cta-section h3 {
        font-size: 1.5rem !important;
    }
    
    .flex-between {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .btn-primary, 
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    
    .cta-section .btn-outline {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .card {
        padding: 20px 16px;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Small Devices */
@media (max-width: 360px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .priority-box p {
        font-size: 0.9rem !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .btn-primary,
    .btn-outline,
    .priority-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
}