/* Responsive Design for Kids Science Workshop */

/* Tablet Styles */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    #hero-title-1 {
        font-size: 2.2rem;
    }
    
    #hero-subtitle-1 {
        font-size: 1.3rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .price-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    #hero-title-1 {
        font-size: 1.8rem;
    }
    
    #hero-subtitle-1 {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .feature-card, .service-card, .price-card {
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Disable Swiper autoplay on mobile */
    .swiper {
        --swiper-navigation-size: 20px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #hero-title-1 {
        font-size: 1.6rem;
    }
    
    #hero-subtitle-1 {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .feature-card, .service-card, .price-card {
        padding: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before {
        animation: none;
    }
    
    .swiper {
        --swiper-navigation-size: 0;
    }
    
    .swiper-pagination {
        display: none;
    }
} 