/* ======= Carousel Gallery ======= */
.gallery {
  padding: 40px 0;
  text-align: center;
}

.carousel {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slides {
  position: relative;
  width: 100%;
}

.slide {
  width: 100%;
  height: auto;
  display: none;
  object-fit: cover;
  border-radius: 8px;
}

.slide.active {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.dots {
  margin-top: 15px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
  background-color: #e57c1f; /* unified orange */
  transform: scale(1.2);
}

/* Responsive Heights */
@media (max-width: 768px) {
  .carousel {
    width: 95%;
  }
  .slide {
    height: auto;
  }
}

@media (max-width: 480px) {
  .slide {
    height: auto;
  }
}
