.crew-section {
  background-color: #000;
  padding: 100px 0;
  overflow: hidden;
  font-family: 'Courier Prime', monospace;
  margin-top: 160px;
}

.crewSwiper {
  width: 100%;
  padding: 40px 0 100px !important; /* Space for heads and names */
}

.crew-card {
  height: 420px;
  position: relative;
  width: 100%; /* Swiper handles the width now */
}
.crew-nav {
  text-align: center;
}

/* Red Background Box */
.crew-red-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background-color: #EE2E3C;
  z-index: 1;
}

.crew-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  pointer-events: none;
}

.crew-card:hover .crew-img {
  filter: grayscale(0%);
  transform: translateX(-50%) translateY(-8px) scale(1.05); /* Slight lift on hover */
}

.crew-info {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  z-index: 10;
}

.crew-name { font-weight: 400; font-size: 40px; margin-bottom: 0px; margin-left: 20px; font-family: "Sedgwick Ave Display", cursive;}
.crew-role { font-size: 0.9rem; opacity: 0.8; }

.nav-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
}
.crew-header h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-family: "Sedgwick Ave Display", cursive;
}

@media (max-width: 768px) {
  .crew-card {
    height: 300px;
  }
  .crew-header h2 {
    font-size: 36px;
  }
  
  .crew-name {
    font-size: 30px;
  }
  
  .crew-role {
    font-size: 0.8rem;
  }
  
  .crew-img {

  width: auto;
  height: 100%;
}
}
@media screen and (max-width: 576px) {
  .crew-header h2 {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }
  
}