/* Responsive Design */

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .text-content {
        text-align: center;
    }

    .action-links {
        justify-content: center;
    }

    .main-heading {
        font-size: 4rem;
    }

    .pink-circle {
        width: 350px;
        height: 350px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-card:first-child,
    .article-card:nth-child(2),
    .article-card:nth-child(3) {
        transform: translateY(0) !important;
        order: unset !important;
    }

    .article-card:first-child:hover,
    .article-card:nth-child(2):hover,
    .article-card:nth-child(3):hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }

    .pink-circle {
        width: 300px;
        height: 300px;
    }

    .ninja-cat {
        width: 200px;
        height: 240px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 2rem 0 !important;
    }

    .articles-section {
        padding: 2rem 1rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    .scroll-down {
        display: none !important;
    }

    #cursor-paw {
        display: none !important;
    }

    .mobile-tap-hint {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .pink-circle {
        width: 250px;
        height: 250px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 0 !important;
    }

    .articles-section {
        padding: 2rem 1rem !important;
    }

    .container {
        padding: 0 1rem;
    }
}
