/* 
 * MindfulLiving - Lifestyle & Self-development Theme
 * Responsive Stylesheet
 */

/* ---------- MEDIA QUERIES ---------- */

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h3 {
        font-size: 2rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-section, 
    .services-section, 
    .features-section, 
    .priceplan-section, 
    .team-section, 
    .reviews-section, 
    .coreinfo-section, 
    .contact-section, 
    .blog-section {
        padding: 80px 0;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .about-section, 
    .services-section, 
    .features-section, 
    .priceplan-section, 
    .team-section, 
    .reviews-section, 
    .coreinfo-section, 
    .contact-section, 
    .blog-section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .price-card.featured {
        transform: scale(1.03);
    }
    
    .price-card.featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
    
    .member-img img {
        height: 300px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-section, 
    .services-section, 
    .features-section, 
    .priceplan-section, 
    .team-section, 
    .reviews-section, 
    .coreinfo-section, 
    .contact-section, 
    .blog-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .price-card.featured {
        transform: scale(1);
        border: 2px solid var(--color-primary);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .member-img img {
        height: 280px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    html {
        font-size: 14px;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .hero-slide {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .about-section, 
    .services-section, 
    .features-section, 
    .priceplan-section, 
    .team-section, 
    .reviews-section, 
    .coreinfo-section, 
    .contact-section, 
    .blog-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header h4 {
        font-size: 1.2rem;
    }
    
    .price-card.featured {
        transform: scale(1);
        border: 2px solid var(--color-primary);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .member-img img {
        height: 250px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-slide, 
    .service-box .service-img img,
    .team-member .member-img img,
    .blog-card .blog-img img,
    .about-feature-box:hover,
    .feature-box:hover,
    .price-card:hover,
    .coreinfo-box:hover,
    .page-element-box:hover {
        transform: none !important;
        transition: none !important;
    }
    
    .swiper-container {
        --swiper-autoplay-delay: 999999999s;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .swiper-container {
        --swiper-autoplay-delay: 999999999s;
    }
} 