.our-gallery-overlay-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
  background-color: #ffffff;
}
.our-gallery-overlay-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffc107;
}
@media (min-width: 640px) {
  .our-gallery-overlay-title {
    font-size: 1.875rem; /* sm:text-3xl */
  }
}
@media (min-width: 768px) {
  .our-gallery-overlay-title {
    font-size: 2.25rem; /* md:text-4xl */
  }
}
.our-gallery-overlay-description {
  text-align: center;
  color: #4b5563; /* text-gray-600 */
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 36rem; /* max-w-xl */
  margin-left: auto;
  margin-right: auto;
  text-align: justify ;
  font-size: 0.75rem; /* text-[12px] */
}
@media (min-width: 640px) {
  .our-gallery-overlay-description {
    padding-left: 0;
    padding-right: 0;
  }
}
.our-gallery-overlay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
}
@media (min-width: 640px) {
  .our-gallery-overlay-grid {
    grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .our-gallery-overlay-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}
.our-gallery-overlay-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
  transition: all 0.3s ease; /* transition duration-300 */
}
.our-gallery-overlay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ffc107;
  opacity: 0.7;
  z-index: 20;
  transition: all 0.5s ease-in-out; /* transition-all duration-500 ease-in-out */
  pointer-events: none;
}
.our-gallery-overlay-item:hover .our-gallery-overlay-overlay {
  width: 100%; /* group-hover:w-full */
}
.our-gallery-overlay-image {
  width: 100%;
  height: 16rem; /* h-64 */
  object-fit: cover;
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease; /* transition-transform duration-500 */
}
.our-gallery-overlay-item:hover .our-gallery-overlay-image {
  transform: scale(1.05); /* group-hover:scale-105 */
}


.our-gallery-overlay-button-container {
  text-align: center;
  margin-top: 2rem;
}

.our-gallery-overlay-button {
  display: inline-block;
  background-color: #ffc107; /* Yellow */
  color: #000; /* Black text */
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px; /* Fully rounded */
  text-decoration: none;
  transition: all 0.3s ease;
}

.our-gallery-overlay-button:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: scale(1.05);
}
