main {
  padding-top: 150px;
  padding-right: 16px;
  padding-left: 16px;
  max-width: 1076px;
  margin: 0 auto;
}

main > h1 {
  text-transform: uppercase;
  font-size: 2.7rem;
  margin-bottom: 25px;
  font-weight: 500;
}

main > p {
  margin-bottom: 75px;
}

@media (max-width: 1180px) {
  main {
    padding-top: 125px;
  }
}

@media (max-width: 719px) {
  main {
    padding-top: 125px;
  }
  main > h1 {
    font-size: 2.2rem;
  }
  main > p {
    margin-bottom: 50px;
  }
}

#lightgallery {
  display: grid;
  /* Creates flexible columns roughly 150px-200px wide */
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: 180px; /* Base height for a 'square' unit */
  grid-auto-flow: dense;
  gap: 12px;
  /* padding: 12px; */
  margin-bottom: 100px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-item > span {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps images from stretching */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect for that 'Animated' feel */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* --- Spanning Classes --- */

/* Tall (like the mushroom) */
.gallery-item.tall {
  grid-row: span 2;
}

/* Wide (like the lake/forest) */
.gallery-item.wide {
  grid-column: span 2;
}

/* Big Square (4 units) */
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  #lightgallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: 140px;
  }
  .gallery-item.wide,
  .gallery-item.big {
    grid-column: span 2;
  }
}

/* WHATSAPP */
div.whatsapp-chat-container {
  bottom: 27px;
}

@media (max-width: 520px) {
  div.whatsapp-chat-container {
    bottom: 12px;
  }
}
/* END WHATSAPP */
