*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  background: rgb(32,32,32);
}

a{
  text-decoration: none;
}
#article_link{
    color: rgb(92,200,166);
    text-decoration: none;
}
section{
  position: relative;
  padding: 50px;
}

header{
  position: fixed; /*use "absolute" for non sticky header and remove background from .header.sticky*/
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 100px;
  align-items: center;
  transition: 1s;
}
header.sticky
{
  background: rgba(32, 32, 32, 0.9);
  padding: 20px 100px;
}

.logo h2{
  font-family: Alegreya Sans SC;
  letter-spacing: 5px;
  font-size: 2em;
  color: white;
  text-decoration: none;
}
.logo h2 span{
  background-image: linear-gradient(to left, rgb(242,22,103), rgb(242,116,5));
  border-radius: 1px;
}
.contentbox_left ol{
    padding: 0 0 0 20px;
}
.contentbox_left ul{
    padding: 0 0 0 20px;
}
/*coloring the Google Material Icon*/
.menu li a i{
  font-size: 1.5em;
  background: -webkit-linear-gradient(#f21667, #f27405);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: middle;
}
/*ICONS CSS*/
.grid_container_icons .grid_image_icons i
{
  display: block;
  position: relative;
  padding: 20px 0 20px 0;
  text-align: center;
  color: #0d0d0d;
  transition: 4s ease;
  font-size: 2em;
}
.grid_container_icons .grid_image_icons i:hover{
  text-shadow: 2px 2px 2px #f21667;
  color: #f29f05;
  transition: 0.5s;
  transform: scale(1.2);
}
.grid_container_icons{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 100px));
  grid-row-gap: 1px;
  grid-column-gap: 1px;
  /*margin-top: 80px;*/
}
.grid_container_icons .grid_image_icons{
  /*border: 1px solid #4d4d4d;*/
}

.toggle i{
  cursor: pointer;
}
header ul{
  position: relative;
  display: flex;
}
header ul li{
  font-family: Roboto Slab;
  font-size: 1.2em;
  position: relative;
  list-style: none;
}
header ul li a{
  position: relative;
  display: inline-block;
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}
header ul li a:hover{
  /*color: rgb(92,200,166);*/
  transition: 0.5s;
  transform: scale(1.1);
  border-bottom: 2px solid #f21667;
}

.banner{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shrink{
  min-height: 60vh;
}
.banner:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  background: linear-gradient(to top,rgb(32,32,32),transparent);
}
.banner .content{
  position: relative;
  max-width: 900px;
  text-align: center;
  /*padding-bottom: 20%;*/
  z-index: 1;
}
.btn{
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.1);
  width: 200px;
  text-align: center;
  /*background-image: linear-gradient(to right, rgb(242,159,5), rgb(242,116,5));*/
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  font-size: 1.2em;
  border-radius: 5px;
  transition: 0.5s;
}
.btn:hover{
  /*background-image: linear-gradient(to right, rgb(18,115,38), rgb(92,200,166));*/
  border-bottom: 2px solid rgb(92,200,166);
}

