/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .nav-terminal-btn {
        margin-right: 10px;
    }

    .hero-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-title-wrapper {
        font-size: 0.95rem;
    }

    .section {
        padding: 80px 15px;
        min-height: auto;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .terminal-console {
        height: 280px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-name {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hacker {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .terminal-content {
        padding: 15px;
        font-size: 0.8rem;
    }

    .skill-info {
        font-size: 0.8rem;
    }

    .project-image {
        height: 160px;
    }

    .terminal-console {
        height: 250px;
    }

    .boot-container {
        width: 95%;
    }

    .boot-lines {
        font-size: 12px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1200px;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
