/* ==========| Hero Slider [START] */
#hero-slider {
  position: relative;
  width: 100%;
  height: 80vh; /* adjust as needed */
  overflow: hidden;
}

#hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#hero-slider .slide.active {
  opacity: 1;
}

/* Arrows */
#hero-slider .prev, 
#hero-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

#hero-slider .prev { left: 20px; }
#hero-slider .next { right: 20px; }

/* Dots */
#hero-slider .dots {
  position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    justify-content: center;
}

#hero-slider .dots span {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

#hero-slider .dots span.active {
  background: #fff;
}
/* ==========| Hero Slider [END] */

/* ==========| Gallery [START] */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery img {
  width: 24%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100%; height: 100%;
  padding-top: 50px;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.lightbox-img {
  max-width: 80%;
  max-height: 70%;
  margin-bottom: 15px;
}
.lightbox .close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
}
.lightbox-caption {
  max-width: 80%;
}
/* ==========| Gallery [END] */