/* #website styles moved to common.css for consistency */
.section {
  margin-left: 8%;
  margin-right: 8%;
  margin-top: 4%;
}
a{
  color: inherit;
  text-decoration: none;
}
#titleArea {
  display: flex;
  flex-direction: column;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 4% !important;
  padding-top: 0 !important;
  scroll-margin-top: 80px; /* Extra space above title when scrolling from "Back to top" */
}
#art-sec{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2%;
  margin-left: 4%;
  margin-right: 4%;
}
.column{
  display: flex;
  flex-direction: column;
  gap:10px;
  min-width: 300px;
}
#main-img {
  width: 475px;
  min-width: 300px;
  height: 300px;
  transition: transform .2s;
  border-radius: 15px;
  object-fit: cover;
  flex-wrap: wrap;
}
.project-title:hover {
  color: #8a8a8a;
}

.circle2 {
  position: absolute;
}
.circle2.top.front {
  width: 1313px;
  height: 1093px;
  right:-650px;
  top:-550px;
  z-index: 0;
  background-color: #ffffaa;
  border-radius: 1000px;
  filter: blur(125px);
}
.circle2.top.back {
  width: 1313px;
  height: 1093px;
  right:-600px;
  top:-500px;
  z-index: 0;
  background-color: #ceffab;
  border-radius: 1000px;
  filter: blur(125px);
}
.circle2.mid.front {
  width: 1313px;
  height: 1093px;
  left:-650px;
  top:800px;
  z-index: 0;
  background-color: #c6ceff;
  border-radius: 1000px;
  filter: blur(125px);
}
.circle2.mid.back {
  width: 1313px;
  height: 1093px;
  left:-600px;
  top:750px;
  z-index: 0;
  background-color: #aefffa;
  border-radius: 1000px;
  filter: blur(125px);
}


@media screen and (max-width: 768px) {
  .work-content {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    min-width: 300px;
  }
  #main-img {
    width: 100% !important;
    min-width: auto;
    max-width: none;
    min-height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  
  }
  #titleArea{
    margin-top: 40px;
  }
  .work-desc {
    margin-left: 0 !important;
    padding-left: 0;
    text-align: left;
  }
}

.mouse-follower {
    position: fixed; 
    width: 900px;
    height: 900px;
    background-color: rgba(255, 149, 248, 0.3); /* Blue color for the shape */
    border-radius: 50%; /* Makes it a circle */
    pointer-events: none; /* Allows clicks to pass through the follower to elements beneath */
    /* transform: translate(-50%, -50%);  */
    transition: transform 0.1s ease-out, background-color 0.3s ease; /* Adds smooth movement and color transition */
    /* z-index: -10; */
    filter: blur(125px);
}