.projects-intro-section{
    background-image: url(../staticimages/workspace.jpg);
    background-position: center;
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    text-align: center;
    background-color: #333;
    width: 100%;

}
.projects-intro-section h1{
    color: white;
    font-size: 2.5em;
    font-weight: bold;
}
.projects-intro-section h2{
    font-size: 1.2em; 
    color: cyan;
}


.projects-gallery-section{
    padding: 0px;
    font-size: 1.2em;
}

.projects-gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.project-card{
    width: 100%;
    background-color: blanchedalmond;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.projects-image{
    max-width: 100%;
    border-radius: 8px 8px 0px 0px;

}
.project-card h3{
    color: tomato;
}






/* ================================
   Tablet & Desktop View (≥700px)
================================= */
@media screen and (min-width: 700px) {

   .projects-gallery{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 48px;
        column-gap: 12px;

    }
    .project-card{
        width: 90%;
        height: 100%;
        padding: 12px;
        border-radius: 12px 0px 12px 0px;
        background-color: blanchedalmond;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.452);
    }
    .projects-image{
        max-width: 100%;
        border-radius: 12px 0px 0px 0px;

    }
 
}