/**
 * Responsive Stylesheet for Lab IT Theme
 *
 * @package Lab_IT
 */

/* ========================================
   Mobile First - Base styles already mobile
   ======================================== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 2fr;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.15rem;
    }
    
    .hero-subtitle {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .about-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.65rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 767px) {
    .logo-img {
        height: 50px;
        max-width: 250px;
    }
    
    .site-branding {
        gap: var(--spacing-sm);
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-description {
        font-size: 0.75rem;
    }
    
    .hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .process-step {
        position: relative;
    }
    
    .step-connector {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-form-wrapper {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-img {
        height: 40px;
        max-width: 200px;
    }
    
    .site-description {
        font-size: 0.7rem;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .feature-item {
        padding: var(--spacing-md);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    .container-narrow {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .animated-window {
        min-height: 250px;
    }
    
    .content-slide h3 {
        font-size: 1.25rem;
    }
}

