*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

.head-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
    font-size: 26px;
    padding-left: 40px;
    color: white;
    font-family: "Yeseva One";
    position: relative;
    text-shadow: 0 0 10px #000;
  }
  
  .head-content h1{
    margin-bottom: 20px;
    text-align: center;
  }
  .head-content a{
    color: #fff;
  }
  .head-content p{
    font-size: 20px;
  }
  
  @media(max-width:900px){
    .head-content{
      padding-left: 0;
      align-items: center;
    }
    #gallery-header{
        justify-content: center;
        align-items: center;
      }
  }
  
  @media(max-width:750px){
    .head-content{
      font-size: 25px
    }
  }
  

#gallery-header{
    background: linear-gradient(rgb(0, 0, 0, .7), rgb(0, 0, 0, .4), rgb(0, 0, 0, .9)), 
    url("/images/grand\ luxotica\ 5.jpg");
    background-size: cover;
    background-position: center;
}


.Gallery-page-sec{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-block    :20px;
}


.gallery-box{
    min-width: 400px;
    height:400px;
    position: relative;
    overflow: hidden;
}

.gallery-image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.about-hotel{
    position: absolute;
    bottom: -100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    left: 1%;
    padding-inline: 20px;
    /* background: #000; */
    color: #fff;
    padding: 20px;
    z-index: 8;
    border-radius: 10px;
    transition: all ease .3s;
}
.about-hotel h1{
    font-size: 20px;
}
.about-hotel p{
    font-size: 20px;
}

.gallery-box:hover .about-hotel{
    bottom: 0px;
}

.gallery-overlay{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 550;
    background: #0000008f;
    scale: 0;
    transition: all ease .3s;
    height: 100%;
    width: 100%;
}
.gallery-overlay h2{
    font-size: 60px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: none;
    cursor: pointer;
}

.gallery-box:hover .gallery-overlay{
    scale: 1;
}

.large-view-cover{
    width: 100vw;
    box-sizing: border-box;
    height: 100vh;
    background: #0000006c;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* scale: 0; */
    transition: all ease .3s;
    z-index: 999;
    transform: scaleY(0);
}


.gallery-large-view{
    width: 90vw;
    height: 90vh;
    position: relative;
    border-radius: 20px;
    transition: all ease .3s;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 60%) 0px 0px 12px 0px;
}
.gallery-large-view img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.close-icon{
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;

}
.close-icon i{
    font-size: 50px;
    color: #fff;
}


@media(max-width:600px){
    .gallery-box{
        min-width: 90vw;
        height:90vw;
    }

    .overlay h1{
        font-size: 40px;
    }
}