/* 
* Elevate Yoga Space - Адаптивные стили
* Адаптация под различные устройства
*/

/* Средние экраны (планшеты) */
@media screen and (max-width: 1024px) {
    /* Базовые стили */
    html {
        font-size: 15px;
    }
    
    /* Хедер */
    .main-header {
        padding: 0 var(--gap-small);
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .main-nav ul {
        gap: var(--gap-small);
    }
    
    /* Цитата на главном экране */
    .quote-container {
        max-width: 600px;
    }
    
    .quote-container blockquote {
        font-size: 1.8rem;
    }
    
    /* Контакты */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map {
        margin-top: var(--gap-medium);
    }
    
    /* Футер */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Малые экраны (мобильные) */
@media screen and (max-width: 768px) {
    /* Базовые стили */
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Хедер и навигация */
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--primary-color);
        overflow: hidden;
        transition: height var(--transition-medium);
        z-index: 999;
    }
    
    body.mobile-menu-open .main-nav {
        height: calc(100vh - var(--header-height));
        box-shadow: var(--shadow-medium);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: var(--gap-medium) 0;
    }
    
    .main-nav a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Главный экран */
    .quote-container {
        max-width: 90%;
        padding: var(--gap-small);
    }
    
    .quote-container blockquote {
        font-size: 1.5rem;
    }
    
    /* О нас */
    .step-line {
        font-size: 1.2rem;
    }
    
    /* Практики */
    .practice-ribbon {
        padding: var(--gap-small) 0;
    }
    
    .practice-card {
        flex: 0 0 280px;
        padding: var(--gap-small);
    }
    
    /* Расписание */
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .day-column {
        min-width: 100%;
    }
    
    /* Cookie уведомление */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: var(--gap-small);
        justify-content: center;
    }
}

/* Очень малые экраны */
@media screen and (max-width: 480px) {
    /* Базовые стили */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Главный экран */
    .quote-container blockquote {
        font-size: 1.2rem;
    }
    
    /* О нас */
    .step-line {
        font-size: 1rem;
    }
    
    /* Практики */
    .practice-card {
        flex: 0 0 250px;
    }
    
    /* Расписание */
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    /* Галерея */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    /* Футер */
    .footer-links {
        flex-direction: column;
        gap: var(--gap-medium);
    }
} 