@charset "utf-8";
/* CSS Document */
/* 
 * responsive.css - Стили для адаптивности сайта Pudu BellaBot
 * Путь: /assets/template/css/responsive.css
 */

/* Большие экраны до 1200px */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* Средние экраны до 992px */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image {
        height: 70%;
        right: 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 25px;
    }
}

/* Малые экраны до 768px */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .navbar {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .hero {
        height: auto;
        padding: 80px 0;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        height: 400px;
        right: auto;
        margin-top: 50px;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

/* Очень малые экраны до 576px */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-input, .cta-btn {
        width: 100%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    #contact h2 {
        font-size: 22px;
    }
}