/* Gallery/Carousel Specific Styles */
.gallery-section {
  padding: 90px 0 60px 0;
  background: rgba(255, 255, 255, 0.95);
}
.gallery-section .section-title {
  margin: 0 auto 2.5rem auto;
  text-align: center;
  max-width: 1200px;
}
.gallery-swiper {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0;
}
.gallery-swiper .swiper-wrapper {
  align-items: center;
}
.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  height: 100%;
  padding: 0 1px; /* 2px total gap between slides */
}
.gallery-swiper .gallery-item {
  flex: none;
  width: 300px;
  height: 300px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-swiper .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}
.gallery-swiper .swiper-scrollbar {
  display: none !important;
}
.gallery-swiper::-webkit-scrollbar {
  display: none !important;
}
.gallery-swiper {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-link {
  text-align: center;
  margin: 2.5rem auto 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
.gallery-link a {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
  background: #fff;
  border-radius: 24px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-link a:hover {
  color: #ff6b6b;
  background: #f8f9fa;
}
@media (max-width: 900px) {
  .gallery-swiper .gallery-item {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-swiper .gallery-item {
    width: 110px;
    height: 110px;
  }
}
