/* ==========================================================================
   PrintingShop Theme - Responsive CSS
   ========================================================================== */

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* Header */
    .header-content {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .site-branding {
        order: 1;
    }
    
    .header-cta {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .main-navigation {
        order: 4;
        width: 100%;
        margin-top: 15px;
    }
    
    .menu-wrapper {
        display: none;
        width: 100%;
    }
    
    .nav-menu.active + .menu-wrapper,
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: var(--border-radius);
        padding: 10px 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 20px;
    }
    
    /* Hero */
    .hero-slider {
        padding: 60px 0;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    /* Grid */
    .col-4, .col-3, .col-6, .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .col-4:last-child,
    .col-3:last-child,
    .col-6:last-child {
        margin-bottom: 0;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    /* Footer */
    .footer-widgets .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Tablet Portrait (768px and down) */
@media (max-width: 768px) {
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Hero */
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* CTA */
    .text-right {
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Contact Info */
    .contact-info-row {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Footer */
    .footer-widgets .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile (576px and down) */
@media (max-width: 576px) {
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Header */
    .site-branding img {
        max-height: 50px;
    }
    
    .header-cta .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero */
    .hero-slider {
        padding: 40px 0;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    /* Cards */
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    /* Features */
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    /* Process */
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-number {
        font-size: 2rem;
    }
    
    /* Stats */
    .stat-box {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Mission */
    .mission-box {
        padding: 30px 20px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Contact */
    .contact-info-box {
        margin-bottom: 20px;
    }
    
    .contact-box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Post */
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .nav-previous,
    .nav-next {
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* Author Bio */
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    /* Share Buttons */
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
    }
    
    /* 404 */
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
    
    /* Helpful Links */
    .helpful-link-box {
        margin-bottom: 20px;
    }
    
    /* FAQ */
    .faq-question h4 {
        font-size: 1rem;
    }
}

/* Extra Small (400px and down) */
@media (max-width: 400px) {
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}
