*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#222;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
background:white;
}

.logo h2{
font-size:40px;
font-weight:800;
}

.logo span{
font-size:12px;
letter-spacing:1px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#222;
font-weight:600;
text-transform:uppercase;
font-size:14px;
}

.btn{
padding:14px 28px;
border-radius:40px;
font-weight:600;
display:inline-block;
}

.yellow{
background:#f3b327;
color:black;
}

.green{
background:#36432b;
color:white;
}

.white{
background:white;
color:black;
}


/* Hero */

.hero{
    text-align:center;
    padding:55px 20px 30px;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:8px;
}

.hero p{
    font-family:'Caveat',cursive;
    color:#d7a026;
    font-size:34px;
}

/* Filters */

.filters{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.filters button{
    border:1px solid #dcdcdc;
    background:#fff;
    padding:12px 28px;
    border-radius:12px;
    cursor:pointer;
    font-size:12px;
    font-weight:700;
}

.filters button.active{
    background:#d7a026;
    color:#fff;
    border-color:#d7a026;
}

/* Gallery */

.gallery{
    max-width:1400px;
    margin:auto;
    padding:0 28px 40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.gallery-item{
    overflow:hidden;
    border-radius:8px;
}

.gallery-item img{
    height:210px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-item.wide{
    grid-column:span 2;
}

/* Footer */

footer{
    background:linear-gradient(
        90deg,
        #27331d,
        #475232,
        #27331d
    );
    color:#fff;
    padding:35px 50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.footer-box{
    padding:0 20px;
    border-right:1px solid rgba(255,255,255,.15);
}

.footer-box:last-child{
    border:none;
}

.footer-box h4{
    font-size:14px;
    margin-bottom:15px;
}

.footer-box p{
    color:#ddd;
    font-size:13px;
    margin-bottom:8px;
}

.footer-box a{
    color:#d7a026;
    font-weight:600;
}

.footer-box h2{
    margin:10px 0;
    font-size:30px;
}

.call-btn{
    display:inline-block;
    background:#d7a026;
    color:#000 !important;
    padding:12px 22px;
    border-radius:6px;
    margin-top:10px;
}

.copyright{
    background:#20271a;
    color:#bbb;
    text-align:center;
    padding:12px;
    font-size:12px;
}

/* Responsive */

@media(max-width:992px){

    nav{
        display:none;
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item.wide{
        grid-column:span 2;
    }

    footer{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }

    .footer-box{
        border:none;
    }
}

@media(max-width:768px){

    .gallery{
        grid-template-columns:1fr;
    }

    .gallery-item.wide{
        grid-column:span 1;
    }

    footer{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:28px;
    }

    .header{
        padding:18px 20px;
    }
}