/* LAYOUT BASE */
.project-page{
  padding-top:80px;
  padding-bottom:40px;
  overflow:hidden;
}

/* GALLERY */
.project-gallery{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:40px;
  padding:0 25px;
}

.project-gallery img{
  max-height:87vh;
  width:auto;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

/* TRACK (ANIMAZIONE) */
.project-track{
  display:flex;
  width:max-content;
}

/* KEYFRAMES */
@keyframes scrollX{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:white;
}

.nav-icon{
  text-decoration:none;
  color:#222;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.lightbox img{
  max-width:90%;
  max-height:90vh;
  object-fit:contain;
}

/* FOOTER */
.footer{
  width:100%;
  display:flex;
  justify-content:center;
}

.footer .container-fluid{
  max-width:900px;
  width:100%;
  margin:0 auto;
}

.footer-content{
  text-align:center;
}

/* SCROLL FIX */
html, body{
  overflow-x:hidden;
}

/* PAUSA HOVER */
.project-track:hover{
  animation-play-state: paused;
}