/* Медиа-запросы для адаптивности */

/* Планшеты */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .about-content, .special-content {
        flex-direction: column;
    }
    
    .about-image, .special-image {
        width: 100%;
        margin-bottom: var(--space-md);
    }
    
    .gallery-slide img {
        height: 400px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Малые планшеты */
@media (max-width: 900px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .menu-items {
        min-height: 1200px;
    }
    
    .gallery-slide img {
        height: 350px;
    }
    
    .footer-content {
        gap: var(--space-lg);
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    /* Стили для навигации */
    .menu-toggle {
        display: flex;
        z-index: 15;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-md);
        transition: var(--transition);
        z-index: 10;
    }

    .menu.active {
        right: 0;
    }

    /* Активное состояние меню-гамбургера */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Стили для других элементов */
    .hero-content {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .about-text h3, .special-text h3 {
        font-size: 1.8rem;
    }

    .menu-category {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .gallery-slide img {
        height: 300px;
    }

    .review-card {
        padding: var(--space-sm);
    }

    .review-text {
        font-size: 1rem;
    }

    /* Стили для футера */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-nav, .footer-contact, .footer-hours {
        margin-bottom: var(--space-md);
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }

    .menu-category {
        width: 80%;
        text-align: center;
    }

    .gallery-slide img {
        height: 250px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }
}