#selectedProject {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 70px 30px;
    background-image: linear-gradient(to right, white, rgb(255, 243, 255));
}

@media (max-width: 1300px) {
    #selectedProject {
      flex-direction: column;
      background-image: linear-gradient(to top, white, rgb(255, 243, 255));
   }
}

#selectedProjectTxt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
}

#selectedProjectTxt h2 {
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: rgb(40, 0, 39);
}

#selectedProjectTxt h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: gray;
}

#selectedProjectTxt p {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
}

#selectedProjectTxt a {
    position: relative;
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 10px ;
    width: 60%;
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(to right, rgb(0, 160, 184), rgb(0, 181, 209));
}

@media (max-width: 1300px) {
    #selectedProjectTxt a {
      margin-bottom: 40px;
   }
}

#selectedProjectTxt a::after {
  content: "←";
  position: absolute;
  left: 30px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* hover */
#selectedProjectTxt a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* רווח לימין כדי לפנות מקום לחץ */
#selectedProjectTxt a:hover {
  /* padding-right: 10px; */
  transition: padding 0.3s ease;
}

#mockupWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: 'Heebo', sans-serif;
    padding: 0 30px;
}

#mockupWrapper img {
    width: 700px;
}

@media (max-width: 768px) {
    #mockupWrapper img {
      width: 350px;
   }
}

#mockupWrapper p {
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 10px;
}

