
.blurbs-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* don’t block clicks */
  overflow: hidden;
}

.blurb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation: float 20s infinite ease-in-out;
  z-index: -1;
}

.blurb:nth-child(1) {
  width: 375px;
  height: 375px;
  background: #FF8C5A;
  top: -15%;
  right: 0%;
  animation-duration: 25s;
  filter: blur(120px);
}

.blurb:nth-child(2) {
  width: 150px;
  height: 150px;
  background: #FFCB8D;
  top: 30%;
  right: 8%;
  animation-duration: 30s;
  filter: blur(70px);
}

.blurb:nth-child(3) {
  width: 275px;
  height: 275px;
  background: #D9C7EF;
  top: 30%;
  right: -10%;
  animation-duration: 35s;
  filter: blur(70px);
}

.blurb:nth-child(4) {
  width: 175px;
  height: 175px;
  background: #D9C7EF;
  top: -5%;
  right: 25%;
  animation-duration: 35s;
  filter: blur(70px);
}


@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-30px, 50px) scale(1.1); }
  50%  { transform: translate(20px, 100px) scale(0.9); }
  75%  { transform: translate(-50px, 30px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

  .subtitle {
    font-size: 1.5rem;
  }

.landing-box {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.landing-box h1 {
  margin-bottom: 1rem;
  margin-top: 0;
  max-width:850px;
  line-height: 130%;
}

.landing-box h3 {
  margin-top: 0;
}

.menuIcon {
  color: rgb(47, 48, 41);
}

.arrow {
  position: absolute;
  right: 12rem;
  bottom: 8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 0;
}

.arrow:hover {
  transform: scale(1.1); /* make it 20% bigger */
}

.homepage-project {
margin-bottom: 5rem;
width: 100%;
flex: 1;
}

.project-list {
  padding-left: 1rem;
}

.project-image-size {
  width: 100%;
  object-fit: cover;  /* scales and crops to fill without distortion */
  display: block;
  padding-bottom: 0;
  border-radius: 24px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.project-image-size:hover {
  transform: scale(0.95);
}

.two-column-projects {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.two-column-items {
  display: flex;
  align-items: baseline;
  gap: 32px;
  width: 100%;
  flex: 1;
}

.project-step-right {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.badge {
border-style: solid;
padding: .25rem 1rem;
border-color: #cecece;
border-width: 1px;
border-radius: 24px;
}

.badge p {
margin: 0;
padding: 0;
}

.hover-section {
  max-width: 100000px;
}

#thumbwrap {
	height: 75px;
}

.thumb span { 
	position:absolute;
	visibility:hidden;
}

.thumb:hover, .thumb:hover span { 
	visibility:visible;
	top:0;
	left:250px; 
}

.hover-image, .hover-image-2, .hover-image-3, .hover-image-4, .hover-image-5 {
  opacity: 0; /* Start with 0 opacity */
  position: fixed; /* Use absolute positioning for each image */
  width: 15%;
  border-radius: 1rem;
  transition: opacity 0.5s ease-in-out; /* Add a transition effect */
  pointer-events: none;
  max-width: 250px;
}

.thumb:hover .hover-image {
  opacity: 1; /* Set opacity to 1 on hover */
}

.thumb:hover .hover-image-2 {
  opacity: 1; /* Set opacity to 1 on hover */
}

.thumb:hover .hover-image-3 {
  opacity: 1; /* Set opacity to 1 on hover */
}

.thumb:hover .hover-image-4 {
  opacity: 1; /* Set opacity to 1 on hover */
}

.thumb:hover .hover-image-5 {
  opacity: 1; /* Set opacity to 1 on hover */
}

@media screen and (max-width: 1350px) {
  .two-column-items {
    flex-direction: column;
    }
}

@media screen and (max-width: 950px) {
  .landing-box h1 {
    max-width: 80%;
    font-size: 2rem;
  }
}

@media screen and (max-width: 725px) {
  .landing-box h1 {
    max-width: 100%;
  }
}

/* MOBILE */
@media screen and (max-width: 530px) {
  .badge {
    display: none;
  }
  .homepage-project {
    margin-bottom: 3rem;
  }
  .project-image-size {
    border-radius: 8px;
  }
  .landing-box h1 {
    max-width: 100%;
    font-size: 1.25rem;
  }
  .landing-box h3 {
  font-size: .9rem;
  margin-bottom: 0;
  }
  html {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .landing-box {
    height: 60vh;
  }
  #thumbwrap.hover-section {
    height: 30px;
  }
  .arrow {
    /* position: absolute;
    right: 1.5rem;
    bottom: 25rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    scale: 0.7; */
    display: none;
  }
  .blurb:nth-child(1) {
    width: 200px;
    height: 200px;
    background: #FF8C5A;
    top: -5%;
    right: 0%;
    animation-duration: 25s;
    /* filter: blur(90px); */
  }
  .blurb:nth-child(2) {
    width: 150px;
    height: 150px;
    background: #FFCB8D;
    top: 30%;
    right: 8%;
    animation-duration: 30s;
    /* filter: blur(70px); */
  }
  
  .blurb:nth-child(3) {
    width: 130px;
    height: 130px;
    background: #D9C7EF;
    top: 35%;
    right: -10%;
    animation-duration: 35s;
    /* filter: blur(70px); */
  }
  
  .blurb:nth-child(4) {
    width: 175px;
    height: 175px;
    background: #D9C7EF;
    top: -5%;
    right: 25%;
    animation-duration: 35s;
    /* filter: blur(70px); */
  }
}