#menu>a:nth-child(1) {
    color: #7A820A;
}

.mainContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgb(255 239 214);

}

.hero {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero>#fruit {
    margin: 40px 0;
}

#fruit {
    display: block;
    max-width: 50%;
    min-width: 500px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #58595b;
}


h2 {
    padding: 0;
}

h4 {
    font: 500 15px/1.33 "figtree", sans-serif;
    color: #58595b;
    margin: 10px;
    padding: 0;
}

.selectedWorks {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.project-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    row-gap: 3vh;
}

.project-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-content: flex-start;
    margin: 0;
    padding: 0;
    width: 48.5%;
    position: relative;
}

.project-container:hover h2{
    color:#7A820A;
}



.img-container, .image-container-orange {
    position: relative;
}


.img-container img, .img-container-orange img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 15px;
}

.img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFA600;
    border-radius: 15px;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* #orange::after  {
    background-color: #FFA600, 0.2;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.project-container:hover .img-container::after {
    opacity: 0.5;
    /* Show the yellow overlay when hovering */
}



.img-container:hover::after {
    opacity: 0.8;
    /* Show the border when hovering */
}

.project-container:hover #orange::after {
    opacity: 0.3;
    /* Show the yellow overlay when hovering */
}



h2 {
    margin-top: 15px;
    /* Add space between the image and text */
}

.last-row {
    display: flex;
    justify-content:center;
}

#art-fruit {
    margin: 17px 0;
    width:318px;
}

.project-container:hover {
    cursor: url("../assets/cursor.hover.png"), pointer; 
    color: #7A820A;
}


.last-line {
    display:flex;
    flex-direction:column;
    align-items:center;
}


/* 
=Large Screen ≥ 992px
*/
@media (min-width:992px) {}

/* =Medium Screen ≥ 768px*/

@media (max-width:991.99px) {
    main {
        padding: 100px 30px 0;
    }
}

/* =Small Screen ≥ 768px*/


@media (max-width: 767.99px) {
    main {
        padding: 10px 30px 0;
    }

    .project-gallery {
        flex-direction: column;
        align-items: center;
    }

    .project-container {
        width: 100%;
    }

    .page-title {
        font-size: 30px;
        margin: 10px auto 0;
    }
}


/*==X-Small Screen < 576px*/
@media (max-width:575.98px) {
    .hero {
        margin: 0 0 70px;
    }

    #fruit {
        object-fit: cover;
        width: 10vw;
        height: 60vw;
        min-width: 60vw;
    }

    .page-title-link {
        margin-top: 10px;
        color: rgb(234, 103, 36);
        text-decoration: none;
        /* Remove underline if desired */
    }

    .page-title-link:hover {
        color: #FFA600;
        transition: color 0.3s ease-in-out;
        cursor: url("../assets/cursor.hover.png"), pointer; 
    }

       .page-title-link:hover {
        color: #FFA600;
        transition: color 0.3s ease-in-out;
        cursor: url("../assets/cursor.hover.png"), pointer; 
    }





}

