/* PRODUCT GALLERY */

#project-gallary {
    width: 80vw;
    margin: auto;
    margin-top: 150px;
}

#project-gallary h2 {
    font-size: 5vw;
    font-size: clamp(36px, 5vw, 80px);
    line-height: 0.95;
}

#project-gallary h2 span {
    color: #5300a0;
}

#project-context {
    margin-bottom: 20px;
}

#project-gallary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 150px;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

#project-gallary-grid .item {
    position: relative;
    border-radius: 18px;
    height: 30vw;
    overflow: hidden;
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px; */
    box-shadow: rgba(0, 0, 0, 0.75) 0px -15vw 108px -83px inset, rgba(79, 93, 224, 0.32) 0px 10px 30px;

}

#project-gallary-grid .item img {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.project-context {
    position: absolute;
    bottom: 0;
    z-index: 100;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    /* color: black; */
}

.project-context span {
    font: var(--subtext);
    /* color: rgba(79, 93, 224, 0.32); */
    font-weight: 600;
}

.project-context h3 {
    /* color: #5300a0; */
    font: var(--h3);
}

/* .project-context a {
    color: white;
    padding: 10px 25px;
    width: fit-content;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
} */

.project-context a {
    display: flex;
    color: white;
    padding: 1.5% 2.5%;
    width: clamp(120px, 35%, 200px);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
}
.project-context a span{
    margin: auto;
    width: fit-content;
}

@media (max-width: 1024px) {
    #project-gallary-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    #project-gallary-grid .item {
        height: 60vw;
    }
}