/* ========================================
   SEASONAL DECOR KITS - RESPONSIVE STYLES
======================================== */

/* Large Screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 3.65rem;
    }
}

/* Medium Screens - Tablets */
@media (max-width: 992px) {
    :root {
        --fs-h1: 2.2rem;
        --fs-h2: 1.8rem;
        --fs-h3: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .priceplan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .priceplan-card.featured {
        transform: none;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Small Screens - Mobile */
@media (max-width: 768px) {
    :root {
        --fs-h1: 2rem;
        --fs-h2: 1.6rem;
        --fs-h3: 1.2rem;
        --fs-logo: 1.3rem;
    }
    
    /* Disable autoplay and effects for Swiper on mobile */
    .swiper-slide {
        transition: none !important;
    }
    
    .services-grid,
    .features-grid,
    .team-grid,
    .priceplan-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-section .row {
        flex-direction: column;
    }
    
    .navbar-brand {
        font-size: var(--fs-logo) !important;
    }
    
    .navbar-toggler {
        border: 1px solid var(--primary-burgundy);
    }
    
    .service-card,
    .feature-item,
    .team-member,
    .priceplan-card,
    .review-card,
    .blog-card {
        margin-bottom: 1.17rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    h1 {
        line-height: 1.1;
    }
    
    p {
        margin-bottom: 1.00rem;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 1.16rem;
    }
}

/* Extra Small Screens */
@media (max-width: 576px) {
    :root {
        --fs-h1: 1.8rem;
        --fs-h2: 1.4rem;
        --fs-h3: 1.1rem;
        --fs-body: 0.9rem;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 1rem 0;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer .row > div {
        margin-bottom: 2.19rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before {
        background-image: url('../NIM_images/hero-bg@2x.webp');
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .navbar-collapse {
        background: var(--light-cream);
        margin-top: 1.16rem;
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .contact-form {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* Accessibility Improvements */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #FFFFFF;
        --primary-burgundy: #651208;
        --primary-forest: #003406;
    }
    
    .service-card,
    .feature-item,
    .team-member,
    .priceplan-card,
    .review-card,
    .blog-card {
        border: 2px solid var(--text-dark);
    }
} 