/* Responsive CSS for Luxury Vacation Club Template */

/* Extra Large Devices (Desktop) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-shape {
        width: 300px;
        height: 300px;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .about-shape, 
    .services-shape {
        display: none;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .review-card {
        margin: 0.5rem;
    }
    
    .team-member {
        margin-bottom: 3rem;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .about-shape, 
    .services-shape, 
    .hero-section::before, 
    .hero-section::after,
    .features-section::before,
    .reviews-section::before,
    footer::before {
        display: none;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .service-card,
    .about-feature,
    .features-card,
    .price-card,
    .core-info-card,
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .review-card {
        margin: 0.5rem 0;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .space-container {
        min-height: calc(100vh - 150px);
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .about-shape, 
    .services-shape, 
    .hero-section::before, 
    .hero-section::after,
    .features-section::before,
    .reviews-section::before,
    footer::before {
        display: none;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .service-card,
    .about-feature,
    .features-card,
    .price-card,
    .core-info-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .review-card {
        margin: 0.5rem 0;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
    }
    
    .space-container {
        min-height: calc(100vh - 120px);
    }
    
    .accordion-button {
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* 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;
    }
    
    .service-card:hover,
    .about-feature:hover,
    .features-card:hover,
    .price-card:hover,
    .core-info-card:hover,
    .blog-card:hover,
    .team-image:hover img,
    .blog-card:hover .blog-image img,
    .gallery-item:hover img {
        transform: none !important;
    }
    
    .swiper-container {
        --swiper-pagination-bullet-inactive-opacity: 1;
    }
} 