/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

#booking_section {
  scroll-margin-top: 100px;
}

/* Gallery Styles */
.isotope-wrapper {
  width: 100%;
}

.item {
  margin-bottom: 0;
}

.item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f0f0f0;
  aspect-ratio: 1;
}

.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.item-img .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.item:hover .item-img .content {
  opacity: 1;
}

.item-img .content a {
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.item-img .content a:hover {
  background-color: #fff;
  color: #000;
}
