/* Responsive Styles */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .profile-image {
        width: 100px;
    }
    
    .username {
        font-size: 1.5rem;
    }
    
    .tag-line {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        top: 10px;
        right: 10px;
    }
    
    .nav-item {
        font-size: 0.8rem;
        padding: 3px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
        width: 90%;
    }
    
    .music-player {
        width: 250px;
        padding: 8px 12px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
    .profile-image {
        width: 120px;
    }
    
    .projects-container {
        width: 90%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 769px) and (max-width: 992px) {
    .projects-container {
        width: 85%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 993px) {
    .projects-container {
        width: 80%;
    }
}