
/* Responsive styles for Michael Grosse's Portfolio */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 0;
        transform: none;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -8px;
    }
    
    .timeline-badge {
        left: -10px;
        width: 60px;
        font-size: 0.75rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 0;
        transform: none;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -8px;
    }
    
    .timeline-badge {
        left: -10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .programming-skill, .tool-skill {
        padding: 0.75rem;
    }
    
    .programming-icon, .tool-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .programming-name, .tool-name {
        font-size: 0.75rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}