/* responsive.css - Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 900px) {
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 3rem auto 0;
        width: 300px;
        height: 300px;
    }
    
    .hero {
        text-align: center;
        padding-top: 150px;
        flex-direction: column;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--dark-light);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
    
    .project-image {
        height: 200px;
    }
}