.banner .content h2{
  color: #fff;
  font-size: 4em;
  font-family: Roboto Slab;
  line-height: 1.5;
}
.banner .content h3{
  color: #fff;
  font-size: 2em;
  font-family: Roboto Slab;
  line-height: 1.5;
}
.banner .content p{
  color: #fff;
  font-size: 1.2em;
  font-family: Roboto;
  line-height: 1.5;
}
.fitbig{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  /*opacity: 0.8;*/
}
.about{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .contentbox{
  min-width: 50%;
  width: 50%;
  text-align: end;
  padding-right: 40px;
}
.titletext{
  font-family: Roboto Slab;
  font-weight: 600;
  color: #fff;
  font-size: 2em;
  margin-bottom: 10px;
}
.text{
  font-family: Roboto;
  color: #fff;
  font-size: 1em;
  line-height: 1.5;
}

.text_center{
  font-family: Roboto;
  color: #fff;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
}
.powerbiembed{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentbox_left{
  justify-content: center;
  width: 100%;
  padding: 0 15% 0 15%;
}
/*.image_center{
  height: auto;
  width: 100%;
  padding: 10px 0 10px 0;
}*/
.image_center{
    max-width: 100%;
    max-height: 90vh;
    margin: auto;
    overflow: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 10px 0 10px 0;
}
.contentbox_slider{
  justify-content: center;
  width: 100%;
  padding: 0 10% 0 10%;
  margin-top: 100px;
}

.subtitletext{
  color: rgb(242,159,5);
  font-size: 1.2em;
  font-family: Roboto;
}

.about .imagebox{
  position: relative;
  min-width: 50%;
  width: 50%;
  min-height: 1080px;
}
.map{
  margin: 80px 0 0 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.map iframe{
  border: 0;
  margin: -50px 0 0 0;
}
.banner2,
.banner3{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner2:before,
.banner3:before
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  background: linear-gradient(to top,rgb(32,32,32),transparent);
}
.banner2:after,
.banner3:after
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  background: linear-gradient(to bottom,rgb(32,32,32),transparent);
}
.destination{
  text-align: center;
}
.destination .content{
  text-align: center;
}
.destination .destinationlist{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.destination .destinationlist .box{
  position: relative;
  min-width: 350px;
  height: 480px;
  background: rgb(32,32,32);
  transition: 0.5s;
  margin: 10px;
}
.destination .destinationlist:hover .box{
  /*opacity: 0.7;*/
  transform: scale(1);
  filter: brightness(1.0);
}
.destination .destinationlist .box:hover{
  /*opacity: 1;*/
  transform: scale(1.04);
  filter: brightness(1.15);
}
.destination .destinationlist .box .imagebox{
  position: relative;
  width: 100%;
  height: 400px;
  opacity: 1;
}
.destination .destinationlist .box .content{
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(32,32,32,0.8);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.destination .destinationlist .box .content a{
  font-family: Roboto Slab;
  text-decoration: none;
  color: white;
  line-height: 1em;
}

/*Footer CSS*/
.footer{
  display: flex;
  width: 100%;
  min-height: 100px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .social{
  position: relative;
  display: flex;
}
.footer .social li{
  list-style: none;
}
.footer .social li a{
  text-decoration: none;
  margin: 0 20px;
}
.footer .social li a img{
  max-width: 50px;
  filter: brightness(0) invert(1);
  transition: 0.5s;
}
.footer .social li a img:hover{
  filter: brightness(1) invert(0);
  /*box-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;*/ /*THIS IS CODE TO MAKE CONTENT GLOW*/
}

.copyrighttext{
  margin-top: 20px;
  font-family: Roboto;
  color: white;
  font-size: .8em;
  font-weight: 300;
  text-align: center;
}
.copyrighttext a{
  color: white;
  text-decoration: none;
  transition: 0.5s;
}
.copyrighttext a:hover{
  color: rgb(91,200,166);
}

/*End of Footer CSS*/


.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    /*margin: 80px 0 0 0;*/
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100vh;
    width: 100%;
    position:absolute;
}

/*slider CSS*/
.slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: rgb(32,32,32);
}
.slider .slider_image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*transition: 0.5s;*/
  transition: transform 1s;
  /*transition-delay: 0s;*/
  z-index: 1;
  /*clip-path: circle(0px at center);*/
  transform: rotateY(90deg);
  transform-origin: left;
}
.slider input[type="radio"]:checked + .slider_image{
  z-index: 10;
  /*clip-path: circle(1500px at center);
  transition-delay: 0.75s;*/
  transition: transform 1s;
  transform: rotateY(0deg);
  transform-origin: right;
}
.slider .slider_image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slider_image .slider_content{
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-top: 30%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(2px);
  box-shadow: 0 5px 15px 0 rgba(32,32,32,0.5);
  padding: 20px;
}
.slider .slider_image .slider_content h2{
  font-size: 6em;
  line-height: 1em;
  font-family: Roboto Slab;
  color: white;
}

.slider .slider_image .slider_content p{
  font-size: 1em;
  font-family: Roboto;
  color: white;
}

.slider .slider_image .slider_content a{
  position: relative;
  display: inline-block;
  background: rgba(255,255,255,0.2);

  font-size: 1em;
  font-family: Roboto;
  color: black;
  font-weight: 500;
  margin-top: 20px;
  padding: 10px 30px;
  backdrop-filter: blur(2px);
}

.slider input[type="radio"]{
  position: relative;
  z-index: 1000;
  margin: 5px;
  margin-bottom: 40px;
  outline: none;
  cursor: pointer;
}

.slider input[type="radio"]:checked ~ .slider_image img{
  animation: animate 20s linear infinite;
}

@keyframes animate {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1);
  }
}

/***Pagination Styling***/

