/* =============================================
   PACKTECH — FULL WIDTH GROUP SECTION
   ============================================= */

.group-section {
  width: 100%;
  background: transparent;
  overflow: visible;
  position: relative;
  margin-top: -10rem;
  z-index: 10;
  line-height: 0;
}

.group-image-wrap {
  width: 100%;
  overflow: hidden;
}

.group-full-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /* Crop the bottom black bar from the source image */
}

/* Subtle zoom effect when revealed */
.group-full-image.reveal {
  transform: scale(1.1);
  opacity: 0;
}

.group-full-image.reveal.visible {
  transform: scale(1);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .group-section {
    /* Ensure the image doesn't get too small on mobile, let it scroll horizontally if needed or just fit */
    background: #fdfaf500;
    margin-top: -2rem;
  }
}