/* #region VINEO SECTION */
.single-page_portfolio {
  background:
    linear-gradient(
      rgba(0,0,0,0.8),
      rgba(0,0,0,0.8)
    ),
    linear-gradient(
      to bottom,
      transparent 85%,
      #000 100%
    ),
    var(--bg-image);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-wrap {
  display: flex;
}
.single-video {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 70px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
.single-video video {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: solid 2px #606060;
}
/* #endregion */
/* #region DESCRIPTION */
.video-description {
  margin-top: 50px;
  margin-bottom: 100px;
}
.single-page_title {
   text-align: left;
   margin-bottom: 20px;
   margin-top: -25px;
   font-style: italic;
}
.portfolio-title {
  font-family: 'Karvx';
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 4px;
}
.portfolio-description {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
}
/* #endregion */
/* #region PHOTO SECTION */
.photo-section {
  padding-top: 70px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
.photo-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.photo-list img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border: solid 2px #606060;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.photo-list img:hover {
  transform: scale(1.03);
}
/* #endregion */
/* #region ARROWS */
.portfolio-nav {
  display: contents;
}
.portfolio-prev,
.portfolio-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #ebebeb;
  text-decoration: none;
  z-index: 3;
  transition: color .2s ease;
}
.portfolio-prev {
  left: 30px;
}
.portfolio-next {
  right: 30px;
}
.portfolio-prev:hover,
.portfolio-next:hover {
  color: #fff;
}
/* #endregion */
/* #region PHOTO LIGHT BOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  color: #ebebeb;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
.lightbox .close {
  top: 20px;
  right: 30px;
}
.lightbox .prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
/* #endregion */
/* #region MEDIA */
@media (max-width: 1260px) {
  .single-video {
    padding-bottom: 0;
  }
  .portfolio-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .portfolio-prev,
  .portfolio-next {
    position: static;
    transform: none;
    font-size: 40px;
  }
}
@media (max-width: 1170px) {
  .photo-section {
    padding-right: 0px;
  }
}
@media (max-width: 900px) {
  .photo-list {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .single-video {
    padding-bottom: 0;
  }
  .video-wrap {
    flex-direction: column;
  }
  .video-description {
    margin-bottom: 50px;
  }
  .photo-section {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .photo-list {
    margin-top: 0px;
  }
  .photo-list img {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .photo-section {
    padding-bottom: 30px;
  }
  .portfolio-nav {
    margin-bottom: 60px;
  }
}
/* #endregion */



