@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&family=Montserrat:wght@700&family=Poppins&family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
body{
    margin: 0;
    padding: 0 0 100px 0;
    font-family: 'Poppins', sans-serif;
    background: rgb(241, 241, 241);
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Bangers', sans-serif;
    letter-spacing: 2px;
}
#container{
    width: 100%;
}
.separator{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    border-top: 1px groove #d84315;
    margin: 75px 0;
}
/* Banner Banner Banner Banner Banner Banner Banner Banner Banner Banner */
#banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}
#banner a{
    text-decoration: none;
}
#banner #logo{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#banner #logo img{
    width: auto;
    height: 100%;
    border-radius: 50%;
}
#banner ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
#banner ul li{
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
}
#banner ul li::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 8px;
    background: linear-gradient(60deg, rgb(255, 83, 83), rgb(22, 22, 22) 100px);
    opacity: .5;
    z-index: -1;
    transition: .3s;
}
#banner ul li:hover{
    color: #f1f1f1;
    transform: scale(1.1);
}
#banner ul li:hover::before{
    opacity: 1;
}

#burger_menu{
    width: 40px;
    height: 25px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 999;
}
#burger_menu .burger_line{
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: all .4s;
}
#burger_menu_conent{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translatey(-100%);
    transition: all .4s;
}
#burger_menu_conent ul{
    width: 100%;
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    padding: 0;
    margin-top: 40px;
}
#burger_menu_conent ul li{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgb(32, 32, 32);
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
#burger_menu_conent ul li:hover{
    color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}




#landing_background{
    width: 100%;
    height: 60vh;
    background: url(/img/background_galeri.webp) center center no-repeat fixed;
    background-size: cover;
    position: relative;
    box-shadow: inset 0 -10px 50px -10px rgba(0, 0, 0, 1),
                inset 0 -35px 40px -10px rgba(0, 0, 0, 1)
}
#landing_background h1{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
}
#landing_background p{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    width: 95%;
    text-align: center;
}

#galeria_content {
    width: 100%;
    padding: 100px 10%;
    box-sizing: border-box;
    box-shadow: inset 0 25px 10px -10px rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.galerii_item {
    flex: 20%;
    width: fit-content;
    margin: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    height: 325px;
    position: relative;
    transition: .3s;
    cursor: pointer;
    min-width: 230px;
}

.galerii_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galerii_item:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


#galeria_clicked_photo_blured_background{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; 
    z-index: 1000;

}
#galeria_clicked_photo{
    width: fit-content;
    height: 80vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
#galeria_clicked_photo img{
    width: auto;
    height: 100%;
    object-fit: cover;
}
#x_icon{
    z-index: 1001;
    width: 100px;
    height: 100px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
}
#scroll_left, #scroll_right{
    width: 80px;
    height: 80px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    color: #fff;
    font-size: 2.5rem;
}
#scroll_left{
    left: 40px
}
#scroll_right{
    right: 40px
}

#loading_screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #fff;
    font-size: 3rem;
    letter-spacing: 3px;
}
@media screen and (max-width: 1024px){
    #burger_menu{
        display: flex;
    }
    #banner ul{
        display: none;
    }
    #lading_page{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    #landing_content{
        align-items: center;
        min-width: unset;
        width: 100%;
    }
    #landing_background p{
        top: 60%;
    }
    #banner{
        padding: 5px 10px;
    }
}
@media screen and (max-width: 700px){
    #landing_content h2{
        font-size: 6.7vw;
    }
    #landing_content p{
        font-size: 3vw;
    }
    #landing_content{
        padding: 0 5px;
    }

    #galeria_clicked_photo{
        display: none;
    }
    #galeria_clicked_photo_blured_background{
        display: none;
    }
}
@media screen and (max-width: 450px){
    .galerii_item{
        width: 300px;
        flex:none;
    }
}