/* 
 * NexusFlow SaaS Template - Responsive Stylesheet
 * Mobile-first responsive design adjustments
 */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-form .input-group {
        flex-direction: column;
        box-shadow: none;
    }
    
    .cta-form .form-control,
    .cta-form .btn {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .client-logos {
        justify-content: center;
        gap: 20px;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 25px 20px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer .row > div {
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .client-logos {
        justify-content: center;
        gap: 25px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .feature-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* All styles already defined in main stylesheet */
}

/* Special adjustments for very small screens */
@media (max-width: 350px) {
    .navbar-brand .brand-text {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .cta-form,
    .footer {
        display: none;
    }
    
    .section {
        padding: 50px 0;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
}