/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 100;
    }

    /* Sections */
    .container {
        padding: 2rem 1rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        margin: 0;
    }

    /* Skills Section */
    .skills-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .skill-item {
        padding: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Canvas */
    #waveCanvas {
        opacity: 0.3;
    }

    /* Cursor */
    .cursor, .cursor-follower {
        display: none;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }

    .project-technologies {
        flex-wrap: wrap;
    }

    .tech-tag {
        margin: 0.25rem;
    }
} 