#homepage #fourth-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 80vh;
}

#homepage #fourth-section .hero-overlay {
  background-color: rgba(0, 0, 0, 0.45);
}

#homepage #fourth-section .section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 2px;
}

#homepage #fourth-section .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
}

#homepage #fourth-section .activity-box {
  background-color: transparent;
  transition: all 0.4s ease;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

#homepage #fourth-section .activity-box:hover {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: var(--color-primary) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#homepage #fourth-section .activity-box:hover .icon-anim,
#homepage #fourth-section .activity-box:hover h5 {
  color: var(--color-primary);
}

#homepage #fourth-section .scopri-text {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  margin-top: 0;
  height: 0;
}

#homepage #fourth-section .activity-box:hover .scopri-text {
  opacity: 1;
  transform: translateY(0);
  margin-top: 15px;
  height: auto;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  #homepage #fourth-section .section-title {
    font-size: 2.2rem;
  }
  #homepage #fourth-section .activity-box {
    min-height: 150px;
  }
}
