/*::-webkit-scrollbar {*/
/*  width: 2px;*/
/*  height: 3px;*/
/*}*/

/*::-webkit-scrollbar-button {*/
/*  width: 1px;*/
/*}*/

/*.external {*/
/*  overflow: hidden;*/
/*  height: 100vh;*/
/*}*/

/*.horizontal-scroll-wrapper {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  width: 100vh;*/
/*  transform: rotate(-90deg) translate3d(0, -100vh, 0);*/
/*  transform-origin: right top;*/
/*  overflow-y: auto;*/
/*  overflow-x: hidden;*/
/*  padding: 0;*/
/*  height: 100vw;*/
/*  perspective: 1px;*/
/*  transform-style: preserve-3d;*/
/*  cursor: e-resize;*/
/*}*/

/*.img-wrapper {*/
/*  transform: rotate(90deg) translateZ(0.1px) scale(0.9) translateX(0px)*/
/*    translateY(-3vh);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  min-height: 40vh;*/
/*  transform-origin: 50% 50%;*/
/*  transition: 1s;*/
/*}*/

/*.img-wrapper:hover {*/
/*  min-height: 65vh;*/
/*}*/

/*.slower {*/
/*  transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(0%)*/
/*    translateY(-10vh);*/
/*}*/
/*.slower2 {*/
/*  transform: rotate(90deg) translateZ(-0.3px) scale(1.3) translateX(0%)*/
/*    translateY(2vh);*/
/*}*/
/*.slower-down {*/
/*  transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(0%)*/
/*    translateY(16vh);*/
/*}*/
/*.faster {*/
/*  transform: rotate(90deg) translateZ(0.15px) scale(0.8) translateX(0%)*/
/*    translateY(14vh);*/
/*}*/
/*.faster1 {*/
/*  transform: rotate(90deg) translateZ(0.05px) scale(0.8) translateX(0%)*/
/*    translateY(10vh);*/
/*}*/
/*.vertical {*/
/*  transform: rotate(90deg) translateZ(-0.15px) scale(1.15) translateX(0%)*/
/*    translateY(0%);*/
/*}*/
/*.last {*/
/*  transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(25vh)*/
/*    translateY(-8vh);*/
/*}*/

/*.img-wrapper a {*/
/*  overflow: hidden;*/
/*  display: block;*/
/*  padding: 1vh;*/
/*  background: #efecdb;*/
/*  box-shadow: 0 10px 50px #5f2f1182;*/
/*}*/

/*img {*/
/*  max-width: 55vh;*/
/*  max-height: 50vh;*/
/*  transition: 0.5s;*/
/*  vertical-align: top;*/
/*}*/

/* ✅ Mobile Fix */
/*@media (max-width: 768px) {*/
/*  body,*/
/*  html {*/
/*    overflow: auto;*/
/*  }*/

/*  .external {*/
/*    height: auto;*/
/*  }*/

/*  .horizontal-scroll-wrapper {*/
/*    transform: none !important;*/
/*    width: 100% !important;*/
/*    height: auto !important;*/
/*    flex-direction: column !important;*/
/*    overflow-y: auto !important;*/
/*    overflow-x: hidden !important;*/
/*    padding: 1rem 0;*/
/*    perspective: none !important;*/
/*    transform-style: flat;*/
/*  }*/

/*  .img-wrapper {*/
/*    transform: none !important;*/
/*    min-height: auto !important;*/
/*    margin: 1rem auto;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*  }*/

/*  .img-wrapper img {*/
/*    max-width: 90vw !important;*/
/*    height: auto !important;*/
/*  }*/
/*}*/


  body {
    background: #f8f9fa;
  }

  .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.03);
  }

  .lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
  }

  .lightbox:target {
    display: flex;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
  }

  .close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    text-decoration: none;
  }

  .close-lightbox:hover {
    color: red;
  }