.pagination {
  display: flex;
  justify-content: center;
}

.pagination a {
  color: white;
  font-family: Roboto Slab;
  font-size: 1.3em;
  float: left;
  padding: 6px 16px;
  margin: 20px;
  text-decoration: none;
  transition: background-color .5s;
}

.pagination a.active {
  background-color: rgb(242,22,103);
  color: white;
  border-radius: 5px;
}

.pagination a:hover:not(.active) {
    background-color: rgb(18,115,38);
    border-radius: 5px;
    }

/***Pagination Styling***/

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 3px;
  background: black;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 3px;
  background: rgb(242,116,5);
  width: 0%;
}

/*GRID CSS*/
.grid_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-row-gap: 3px;
  grid-column-gap: 3px;
}
.grid_container .grid_image{
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  break-inside: avoid;
}
.grid_container .grid_image img{
  display: block;
  width: 100%;
  transition: 0.7s ease;
  filter: grayscale(1);
}

.grid_container .grid_image img:hover{
  transition: 0.7s ease;
  transform: scale(1.2);
  filter: grayscale(0);
}

.grid_container .grid_image a{
  display: block;
  position:absolute;
  left:0;
  bottom:0;
  z-index: 1000;
  font-family: Roboto;
  font-size: 1em;
  text-decoration: none;
  text-align: right;
  color: white;
  padding: 5px 15px 5px 5px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(15px);
  width: 100%;
}

.grid_container .grid_image i:hover{
  color: #f27405;
}
.grid_container .grid_image p{
  display: block;
  position: relative;
  font-family: Roboto;
  font-size: 1.5em;
  line-height: 1.5em;
  color: #5cc8a6;
  padding: 50px;
  width: 100%;
  text-align: center;
}

/*lightbox CSS*/
.lightbox{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #202020;
  margin-left: -10%;
  margin-right: -10%;
}

.lightbox .box_lb{
  position: relative;
  width: 350px;
  height: 350px;
  background: #f54585;
  margin: 10px;
  overflow: hidden;
  border-radius: 5px;
}

.lightbox .box_lb .imagebox_lb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(32,32,32);
}

.lightbox .box_lb .imagebox_lb.active{
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox .box_lb .imagebox_lb img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

.lightbox .box_lb .imagebox_lb img:hover{
transition: 0.5s;
transform: scale(105%);
filter: saturate(130%);
}

.lightbox .box_lb .imagebox_lb.active img{
  position: absolute;
  top: 100px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 125px);
  object-fit: contain;
}

.lightbox .box_lb .imagebox_lb .content_lb{
  position: absolute;
  bottom: 25px;
  right: 25px;
  left: 25px;
  color: white;
  font-family: Roboto;
  font-size: 1em;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.5);
  padding: 15px;
  line-height: 150%;
  transform: translateY(100%);
  backdrop-filter: blur(1px);
}

.lightbox .box_lb .imagebox_lb .content_lb a{
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 100;
  color: white;
}

.lightbox .box_lb .imagebox_lb.active .content_lb{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: 0.8s;
}

.location{
  font-size: 0.9em;
  color: #5cc8a6;
}

/*video auto play*/
section video{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1000;
  margin: 0;
  filter: opacity(1);
  border-radius: 5px;
}

.autovideo{
  position: relative;
  padding: 0px;
  margin-bottom: 50px;
}

.centered-video {
        display: block;
        margin: 0 auto;
        margin-top: 5%;
        width: 80%; /*  Set a width for the video to be centered */
}

.embed-video {
        display: block;
        margin: 0 auto;
        margin-top: 2%;
        width: 100%; /*  Set a width for the video to be centered */
}

/*Google Map*/
#gmap{
    height: 90vh;
    width: 100%;
    background-color: rgb(92,200,166);
    margin: -50px 0 0 0;
}
#pop_body{
    font-family: Roboto;
    font-size: 1em;
    color: rgb(32,32,32);
}
a[id|=poplink]{
    font-family: Roboto Slab;
    font-size: 1em;
    color:rgb(242,116,5);
    text-decoration: none;
}
a[id|=poplink]:hover{
    color:rgb(242,22,103);
}

/*lens specs*/
#label{
    font-family: Roboto;
    color: white;
    padding: 5px;
    background: rgba(255,255,255,0.1);
    font-size: 0.9em;
}
#data{
    font-family: Roboto;
    color: #5cc8a6;
    padding: 5px;
    font-size: 0.9em;
}

