/* MEDIA QUERIES */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium devices (tablets, 992px and up) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    #profile {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .section__pic-container {
        width: 250px;
        height: 250px;
    }
    
    .title {
        font-size: 2.5rem;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    #desktop-nav {
        display: none;
    }
    
    #hamburger-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }
    
    .section__pic-container {
        width: 200px;
        height: 200px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    #profile {
        padding-top: 6rem;
    }
    
    .section__pic-container {
        width: 180px;
        height: 180px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .menu-links {
        width: 100%;
        max-width: 100%;
    }
}

/* Very small devices (small phones) */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .section__pic-container {
        width: 160px;
        height: 160px;
    }
    
    .title {
        font-size: 1.8rem;
    }
}