/* Image banner */
.image-banner {
  position: relative;
  display: flex;
  height: 90vh;
  width: 100%;
}
.image-banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
}
.exclusive {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  .exclusive img {
    object-fit: cover;
  }
  .gallery-section {
    padding: 30px 14%;
  }
  .gallery-section h1, h3,
  p {
    margin-bottom: 24px;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
  .gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    z-index: 100;
  }
  .gallery img:hover {
    transform: scale(1.05);
  }
  /* Gallery Lightbox styling */
  .gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  .gallery-lightbox-image {
    max-width: 90%;
    max-height: 90%;
  }
  .close-gallery-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Gallery Lightbox styling */
  .gallery-lightbox2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  .gallery-lightbox-image2 {
    max-width: 90%;
    max-height: 90%;
  }
  .close-gallery-lightbox2 {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  .palm-leaf-top {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    transform: scaleY(-1);
    transform: rotate(180deg);
    height: 1200px;
    right: -200px;
  }
  
  /* Tablets */
  @media (max-width: 1200px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Small Tablets & Large Phones*/
  @media (max-width: 768px) {
    .gallery {
      grid-template-columns: repeat(1, 1fr);
    }
    .palm-leaf-top {
      display: none;
    }
  }
  
  /* Mobile Phones */
  @media (max-width: 480px) {
    .gallery img {
      height: 250px;
    }
  }
  