/* =========================================================
   STILE PER LA PAGINA "CHI SIAMO"
========================================================= */

.about-us-container {
  max-width: 800px;
  margin: 10vh auto;
  padding: 0 25px;
  box-sizing: border-box;
  color: #c2c2c2;
}

.animate-on-load {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-load.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-us-content .animate-on-scroll:nth-of-type(1) {
  transition-delay: 0.1s;
}

.about-us-content .animate-on-scroll:nth-of-type(2) {
  transition-delay: 0.2s;
}

.about-us-content .animate-on-scroll:nth-of-type(3) {
  transition-delay: 0.3s;
}

.about-us-content .animate-on-scroll:nth-of-type(4) {
  transition-delay: 0.4s;
}

.about-us-content .animate-on-scroll:nth-of-type(5) {
  transition-delay: 0.5s;
}

.about-us-content .animate-on-scroll:nth-of-type(6) {
  transition-delay: 0.6s;
}

.about-us-content .animate-on-scroll:nth-of-type(7) {
  transition-delay: 0.7s;
}

.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  margin: 0 0 8vh 0;
  color: #F2F2F2;
  font-weight: 600;
}

.about-us-content p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  margin: 0 0 2em 0;
}

.intro-paragraph {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: #e0e0e0;
  line-height: 1.7;
}

.section-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin: 10vh 0 5vh 0;
  position: relative;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 20px auto 0;
}

.signature {
  text-align: right;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4em;
}

@media screen and (max-width: 600px) {

  .about-us-container {
    margin-bottom: 0vh;
  }

}