/* Temporary for development stage, recommend to copy these CSS code to frontend.css when production */
section[data-module="join-our-team"] {}

/* SECTION CONTAINER */
section[data-module="join-our-team"] {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GALLERY CONTAINER */
section[data-module="join-our-team"] .gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GALLERY WRAPPER */
section[data-module="join-our-team"] .gallery-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

/* GALLERY FLEX CONTAINER */
section[data-module="join-our-team"] .gallery {
  display: flex;
  gap: 90px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translateX(0);
  position: relative;
}

/* GALLERY ITEM */
section[data-module="join-our-team"] .gallery-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ODD IMAGES (IN FRONT of heading) */
section[data-module="join-our-team"] .gallery .front {
  position: relative;
  z-index: 3; /* Places odd images in front */
  width: 480px;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* EVEN IMAGES (BEHIND heading) */
section[data-module="join-our-team"] .gallery .behind {
  position: relative;
  z-index: 1; /* Moves them behind heading */
  width: 380px;
  opacity: 0.75;
  filter: brightness(0.85);
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* FIXED HEADING (Static in Center, Never Moves) */
section[data-module="join-our-team"] .heading {
  position: absolute; /* Keeps heading fixed */
  text-align: center;
  font-size: 8rem;
  font-weight: bold;
  color: white;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
  font-family: 'Lato', sans-serif;
  z-index: 2; /* Between odd and even images */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Prevents interactions */
}





/* Typical laptop screen size*/
@media (max-width: 1400px) {
	
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 980px) {
	
}

/* Mobile screen size - landscape view */
@media (max-width: 767px) {
   
}

/* Mobile screen size */
@media (max-width: 480px) {
      
}