/* Gallery Header */
.gallery-section {
  width: 100%;
  background-color: #000000;
  position: relative;
  padding: 150px 300px 70px 300px;
  text-align: center;
}

.gallery-section h2 {
font-size: 2rem;
color: #f0c14b;
margin-bottom: 20px;
text-shadow: 1px 1px 2px rgb(0 0 2);
}

.logo {
  height: 30px;
}

.share-icon {
  height: 20px;
  cursor: pointer;
}

/* Slider Styles */
.image-slider-container {
  position: relative;
  overflow: hidden;
  background: #000;
  height: auto;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
}

.image-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.image-slide {
  min-width: 100%;
  height: auto;
  display: none;
  object-fit: cover;
  filter: grayscale(100%);
}

.image-slide.active {
  display: block;
  height: auto;
}

/* Arrows */
.arrow {
  position: absolute;
  transform: translateY(-50%);
  font-size: 36px;
  background: none;
  border: none;
  color: #ffd700;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
}

.arrow-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background: none;
  border: none;
  color: #ffd700;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  left: 10px;
}

.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background: none;
  border: none;
  color: #ffd700;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .gallery-section {
     padding: 85px 30px 100px 30px;
  }

  .gallery-header h2 {
    font-size: 20px;
  }

  .arrow {
    font-size: 28px;
  }

  .image-slider-container {
    height: auto;
  }

  .image-slide.active {
  display: block;
  height: auto;
}

}

@media (max-width: 480px) {
  .logo,

  .arrow {
    font-size: 24px;
  }

  .gallery-section {
     padding: 85px 30px 100px 30px;
  }

  .gallery-header h2 {
    font-size: 20px;
  }

  .arrow {
    font-size: 28px;
  }

  .image-slider-container {
    height: auto;
  }

  .image-slide.active {
  display: block;
  height: auto;
}

}


@media screen and (min-width: 1024px) and (max-width: 1440px){ 
  .gallery-section {
    padding: 80px 70px 100px 70px;
  }
}



