/*==================================================
            PORTFOLIO PAGE
            YOGA FOTO STATION
==================================================*/

:root{
    --gold:#d4af37;
    --gold-light:#f4d46a;
    --dark:#0f0f0f;
    --card:#181818;
    --border:#2a2a2a;
    --white:#ffffff;
    --gray:#bdbdbd;
}

/*==================================================
                HERO
==================================================*/

.portfolio-hero{
    padding:120px 20px 80px;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("../images/portfolio-banner.jpg") center/cover;
    text-align:center;
    color:#fff;
}

.portfolio-hero h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--gold);
}

.portfolio-hero p{
    font-size:20px;
    color:#ddd;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/*==================================================
                FILTER
==================================================*/

.portfolio-filter{
    background:#111;
    padding:50px 20px;
}

.search-box{
    max-width:700px;
    margin:0 auto 35px;
    position:relative;
}

.search-box input{
    width:100%;
    padding:16px 60px 16px 20px;
    border:1px solid #333;
    border-radius:50px;
    background:#1b1b1b;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.search-box input:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 12px rgba(212,175,55,.35);
}

.search-box i{
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    color:var(--gold);
    font-size:18px;
}

.event-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.event-filter button{
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    background:#222;
    color:#ddd;
    transition:.3s;
    font-weight:600;
}

.event-filter button:hover,
.event-filter button.active{
    background:var(--gold);
    color:#111;
}

/*==================================================
                GRID
==================================================*/

.portfolio-section{
    background:#0f0f0f;
    padding:80px 20px;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/*==================================================
                CARD
==================================================*/

.portfolio-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.30);
}

.portfolio-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 18px 45px rgba(212,175,55,.15);
}

.portfolio-image{
    height:430px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-content{
    padding:25px;
}

.event-badge{
    display:inline-block;
    padding:8px 16px;
    background:rgba(212,175,55,.15);
    color:var(--gold);
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.portfolio-content h3{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
}

.portfolio-content p{
    color:#bdbdbd;
    line-height:1.7;
    margin-bottom:15px;
}

.portfolio-content small{
    display:block;
    color:#999;
    margin-bottom:25px;
}

.portfolio-content small i{
    color:var(--gold);
    margin-right:8px;
}

/*==================================================
                BUTTON
==================================================*/

.view-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    padding:15px;
    border-radius:12px;
    background:var(--gold);
    color:#111;
    font-weight:700;
    transition:.3s;
}

.view-btn:hover{
    background:var(--gold-light);
    transform:translateY(-2px);
}

/*==================================================
                EMPTY
==================================================*/

.no-albums{
    grid-column:1/-1;
    text-align:center;
    color:#999;
    font-size:22px;
    padding:80px 20px;
}

/*==================================================
                ANIMATION
==================================================*/

.portfolio-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .portfolio-hero h1{
        font-size:46px;
    }

    .portfolio-image{
        height:380px;
    }

}

@media(max-width:768px){

    .portfolio-hero{
        padding:90px 20px 60px;
    }

    .portfolio-hero h1{
        font-size:38px;
    }

    .portfolio-hero p{
        font-size:17px;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .portfolio-image{
        height:340px;
    }

    .event-filter{
        justify-content:flex-start;
    }

    .event-filter button{
        font-size:14px;
        padding:10px 18px;
    }

}

@media(max-width:480px){

    .portfolio-image{
        height:300px;
    }

    .portfolio-content{
        padding:20px;
    }

    .portfolio-content h3{
        font-size:22px;
    }

}

/*==========================================
        IMAGE LOADING
==========================================*/

.portfolio-image img{

    opacity:0;

    transition:opacity .4s ease;

}

.portfolio-image img.loaded{

    opacity:1;

}

/*==================================
Customer Portfolio
==================================*/

.customer-portfolio-section{

padding:100px 0;

background:#0f0f0f;

}

.customer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

margin-top:60px;

}

.customer-card{

background:#1b1b1b;

border-radius:20px;

overflow:hidden;

transition:.35s;

border:1px solid rgba(255,255,255,.05);

}

.customer-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.customer-image{

height:260px;

overflow:hidden;

}

.customer-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.customer-card:hover img{

transform:scale(1.08);

}

.customer-content{

padding:25px;

}

.event-type{

display:inline-block;

padding:8px 18px;

background:#d4af37;

color:#000;

font-weight:600;

border-radius:50px;

font-size:14px;

margin-bottom:15px;

}

.customer-content h3{

color:#fff;

font-size:28px;

margin-bottom:15px;

}

.event-date{

color:#bbb;

margin-bottom:25px;

}

.view-gallery-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:13px 28px;

background:#d4af37;

color:#111;

border-radius:40px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.view-gallery-btn:hover{

background:#fff;

}