/** @format */
/** @format */
@font-face {
  font-family: "Cardo99s";
  src: url("../assets/fonts/cardo99s.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham\ Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  background: rgba(245, 242, 240, 0.6);
}
:root {
  --navy: #022741;
  --ink: #022741;
  --gold: #d4af37;
  --muted: #595959;
  --muted: #000;
  --line: #e6e6e6;
  --line2: #dcdcdc;
  --max: 1420px;
  --pad-card: 30px;
  --icon: 22px; /* title icon size (Remix Icon) */
  --col-gap: 18px; /* space between image and details */
  --heading-font: "Montserrat", sans-serif;
  --second-font: "Crimson Text", serif;
  --font-cardo: "Cardo99s", serif;
  --font-gotham: "Gotham", serif;
}

.gallery_hero_container {
  /* display: block; */
  /* height: 100vh; */
  height: 75vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.gallery_hero_container a {
  font-family: var(--second-font);
}

.gallery_hero_container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.title {
  font-family: var(--heading-font);
  font-weight: 600;
}

/*  */

/* Wedding Packages Section */
/* Wedding Packages Section */

.venue-section {
  background: var(--bg);
  padding: 0 20px 40px 20px;
  cursor: default;
}

.venue-section h2 {
  color: var(--muted);
  font-family: var(--font-cardo);

  letter-spacing: 1.4px;
  line-height: 32px;
  font-weight: 500;
  font-size: 21px;
  padding: 4.5rem 16% 2.5rem 16%;
}

/*  */

/* wrapper */
.venue-wrap {
  background: #fff;
  background: var(--bg);
  padding: 0;
}

/* flex container */
.venue-container {
  /* max-height: 100vh; */
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: start;
  gap: 15vh;
  position: relative;
}

/* image */
.venue-image {
  min-width: 50vw;
  overflow: hidden;
}
.venue-image img {
  width: 100%;
  height: 95vh;
  object-fit: cover;
  display: block;
  object-fit: cover;
}

/* content */
.venue-content {
  padding-right: 8vw;
}

.venue-content h2 {
  font-family: var(--heading-font);
  text-transform: none;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
p.bullet {
  display: flex;
  align-items: flex-start;
}

p.bullet span {
  margin-right: 8px; /* space between bullet and text */
}

.venue-content p {
  font-family: var(--font-cardo);
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 28px;
  letter-spacing: 1.2px;
  margin: 0 0 24px;
}

/* button */
.venue-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  /* text-transform: ; */
  padding: 17px 31px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--navy);
}
.venue-btn:hover {
  background: transparent;
  color: var(--navy);
}

/* mobile adjustment */
@media (max-width: 600px) {
  .venue-section h2 {
    letter-spacing: 1px;
    line-height: 22px;
    font-size: 14px;
    padding: 2rem 6% 0rem 6%;
  }

  .venue-container {
    max-height: auto;
    flex-direction: column;
    gap: 0vh;
  }
  .venue-container::before {
    display: none;
  }

  .venue-image img {
    width: 100vw;
    height: 31vh;
  }

  .venue-content {
    padding: 2rem 8.33333% 2rem 8.33333%;
    text-align: left;
  }

  .venue-content h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .venue-content p {
    letter-spacing: 1px;
    line-height: 22px;
    font-size: 14px;

    margin: 0 0 18px;
  }

  /* button */
  .venue-btn {
    font-size: 11px;
    letter-spacing: 0.8px;
    padding: 16px 31px;
  }
}

/* .masonry-grid */
/* .masonry-grid */
/* .masonry-grid */

.masonry-grid {
  padding: 2rem 2rem 2rem 1rem;
  column-count: 4;
  column-gap: 10px;
}

.masonry-grid img {
  width: 100%;
  margin-bottom: 6px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* Masonry Grid Layout */

.masonry-grid img:hover {
  transform: scale(1.01);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.lightbox.visible {
  visibility: visible;
  opacity: 1;
}

.lightbox .lightbox-img {
  max-width: auto;
  max-height: 90%;
  transition: all 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 16px;
  left: 25px;
  font-size: 1.6vw;
  background: none;
  border: none;
  color: grey;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}

.lightbox .close:hover {
  cursor: pointer;
  color: #000;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: gray;
  border: none;
  font-size: 2.5vw;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  visibility: hidden;
}

.lightbox .arrow.left {
  left: 10px;
}

.lightbox .arrow.right {
  right: 20px;
}

body:hover .lightbox .arrow {
  visibility: hidden;
}

body.left .lightbox .arrow.left {
  visibility: visible;
}

body.right .lightbox .arrow.right {
  visibility: visible;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.lightbox.visible {
  visibility: visible;
  opacity: 1;
}

.lightbox .lightbox-img {
  max-width: auto;
  max-height: 90%;
  transition: all 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 16px;
  left: 25px;
  font-size: 1.6vw;
  background: none;
  border: none;
  color: grey;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}

.lightbox .close:hover {
  cursor: pointer;
  color: #000;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: gray;
  border: none;
  font-size: 2.5vw;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  visibility: hidden;
}

.lightbox .arrow.left {
  left: 10px;
}

.lightbox .arrow.right {
  right: 20px;
}

body:hover .lightbox .arrow {
  visibility: hidden;
}

body.left .lightbox .arrow.left {
  visibility: visible;
}

body.right .lightbox .arrow.right {
  visibility: visible;
}

@media (max-width: 768px) {
  .venue-section {
    padding-bottom: 40px;
  }

  .venue-wrap {
    gap: 25px;
  }

  .masonry-grid {
    margin-top: 2vh;
    /* padding: 19px !important; */
    /* padding: 10px !important; */
    padding: 0px 9px 0 9px;
    column-count: 1 !important;
    column-gap: 6px !important;
  }

  .masonry-grid img {
    /* height: 350px; */
    max-height: 360px;
    object-fit: cover;
    /* margin-bottom: 15px !important; */
    /* margin-top: 2px !important;  */

    /* border-radius: 10px; */
  }

  .masonry-grid img:hover {
    transform: scale(1);
  }

  /* .lightbox {
    display: none;
  } */

  .lightbox .lightbox-img {
    width: 93vw !important;
    /* transform: translateY(-40px) !important; */
  }

  .lightbox .close {
    font-size: 6vw !important;
    left: 20px;
    top: 80px;
  }

  /* .lightbox .close i {
    font-size: 2vw;
  } */
}
