/*
* Domain Accounting Services Website
* Responsive Stylesheet
*/

/* Base styles are in style.css (mobile-first) */

/* Small Tablet (576px and up) */
@media screen and (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
    .container {
        width: 85%;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        max-width: 600px;
    }
    
    .about-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .testimonial-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .blog-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
    .container {
        width: 80%;
        max-width: 1200px;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .hero-text {
        width: 50%;
    }
    
    .hero-image {
        width: 45%;
    }
    
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop (1280px and up) */
@media screen and (min-width: 1280px) {
    h1 {
        font-size: 4rem;
    }
    
    .container {
        padding: 0;
    }
}

/* Mobile Styles (767px and down) */
@media screen and (max-width: 767px) {
    .site-header {
        padding: var(--spacing-xs) 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-container {
        justify-content: center;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    /* Мобильное меню удалено */
}
