/* ==========================================================================
   SEZIONE 3: I 5 Motivi
   ========================================================================== */

#homepage #third-section {
  background-color: #f1efec;
  overflow: hidden;
}

#homepage #third-section .bg-mountain-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

#homepage #third-section .section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
}

#homepage #third-section .short-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin-left: 0;
}

#homepage #third-section .motivo-item p {
  font-size: 1.05rem;
  line-height: 1.5;
}

#homepage #third-section .polaroid-gallery {
  position: relative;
  width: 100%;
  height: 450px;
}

#homepage #third-section .polaroid {
  position: absolute;
  background-color: #ffffff;
  padding: 8px;
  width: 55%;

  /* Forzatura proporzione 3:2 per ACF */
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    z-index 0s;
  z-index: 2;
}

#homepage #third-section .polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
}

#homepage #third-section .pol-1 {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

#homepage #third-section .pol-2 {
  top: 20px;
  right: 0;
  transform: rotate(6deg);
  z-index: 3;
}

#homepage #third-section .pol-3 {
  bottom: 30px;
  left: 7%;
  transform: rotate(4deg);
  z-index: 4;
}

#homepage #third-section .pol-4 {
  bottom: -10px;
  right: 3%;
  transform: rotate(-5deg);
  z-index: 5;
}

@media (max-width: 991px) {
  #homepage #third-section .polaroid-gallery {
    height: 350px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  #homepage #third-section .polaroid-gallery {
    height: 250px;
  }
  #homepage #third-section .polaroid {
    width: 60%;
  }
}
