.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.shooting-hero-container {
  height: 100%;
  width: 100%;
}

.shooting-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;  /* Ensure proper layering */
  overflow: hidden;
  transform: translateZ(0);  /* GPU acceleration */
}

.shooting-section-title {
  text-transform: uppercase;
  margin: 80px 0 50px 0;
  font-size: 52px;
  font-weight: 550;
  color: #303030;
  text-align: center;
}


/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .shooting-section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .shooting-section-title {
    font-size: 32px;
  }
}