/*about page*/
.aboutme{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(images/about/sandeep.jpg);
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
}

.oslo{
  background: url(images/oslo/oslo_3.jpg);
  background-position: center;
}

.aboutme .frost_box{
  position: relative;
  max-width: 800px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  border-bottom: 2px solid #f21667;
  background: rgba(32,32,32,0.5);
  backdrop-filter: blur(15px);
  color: white;
  font-family: Roboto;
  line-height: 150%;
}

.aboutme .frost_box h2{
  font-weight: 700;
  font-family: Roboto Slab;
  padding-bottom: 15px;
}

/*Filter Format*/

.filter_btn{
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}
.filter_btn ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
.filter_btn li{
  display: inline-block;
  list-style: none;
  background: rgb(242,159,5);
  padding: 8px 20px;
  font-family: Roboto Slab;
  letter-spacing: 1px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.filter_btn ul li.active{
  background: rgb(242,22,103);
  color: white;
}

.box_lb.hide{
  display: none;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 41%;
  padding: 5px;
}
.column img{
  border-radius: 5px;
}
.column2 {
  float: left;
  width: 9%;
  padding: 5px;
}
/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/*PS Travel Caroussel */
    .slides{
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      position: relative;
      background: #121212;
      height: 90vh;
      overflow: hidden;
      border-radius: 10px;
    }
    .slides::after{
      content:'';
      position: absolute;
      inset: 0;
      z-index: 10;
      background-color: rgba(0,0,0,0.3);
    }
    .slide{
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: slide 24s infinite;
      animation-delay: var(--delay);
    }
    /*.slide{
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: slide 20s infinite;
    }
    .slide:nth-child(2){
      animation-delay: 4s;
    }
    .slide:nth-child(3){
      animation-delay: 8s;
    }
    .slide:nth-child(4){
      animation-delay: 12s;
    }
    .slide:nth-child(5){
      animation-delay: 16s;
    }*/
    .slide-img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    @keyframes slide
    {
      0%,100%
      {
        opacity: 0;
      }
      20%
      {
        opacity: 1;
        transform: scale(1.05);
      }
      30%
      {
        opacity: 0;
        transform: scale(1.05);
      }
    }


/*Modal Design*/
.gallery {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  width: 90%;
  max-width: 1200px;
}

@media only screen and (max-width: 1100px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-auto-rows: 200px;
  }
}

@media only screen and (max-width: 900px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 175;
  }
}

@media only screen and (max-width: 700px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 150px;
  }
}

@media only screen and (max-width: 550px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-wrapper .wide {
    grid-column: span 2;
  }
  .gallery-wrapper .xl-wide {
    grid-column: span 3;
  }
  .gallery-wrapper .tall {
    grid-row: span 2;
  }
  .gallery-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-wrapper .xl-big {
    grid-column: span 3;
    grid-row: span 2;
  }
}

@media only screen and (max-width: 400px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 100px;
  }
}

.gallery-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: 0.25s all;
}

.gallery-wrapper > div:hover {
  padding: 4px;
  transition: 0.25s all;
  filter: brightness(1.1);
  cursor: pointer;
}

.gallery-wrapper > div > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-sizing: border-box;
}

.gallery-wrapper:hover > div > img{
  filter: grayscale(100%);
}

.gallery-wrapper > div > img:hover{
  filter: grayscale(0%);
}

.gallery-wrapper .wide {
  grid-column: span 2;
}
.gallery-wrapper .xl-wide {
  grid-column: span 3;
}
.gallery-wrapper .tall {
  grid-row: span 2;
}
.gallery-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wrapper .xl-big {
  grid-column: span 3;
  grid-row: span 2;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  max-width: 90%;
  max-height: 75vh;
  border: 1px solid darkgray;
  border-radius: 10px;
  object-fit: contain;
}

.close {
  position: absolute;
  z-index: 1000;
  top: 50%;
  right: 10%;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/*end of modal design*/

/*Begin December 2025 Lightbox Design*/

/* --- MASONRY GRID --- */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 20px 60px 20px;
}
/* CSS Column Masonry - The modern way to handle mixed aspect ratios */
/*.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}*/
/* * CHRONOLOGICAL GRID FIX:
         * Replaced column-count (Masonry) with display: grid for row-based flow.
         */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 10px;
}
.gallery-item {
    break-inside: avoid; /* Prevents image from being cut across columns */
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 5px;
    background-color: #2a2a2a; /* Placeholder while loading */
    /* Ensure fixed aspect ratio for clean grid layout, 4:3 landscape */
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%; /* Fill the fixed height of the item */
    display: block;
    object-fit: cover; /* Crucial for maintaining aspect ratio and filling space */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Initial slight grayscale for artistic feel, full color on hover */
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* Overlay text on hover (Optional, adds context) */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    pointer-events: none;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'Montserrat', serif;
    letter-spacing: 0.05em;
}

