/* ==================================================
   HOME PORTFOLIO
   NETPROG.CH
================================================== */


/* ==================================================
   SECTION
================================================== */

.home-portfolio{

    padding:70px 0;

    background:#ffffff;

}


/* ==================================================
   HEADING
================================================== */

.home-portfolio .section-heading{

    max-width:860px;

    margin:0 auto 70px;

    text-align:center;

}

.home-portfolio .section-heading p{

    max-width:760px;

    margin:0 auto;

}


/* ==================================================
   SLIDER
================================================== */

.portfolio-slider{

    position:relative;

    display:flex;

    align-items:center;

    gap:30px;

    margin-top:60px;

}

.portfolio-viewport{

    flex:1;

    overflow:hidden;

    border-radius:26px;

}

.portfolio-track{

    display:flex;

    will-change:transform;

    transition:transform .65s cubic-bezier(.22,.61,.36,1);

}

.project-card{

    flex:0 0 100%;

    min-width:100%;

}


/* ==================================================
   CARD
================================================== */

.project-card{

    overflow:hidden;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.08);

    border-radius:24px;

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}


/* ==================================================
   IMAGE
================================================== */

.project-image{

    max-height:220px;
    overflow:hidden;
    

}

.project-image img{

    display:block;

    width:100%;

    height:auto;

    transition:transform .6s ease;

}

.project-card:hover .project-image img{

    transform:scale(1.04);

}


/* ==================================================
   CONTENT
================================================== */

.project-content{

    padding:22px;

}

.project-content h3{

    margin-bottom:13px;

    font-size:2rem;

}

.project-content p{

    margin-bottom: 18px;

    line-height:1.7;

    color:var(--text-light);

}


/* ==================================================
   TAGS
================================================== */

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.project-tags span{

    padding:7px 14px;

    background:#f5f7fb;

    border:1px solid rgba(15,23,42,.08);

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

}


/* ==================================================
   NAVIGATION
================================================== */

.portfolio-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:var(--primary-color);

    box-shadow:0 12px 30px rgba(15,23,42,.10);

    cursor:pointer;

    transition:.3s ease;

    flex-shrink:0;

}

.portfolio-nav:hover{

    background:var(--primary-color);

    color:#ffffff;

    transform:translateY(-3px);

}


/* ==================================================
   PAGINATION
================================================== */

.portfolio-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:22px;

}

.portfolio-pagination button{

    width:12px;

    height:12px;

    border:none;

    border-radius:999px;

    background:#d6dce7;

    cursor:pointer;

    transition:.3s ease;

}

.portfolio-pagination button.active{

    width:34px;

    background:var(--accent-color);

}


/* ==================================================
   BUTTON
================================================== */

.home-portfolio .section-button{

    margin-top:60px;

    text-align:center;

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width:991px){

    .portfolio-slider{

        gap:18px;

    }

    .portfolio-nav{

        width:48px;

        height:48px;

    }

}


@media (max-width:768px){

    .home-portfolio{

        padding:80px 0;

    }

    .home-portfolio .section-heading{

        margin-bottom:50px;

    }

    .portfolio-slider{

        margin-top:50px;

        gap:0;

    }

    .portfolio-nav{

        display:none;

    }

    .project-content{

        padding:28px;

    }

    .project-content h3{

        font-size:1.7rem;

    }

    .home-portfolio .section-button{

        margin-top:50px;

    }

}