/*===============
IMPORT GLOBAL CSS
================*/
@import url(global.css);

/*=======
VENUE CSS
=========*/
/* Cluster wrapper */
.venue-img-cluster {
  height: 450px;
}

.venue-section .venue-image {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  position: absolute;
}

.venue-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Main center image */
.venue-section .img-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Second image */
.venue-section .img-2 {
  top: 61.1%;
  left: 32%;
  width: 320px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-top: 5px solid #fff;
}

/* Third image */
.venue-section .img-3 {
  top: 55.5%;
  right: 40px;
  width: 300px;
  height: 350px;
  transform: translate(0, -50%);
  border-top: 5px solid #fff;
  border-left: 5px solid #fff;
}

/* -----------------------------------
   RESPONSIVE BREAKPOINTS
----------------------------------- */

/* Large tablets (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 991px) {
  .venue-img-cluster {
    height: 380px;
  }

  .venue-section .venue-image {
    width: 320px;
    height: 320px;
  }

  .venue-section .img-2 {
    width: 260px;
    height: 250px;
    left: 40%;
  }

  .venue-section .img-3 {
    width: 240px;
    height: 280px;
    top: 57.3%;
    left: 480px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .venue-img-cluster {
    height: 340px;
    margin-bottom: 50px;
  }

  .venue-section .venue-image {
    width: 260px;
    height: 260px;
  }

  .venue-section .img-1 {
    left: 50%;
  }

  .venue-section .img-2 {
    width: 220px;
    top: 57%;
    height: 210px;
    left: 38%;
  }

  .venue-section .img-3 {
    width: 200px;
    height: 240px;
    top: 53%;
    right: 160px;
  }
}

/* Mobile (max 767px) — Stack them nicely */
@media (max-width: 767px) {
  .venue-img-cluster {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .venue-section .venue-image {
    position: relative;
    width: 100%;
    height: 60vw;
    max-height: 300px;
    left: unset;
    top: unset;
    right: unset;
    transform: none;
    border: none;
  }

  .venue-section .img-2,
  .venue-section .img-3 {
    border: none;
  }
}

.venu-right h5 {
  color: var(--custom-blue);
  /*text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);*/
}
@media (min-width: 1200px) {
  .venu-right p {
    text-align: justify;
  }
}

/* Venue Gallery */
.venue-gallery-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.venue-gallery-wrapper::after {
  content: "";
  inset: 0;
  position: absolute;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.venue-gallery-wrapper h6 {
  position: absolute;
  bottom: 0px;
  left: 15px;
  z-index: 3;
  color: #fff;
}
