/* ------------------------------------------ 

    please don't copy my code!! ::>_<::

 ------------------------------------------ */

 /* FONTS ------------------------------------------ */
@font-face {
    font-family: basiic;
    src: url("/resources/fonts/basiic_byCINNI.ttf");
}

@font-face {
    font-family: KTEGAKI;
    src: url("/resources/fonts/Cocon-Regular-Font.otf");
}

@font-face {
    font-family: Bohemian-Soul;
    src: url("/resources/fonts/Bohemian\ Soul.otf");
}


 /* GENERAL ------------------------------------------ */
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    align-content: center;
    justify-items: center;

    background-image: url("/resources/bg/tiled-bg1.gif");
    font-family: basiic;
 }

 h1 { font-size: 2em;}
 h1, h2 , h3 , h4 { font-family: Bohemian-Soul;}
 h3 , h4 { font-weight: lighter;}

/* LAYOUT ------------------------------------------ */
#nav { grid-area: nav;}
.collection {grid-area: collection;}

#main-container {
    width: 1550px;
    height: 860px;

    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-areas:'nav collection';
}

/* NAVIGATION ------------------------------------------ */
#nav {
    background-color: white;
    border: 2px solid #b3a7a7;
    margin: 1em;
    padding: 4em 2em;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

nav > button , nav > a > button {
    background-color: #b3a7a7;
    color: white;
    font-weight: bold;
    font-size: 1em;
    border: none;
    border-radius: .3em;
    padding: 1em;
    width: 140px;
}

nav > button:hover , nav > a:hover {
    transform: scale(1.1);
    transition: .1s;
    cursor: pointer;
}

nav > a > button:hover {
    cursor: pointer;
}

/* COLLECTION ------------------------------------------ */
.collection {
    background-color: white;
    border: 2px solid #b3a7a7;
    margin: 1em;
    padding: 2em;
    overflow-y: auto;
}

#idv { display: none;}
#wishlist { display: none;}

#index > img { width: 32%;}

/* MINI COLLECTION ------------------------------------------ */
.inner-collection {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 2em;
    justify-self: center;

    padding: 1em;
    margin: 1em 0em 4em 0em;

    width: 1060px;
    min-height: 200px;
    max-height: 550px;
    overflow-y: auto;
    border: 2px dashed #b3a7a7;
}

/* ITEM ------------------------------------------ */
.item {
    background-size: cover;
    width: 230px;
    height: 230px;
    align-content: center;
    justify-items: center;

    text-decoration: none;
    color:#361212;
    border-radius: .2em;
}

/* ITEM INFO ------------------------------------------ */
.info {
    display: none;
    width: 200px;
    height: 200px;
    overflow-y: auto;
    padding: .5em;
    background-color: #f5f0ebcb;
}

.item:hover > .info { display: block;}

h3 , h4 , h5 , p { margin: .8em 0;}
.info > p { line-height: 1.5em;}

.info > p:not(.review) { font-weight: bold;}