.projects-page{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.projects-page-title{
  margin-top: 100px;
  font-family: Arial;
  font-weight: 800;
  font-size: 74px;
  background: linear-gradient(
    90deg,
    rgb(32, 227, 255),   
    rgb(107, 232, 200) 35%,  
    rgb(207, 226, 122) 65%, 
    rgb(255, 212, 0)    
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.projects-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.project-link{
  text-decoration: none;
  color: white;
}

.tooltip {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  padding: 8px 12px;
  background-color: rgba(70, 70, 70, 0.88);
  border-radius: 6px;
  font-size: 16px;
  right: 0;
  bottom: 24px;
  transition: opacity 0.15s;
  z-index: 200;
}


.project-link:hover .orange-glow {
  text-shadow: 
    0 0 10px rgb(255, 255, 255),
    0 0 30px rgb(255, 153, 0),
    0 0 60px rgb(255, 153, 0);
}

.project-link:hover .red-glow {
   text-shadow: 
    0 0 10px rgb(255, 255, 255),
    0 0 30px rgb(255, 0, 0),
    0 0 60px rgb(255, 0, 0);
}

.project-link:hover .cyan-glow {
   text-shadow: 
    0 0 10px rgb(255, 255, 255),
    0 0 30px rgb(0, 255, 204),
    0 0 60px rgb(0, 204, 255);
}

.project-link:hover .purple-glow {
  text-shadow: 
    0 0 10px rgb(255, 255, 255),
    0 0 30px rgb(179, 102, 255),
    0 0 60px rgb(179, 102, 255);
}

.project-link:hover .blue-glow {
  text-shadow: 
    0 0 10px rgb(255, 255, 255),
    0 0 30px rgb(77, 166, 255),
    0 0 60px rgb(77, 166, 255);
}




.project-image-container:hover .tooltip{
  opacity: 1;
  pointer-events: all;
}

.project-container {
  display: flex;
  flex-direction: column;
  width: 1000px;
  font-family: Arial;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.project-title{
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}

.glow-text{
  color: white; 
  transition: text-shadow 0.3s ease-in-out;
}

.project-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.project-text {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-summary {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.project-features {
  color: #dddddd;
  line-height: 1.6;
  padding-left: 20px;
  margin: 0 0 16px 0;
}

.project-features li {
  margin-bottom: 8px;
}

.project-tech {
  color: #7fffd4;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 865.01px){
  .project-image-container {
    position: relative;
    width: 500px;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(90deg, #00f5ff, #00ff9d, #ffd500);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
  }

  .project-image {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top left;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}





@media (max-width: 865px){
  .project-container {
    text-align: center;
  }

  .project-image {
    display: none;
    pointer-events: none;
  }

  .projects-page-title{
    font-size: 56px;
    text-align: center;
  }

  .project-summary {
    font-size: 24px;
    text-align: center;

  }

  .project-features li {
    font-size: 20px;
    text-align: start;
  }

  .project-text { 
    width: 460px; 
    text-align: center;
  }

  .project-tech {
    font-size: 22px;
    text-align: cener;
  }
  
}






