/* Default (Desktop) */
#hamburger-nav {
    display: none;
}

@media screen and (max-width: 1400px) {

    #profile {
        height: auto;
        margin-bottom: 6rem;
    }

    /* FIX TYPO */
    .about-containers {
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media screen and (max-width: 1200px) {

    /* NAV SWITCH */
    #desktop-nav {
        display: none;
    }

    #hamburger-nav {
        display: flex;
    }

    /* PROFILE STACK */
    #profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }

    /* SECTION STACK */
    .section-container {
        flex-direction: column;
        align-items: center;
    }

    /* EXPERIENCE STACK */
    .experience-details-container {
        flex-direction: column;
        align-items: center;
    }

    /* FIX WIDTH */
    section {
        margin: 0 1rem;
        height: auto;
    }

    /* FIX IMAGE */
    .section__pic-container {
        width: 275px;
        height: 275px;
        margin: 0 auto 2rem;
    }

    /* FIX ARROW */
    .icon-arrow {
        display: none;
    }

    .about-containers {
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {

    #profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .section-container,
    .experience-details-container,
    .about-containers {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    #projects .about-containers{
        width: 100%;
    }

    section {
        margin: 0 1rem;
        padding: 2rem 0;
    }


    .details-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 90%;
        margin: auto;
    }


    .section__pic-container {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .project-img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }


    .title {
        font-size: 1.8rem;
    }

    .section__text__p1,
    .section__text__p2 {
        font-size: 1.1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info-upper-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-container {
        flex-direction: column;
        text-align: center;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .icon-arrow {
        display: none;
    }

    footer {
        height: auto;
    }
    .wave-container {
        height: 50px;
    }
    .wave{
        height: 50px;
        opacity: 0.5;
    }
}