/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-content {
        max-width: 600px;
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    section {
        padding: 80px 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0 1rem;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    /* Hero Section */
    .glitch {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    /* Skills & Projects */
    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* About Section */
    .tech-stack {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-badge {
        margin: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    /* General */
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero */
    .glitch {
        font-size: 2rem;
    }
    
    /* Project Cards */
    .project-card {
        margin: 0 1rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Custom Cursor */
    .cursor,
    .cursor-dot {
        display: none;
    }

    /* Form Elements */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }
}
