
/* responsive.css */

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .project-carousel, .masonry {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    header nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .project-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    body {
        font-size: 18px;
    }

    .masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}
