/* ============================================
   Mawe Hai & Maji Matulivu - Responsive Design
   ============================================ */

/* Tablettes */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .space-card-features {
        flex-direction: column;
    }
    
    .particle {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-md);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.375rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-feature {
        padding: 0.5rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .scroll-text {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .space-card-image {
        height: 300px;
    }
    
    .space-card-title {
        font-size: 1.5rem;
    }
    
    .space-card-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .space-card-features {
        flex-direction: column;
    }
    
    .about-values {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .particle {
        display: none;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
    }
    
    .nav-brand a {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-badge {
        padding: 0.25rem 0.75rem;
    }
    
    .badge-icon {
        font-size: 0.875rem;
    }
    
    .badge-text {
        font-size: 0.625rem;
        letter-spacing: 0.5px;
    }
    
    .hero-feature {
        padding: 0.5rem 0.75rem;
    }
    
    .hero-feature i {
        font-size: 1rem;
    }
    
    .hero-feature span {
        font-size: 0.75rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .space-card-image {
        height: 250px;
    }
    
    .space-card-badge {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .space-card-title {
        font-size: 1.25rem;
    }
    
    .space-card-description {
        font-size: 0.875rem;
    }
    
    .feature-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
    }
    
    .feature-tag i {
        font-size: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-icon {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-features {
        gap: var(--spacing-lg);
    }
    
    .hero-feature {
        padding: 1rem 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-scroll,
    .btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 400px;
    }
    
    body {
        font-size: 12pt;
    }
}
