@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
    }
    #hamburger-nav {
        display: flex; 
    }
    
    section {
        margin: 0 5rem;
    }
    
    #Profile {
        gap: 2rem;
        height: auto;
        min-height: 80vh;
    }
    
    .sections__pic_container {
        height: 300px;
        width: 300px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    section {
        margin: 0 1rem;
    }
    
    #Profile {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .sections__pic_container {
        height: 250px;
        width: 250px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .section__text__p2 {
        font-size: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    /* Projects responsive */
    .projects-container {
        flex-direction: column;
        align-items: center;
    }
    
    .project-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* About page responsive */
    #about {
        padding: 1rem 0;
    }
    
    #about h1 {
        font-size: 2rem;
    }
    
    .about-container {
        margin: 0 1rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    section {
        margin: 0 0.5rem;
    }
    
    #Profile {
        padding: 1rem 0;
    }
    
    .sections__pic_container {
        height: 200px;
        width: 200px;
        margin: 0 auto;
    }
    
    .section__text__p1 {
        font-size: 0.9rem;
    }
    
    .section__text__p2 {
        font-size: 1.2rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .btn-container {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 200px;
    }
    
    #socials-container {
        gap: 1.5rem;
    }
    
    .icon {
        height: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 1.4rem;
    }
}