.overlay p {
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* --- LIGHTBOX NUVO --- */
.lightbox_nuvo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox_nuvo.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox_nuvo-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border-radius: 7px;
    border: solid #fff;
}

.lightbox_nuvo-image {
    max-width: 100%;
    max-height: 70vh; /* Ensure it fits in viewport height */
    display: block;
    object-fit: contain;
    border-radius: 7px;
    z-index: 1001;
}

.lightbox_nuvo-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgb(242,22,103);
    font-family: 'Montserrat', serif;
    font-size: 1.0rem;
    letter-spacing: 0.05em;
}

/* Lightbox Controls */
.lightbox_nuvo-close {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1000;
}

.lightbox_nuvo-prev, .lightbox_nuvo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    opacity: 0.6;
    transition: all 0.2s;
    user-select: none;
    z-index: 1001;
}

.lightbox_nuvo-prev:hover, .lightbox_nuvo-next:hover, .lightbox_nuvo-close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1); /* Slight grow */
}

/* Reset transform for close button */
.lightbox_nuvo-close:hover {
    transform: scale(1.1);
}

.lightbox_nuvo-prev { left: 20px; }
.lightbox_nuvo-next { right: 20px; }

/* --- RESPONSIVE December 2025--- */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
  .lightbox_nuvo {
      padding: 0 10px 0 10px;
  }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }
    .lightbox_nuvo-prev, .lightbox_nuvo-next {
        padding: 10px;
        font-size: 1.5rem;
    }
    .lightbox_nuvo {
        padding: 0 10px 0 10px;
    }
}





/*=============================================*/
/* Media Query*/

@media (max-width: 767px){
section
{
  padding: 40px;
}
header,
header.sticky
{
  padding: 20px 15px;
  z-index: 1000;
}
.menu{
  position: fixed;
  top: 80px;
  left: -100%;
  display: block;
  padding: 100px 50px;
  text-align: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
  z-index: 999;
  border-top: rgb(255,255,255);
}
.menu.active{
  left: 0;
}
header ul li a{
  margin-bottom: 20px;
}
.toggle{
  width: 40px;
  height: 40px;
  background: url(images/open.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  cursor: pointer;
}
.toggle.active{
  background: url(images/closed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  cursor: pointer;
}
.logo h2 {
    font-size: 1.4em;
  }
.menu i{
  font-size: 2em;
}
.banner .content h2
{
  font-size: 2.5em;
}
.banner .content p
{
  font-size: 1em;
}
.about{
  flex-direction: column;
}
.about .contentbox,
.about .imagebox
{
  min-width: 100%;
  width: 100%;
  text-align: center;
  padding-right: 0px;
}
.contentbox h2,
.contentbox_left h2{
  font-size: 1.5em;
}
.text{
  font-size: 1em;
}
.about .imagebox
{
  min-height: 250px;
}
.btn{
  margin-bottom: 30px;
}
.destination .destinationlist .box
{
  position: relative;
  max-width: 350px;
  min-width: inherit;
  width: 350px;
  height: 400px;
}
.destination .destinationlist .box .imagebox
{
  height: 320px;
}
.footer .social li a img{
  max-width: 40px;
}
.copyrighttext {
    font-size: 0.8em;
}
.lightbox{
  margin-top: 0px;
}
.aboutme .frost_box{
  font-size: 0.9em;
  padding: 15px;
}
.slider .slider_image .slider_content h2 {
    font-size: 2em;
}
.slider .slider_image .slider_content p {
    font-size: 0.9em;
    margin-top: 10px;
}
.grid_container_icons{
  margin-top: 50px;
}
.contentbox_left {
    padding: 0 5% 0 5%;
}
.pagination a {
  font-size: 1em;
}
.column {
  float: left;
  width: 48%;
  padding: 2px;
}
.column2 {
  float: left;
  width: 2%;
  padding: 2px;
}
}
