/* =====================================================
   YAAMI MUSIC - Responsive Styles
   ===================================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container { max-width: 1400px; }
}

/* Desktop */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-note {
        font-size: clamp(1.3rem, 3vw, 2rem);
        padding: 0.8rem 2rem;
    }
}

/* Large Mobile */
@media (max-width: 767px) {
    .container { padding: 0 1.2rem; }

    .section { padding: 4rem 0; }

    .site-header { padding: 0.8rem 1.2rem; }

    .header-logo img { height: 80px; }

    .site-header.scrolled .header-logo img { height: 55px; }

    .melody-trigger {
        width: 48px;
        height: 48px;
    }

    .trigger-bars { height: 18px; }
    .trigger-bars span { width: 2.5px; }
    .trigger-bars span:nth-child(1) { height: 6px; }
    .trigger-bars span:nth-child(2) { height: 12px; }
    .trigger-bars span:nth-child(3) { height: 18px; }
    .trigger-bars span:nth-child(4) { height: 10px; }
    .trigger-bars span:nth-child(5) { height: 14px; }

    .menu-note {
        font-size: 1.3rem;
        padding: 0.7rem 1.5rem;
        gap: 1rem;
    }

    .menu-item .sub-menu { padding-left: 2rem; }

    .sub-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 1.5rem;
    }

    .hero { min-height: 100svh; padding-top: 100px; }

    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card { min-width: 280px; }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number { font-size: 2rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-hero { padding: 8rem 0 3rem; }

    .section-header { margin-bottom: 2.5rem; }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    html { font-size: 15px; }

    .container { padding: 0 1rem; }

    .header-logo img { height: 70px; }

    .site-header.scrolled .header-logo img { height: 50px; }

    .melody-trigger {
        width: 44px;
        height: 44px;
    }

    .menu-note {
        font-size: 1.1rem;
        letter-spacing: 1px;
        padding: 0.6rem 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.4rem 1rem;
    }

    .service-card { padding: 2rem 1.5rem; }

    .testimonial-card {
        min-width: 260px;
        padding: 1.5rem;
    }

    .cta-section { padding: 3rem 0; }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Touch devices */
@media (hover: none) {
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
    .video-card:hover {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }

    html { scroll-behavior: auto; }
}

/* Print */
@media print {
    .site-header, .menu-overlay, .whatsapp-float,
    .hero-canvas, .melody-trigger, .footer-social { display: none !important; }

    body { background: #fff; color: #000; }
    .section { padding: 2rem 0; }
    a { color: #000; text-decoration: underline; }
}
