/* ===========================
   PORTFOLIO
=========================== */

/* ===========================
   PORTFOLIO
=========================== */

.portfolio {

    display: flex;

    flex-direction: column;

    align-items: center;

    transform-origin: top center;

    animation:
        cardPop .45s cubic-bezier(.34,1.56,.64,1);

}

/* ===========================
   TABS
=========================== */

.portfolio-tabs {

    display: flex;

    gap: 8px;

    margin-bottom: -2px;

    z-index: 5;

}


.portfolio-tab {

    padding: 10px 22px;

    border: none;

    border-radius: 16px 16px 0 0;

    background: #D6B899;

    color: #5D3516;

    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;

    cursor: pointer;

    transition: .2s ease;

}


.portfolio-tab.active {

    background: #FFF8E6;

}


.portfolio-tab:hover {

    transform: translateY(-2px);

}



/* ===========================
   CLIPBOARD
=========================== */

.clipboard {

    position: relative;

    width: 100%;

    max-width: 900px;

    z-index: 1;

}



/* ===========================
   CLIP
=========================== */

.clipboard-clip {

    position: absolute;

    left: 50%;

    top: -18px;

    transform: translateX(-50%);

    width: 180px;

    height: 34px;

    background: #C8B9A4;

    border-radius: 0 0 14px 14px;

    z-index: 3;

}



/* ===========================
   PAPER
=========================== */

.clipboard-paper {

    position: relative;

    background: #FFF8E6;

    border: 1px solid #dac5b5;

    border-radius: 22px;

    padding: 50px 35px;


    background-image:
        radial-gradient(
            rgba(93,53,22,.03) 1px,
            transparent 1px
        );

    background-size: 10px 10px;

    z-index: 2;

}



/* ===========================
   GALLERY
=========================== */

.gallery {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}



/* ===========================
   GALLERY ITEM
=========================== */

.gallery-item {

    position: relative;

    background: #FFF8E6;

    border-radius: 16px;

    padding: 12px;

    transition: .25s ease;

}


.gallery-item:hover {

    transform: translateY(-2px);


}


.gallery-item img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: 12px;

}


.gallery-item h3 {

    margin-top: 10px;

    text-align: center;

    color: #5D3516;

    font-size: 1rem;

}



/* ===========================
   PRICE TAG
=========================== */

.price-tag {

    position: absolute;

    top: 10px;

    right: 10px;

    padding: 6px 12px;

    background: #B96A59;

    color: #FFF8E6;

    border-radius: 999px;

    font-size: .8rem;

    font-weight: 700;

    z-index: 4;

    transform: rotate(5deg);

}



/* ===========================
   BOOKMARK
=========================== */
.clipboard-bookmark {

    position: absolute;

    right: 45px;

    bottom: -70px;

    width: 36px;

    height: 80px;

    background: #B96A59;

    z-index: 0;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        50% 100%,
        0 80%
    );

}