body{
    margin:0;
    font-family:'Open Sans', sans-serif;
    background:#000;
    color:#b8bd5f;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:url('../img/bg-01.jpg') center/cover no-repeat;
    z-index:-1;
    filter:brightness(0.6);
}

.hero-content{
    background:rgba(255,255,255,0.9);
    color:#6d6e72;
    padding:30px;
    max-width:600px;
}

.hero-subtext{
    font-size:1rem;
    line-height:1.8;
    letter-spacing:0.3px;
    color:#6d6e72;
    margin-bottom:18px;
}

.hero-subtext:last-of-type{
    margin-bottom:30px;
}
.logo{
    width:150px;
    margin-bottom:10px;
}

.btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    border:1px solid #6d6e72;
    text-decoration:none;
    color:#6d6e72;
}

.btn:hover{
    background:#6d6e72;
    color:#b8bd5f;
}

/* FILTERS */
.filters{
    text-align:center;
    padding:20px;
}

.filters button{
    background:#b8bd5f;
    border:1px none;
    color:#000;
    padding:10px 15px;
    margin:5px;
    cursor:pointer;
}

.filters button.active{
    background:#fff;
    color:#000;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    padding:20px;
}

.item{
    display:none;
    overflow:hidden;
    opacity:0;
    transition:opacity .4s ease;
}

.item.show{
    opacity:1;
}

.item img,
.item video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.item:hover img,
.item:hover video{
    transform:scale(1.05);
}

/* CONTACT */
.contact{
    text-align:center;
    padding:80px 20px;
}

.contact-btn{
    border:1px solid #000;
    padding:10px 20px;
    text-decoration:none;
    color:#000;
	background:#b8bd5f;
}

.contact-btn:hover{
    background:#b8bd5f;
    color:#b8bd5f;
}

/* LIGHTBOX */
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.lightbox img,
.lightbox video{
    max-width:90%;
    max-height:90%;
}

.lightbox .close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

/* LIGHTBOX TRANSITION */
.lightbox img,
.lightbox video{
    max-width:90%;
    max-height:90%;
    opacity:0;
    transform:scale(0.98);
    transition:all .35s ease;
}

.lightbox.show img,
.lightbox.show video{
    opacity:1;
    transform:scale(1);
}

/* NAV */
.lightbox .nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:50px;
    color:white;
    cursor:pointer;
    padding:10px;
    opacity:0.6;
    transition:.3s;
}

.lightbox .nav:hover{
    opacity:1;
}

.lightbox .prev{ left:20px; }
.lightbox .next{ right:20px; }

/* COUNTER */
.counter{
    position:absolute;
    bottom:20px;
    color:#fff;
    font-size:14px;
    opacity:0.7;
}

/* MOBILE SWIPE FEEL */
@media(max-width:600px){
    .lightbox .nav{
        font-size:35px;
    }
}

/* MOBILE */
@media(max-width:600px){
    .hero-content{
        padding:20px;
    }

    .filters button{
        padding:8px;
        font-size:12px;
    }
}