/* Gallery Hover Effect with Image Title */
.image-hover {
  position: relative;
  display: block;
  
}

.image-hover img {
  transition: transform 0.4s ease;
}

.image-hover:hover img {
  transform: scale(1.1);
}

.gallery-item h3 {
  font-size: 18px;
  margin-top: 12px;
  color: #fdfdfd;
  font-weight: bold;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item .full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(34, 34, 34, 0.5);  /* black transparent overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.4s ease;
}

.gallery-item a:hover img {
  transform: scale(1.05);
}

.gallery-item a:hover .full-overlay {
  background: rgba(0,0,0,0.3); 
}



.full-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white !important;
}

.full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(34, 34, 34, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.4s ease;
  pointer-events: auto; 
}

.full-overlay .click-here {
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out, transform 0.3s;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 30px;
  background-color: #ffc107;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


.gallery-item:hover .click-here,
.gallery-item .click-here:hover {
  opacity: 1;
  background: linear-gradient(45deg, #ffce00, #ff9900);
  transform: scale(1.1);
}






