@font-face {
  font-family: "Glacial Indifference";
  src: url(../fonts/glacialindifference-regular-webfont.woff2) format("woff2"),
    url(../fonts/glacialindifference-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url(../fonts/glacialindifference-bold-webfont.woff2) format("woff2"),
    url(../fonts/glacialindifference-bold-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.no-scroll {
  overflow: hidden;
}
.btn-fill-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.btn-fill-effect:hover::before {
  transform: scaleX(1);
}
.btn-fill-effect:hover span {
  color: #fff;
}
*:focus-visible {
  outline: 3px solid #005a9c;
  outline-offset: 2px;
  border-radius: 2px;
}
@keyframes fadeInAndScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-image-transition {
  animation: fadeInAndScale 1.5s ease-out forwards;
}
.swiper-button-next,
.swiper-button-prev {
  color: #666;
  transition: color 0.2s ease-in-out;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #000;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: 700;
}
.swiper-pagination-bullet {
  background-color: #999;
  margin: 0 12px !important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #333;
}
.masonry-gallery {
  column-count: 1;
  column-gap: 0.25rem;
}
@media (min-width: 640px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (min-width: 1024px) {
  .masonry-gallery {
    column-count: 3;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.25rem;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.masonry-item:hover img {
  transform: scale(1.05);
}
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 0.7);
}
.lightbox-content-wrapper {
  display: flex;
  max-width: 95vw;
  max-height: 95vh;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
#lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  z-index: 5;
}
.lightbox.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.lightbox.is-visible .lightbox-content-wrapper {
  transform: scale(1);
}
.lightbox-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(30 30 30 / 0.6);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
  user-select: none;
  border-radius: 8px;
}
.lightbox-button:hover {
  background-color: rgb(0 0 0 / 0.8);
}
.close-button {
  top: 12px;
  right: 12px;
  transform: none;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
}
.prev-button {
  left: 12px;
}
.next-button {
  right: 12px;
}
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
