@charset "UTF-8";

:root{
    --light-green:#d5edeb;
    --green:#63dbd0;
    --brown:#403632;
    --light-grey:#eee;
    --white:#fff;
    --oswald-font:'oswald'sans-serif;
}

body{
    color: var(--brown);
    background: url(../gallery/haru.png) no-repeat right bottom / cover fixed;
    text-align: center;
}

/*LOADING*/
#loading{
    background-color: var(--light-grey);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}
#loading-screen{
    background-color: var(--light-green);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}
#loading p{
    font-size: 2rem;
    font-family: var(--oswald-font);
}
p{
    line-height: 1.7;
}
img{
    max-width: 100%;
}

/*common*/


    img{
        max-width: 100%;
    }

.title{
    font-family: var(--oswald-font);
    font-size: min(10vw,4rem);
    margin-bottom: 2rem;
}
.btn{
    color: var(--white);
    background: var(--brown);
    border: 1px solid var(--brown);
    text-decoration: none;
    padding: 1rem;
    display: inline-block;
    margin: 2rem 0;
    transition: .4s;
}


/*LAYOUT*/
.wrapper{
    max-width: 38rem;
    margin: auto;
    padding: 0 1rem;
}


/*HERO*/
.hero{
    height: 100vh;
    position: relative;
}
.hero::after{
    content: '';
    width: 100%;
    height: 100vh;
    background: url(../gallery/peki.jpg) no-repeat center / cover;
    position: absolute;
    inset:0;
}
.hero .title-1{
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    width: 100%;
    font-size: max(12vw,3rem);
    line-height: 1.2;
    color: #fff;
}

/*concept*/
.concept{
    margin: 8rem 0;
    background: linear-gradient(
        to right,
    
        transparent 0%,
        transparent 20%,
        var(--light-grey)20%,
        var(--light-grey)100%
        );
    
};
.concept p{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 20px;
}

/*gallery*/
.gallery{
    display: flex;
    flex-direction: column-reverse;
}
.gallery-image{
    margin: auto;
    position: relative;
}
.gallery-image::after{ 
    display: block;
    content: '';
    width: calc(100% - 2rem);
    height: calc(100% - 2.5rem);
    z-index: 3;
    border: 3px solid var(--white);
    top:1rem;
    left: 1rem;
    position: absolute;
 } 
.gallery-image img{
    object-fit: cover;
    width: 100vh;
}
.gallery-thumbnails{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3,1fr);
    list-style: none;
    margin: 1rem 0;
}
.gallery-thumbnails img{
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
}

/*SHOP INFO*/
.shop{
    background: url(../gallery/mimoza.png) no-repeat center top / cover;
    margin-top: 16rem;
    position: relative;
    height: 40rem;
}
.shop-content{
    background: var(--white);
    padding: 3rem;
    position: absolute;
    top: -8rem;
    width: 90vw;
    left: 0;
    right: 0;
}
.shop .title-2{
    margin: 1rem 0;
    padding-top: 2rem;
    font-weight: normal;
    border-top: 1px solid var(--light-grey);
}

/*DESKTOP SIZE*/
@media (min-width:800px){
    

    /*common*/
    .title{
        margin-bottom: 3rem;
    }
    .btn:hover{
        color: var(--brown);
        background: var(--light-green);
    }

/*SLIDE MENU*/
.btn-menu:hover{
    background-color: var(--light-green);
}
#menu-close:hover svg{
    fill:var(--brown);
}
.menu-list a:hover{
    transition: .4s;
    color: var(--green);
}

/*CONCEPT*/
.concept{
    display: flex;
    margin: 16rem 0;
}
.concept p{
    text-align-last:left;
}
.concept img{
    margin: -6rem 0;
    max-width: 38rem;
}

/*GALLERY*/
.gallery{
    flex-direction: row;
}
.gallery-image{
    margin: 0;
}
.gallery-image img{
    height: 100vh;
}
.gallery-content{
    width: 30vw;
}
.gallery-thumbnails{
    gap: 2vw;
    grid-template-columns: repeat(3,1fr);
}
.gallery-thumbnails img:hover{
    box-shadow: 0 0 1rem rgba(0, 0, 0, .4);
    transition: .4s;
}

/*SHOP*/
.shop{
    margin-top: 20rem;
    height: 50rem;
}
}


