section .projects{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
section .project{
    width: 320px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin: 0 22px 0 22px;
}
section .project:hover{
    background: repeating-linear-gradient(-45deg, var(--themeColor), var(--themeColorDark) 7px, var(--themeColor) 7px, var(--themeColor) 35px) !important;
}
section .project h1{
    display: none;
}
section .project:hover h1{
    text-align: center;
    display: block;
    color: var(--themeWhiteDark);
    letter-spacing: 2px;
}










/* --- MODAL START --- */
.projectModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    width: 80%;
    height: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

/* Çarpı işareti için stil */
.close {
    display: block;
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* --- MODAL END --- */