/* Tablets and larger phones */
@media (min-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social-links-container {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
}

/* Small Laptops / Tablets */
@media (min-width: 640px) {
    .portfolio-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .section-padding {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .project-links {
        flex-direction: row;
    }
    .project-links .link-button {
        flex-grow: 0;
        width: auto;
    }
}

/* Standard Laptops */
@media (min-width: 768px) {
    #desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }

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

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

    .hero-title {
        font-size: 4rem;
        letter-spacing: -0.03em;
    }
}

/* Desktops */
@media (min-width: 1024px) {
    .section-padding {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
    .hero-title {
        font-size: 4.5rem;
    }
}
