@media (min-width: 992px) {
  .px-10 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
}

.hero-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero-text-sub {
  font-family: 'Fira Mono', monospace;
  text-align: justify;
}

.nav-btn:hover svg {
  color: var(--bs-tertiary-color);
}

.nav-link:focus, .nav-link:hover {
  color: var(--bs-tertiary-color);
}

button:hover, .btn:hover {
  color: var(--bs-tertiary-color);
}

button:focus, .btn:focus, button:active, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.background-primary {
  background: var(--bs-primary);
}

.background-blur {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.50);
  z-index: -1;
  mix-blend-mode: screen;
  pointer-events: none;
  overflow: hidden;
  opacity: 70%;
}

@media (max-width: 1190px) {
  .hero-video-overlay {
    display: none;
  }
}

/* Gallery Modal Styles */

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery-modal-content {
  position: relative;
  z-index: 1;
  max-width: 60vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.4s ease-out;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active .gallery-modal-content {
  transform: scale(1);
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.gallery-container .col > div {
  overflow: hidden;
  border-radius: 1rem;
  transition: box-shadow 0.3s ease-in-out;
}

.gallery-container .col:hover > div {
  box-shadow: 0px 0px 7px 4px var(--bs-border-color);
}

.gallery-container .col > div .gallery-img {
  border-radius: 0;
  transition: transform 0.3s ease-in-out;
}

.gallery-container .col:hover > div .gallery-img {
  transform: scale(1.05);
}

