*{
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;
}

/* About */

.about-section{
    background:#fff;
    padding:20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    border-left:1px solid #ececec;
    border-right:1px solid #ececec;
}

.about-image img{
    height:100%;
    object-fit:cover;
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:10px;
}

.about-content h2{
    font-family:'Caveat',cursive;
    color:#d9a128;
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
    max-width:550px;
}

/* Features */

.features{
    background:#fff;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    border:1px solid #ececec;
    border-top:none;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px;
    border-right:1px solid #ececec;
}

.feature-box:last-child{
    border-right:none;
}

.icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#faf4e8;
    border-radius:50%;
}

.feature-box h3{
    font-size:14px;
    margin-bottom:6px;
}

.feature-box p{
    font-size:13px;
    color:#666;
}

/* Gallery */

.gallery-section{
    margin-top:20px;
    padding:40px;
    background:linear-gradient(
        90deg,
        #24301d,
        #495332,
        #24301d
    );
}

.gallery-section h2{
    text-align:center;
    color:#fff;
    font-family:'Caveat',cursive;
    font-size:48px;
    margin-bottom:25px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}

.gallery-grid img{
    height:220px;
    object-fit:cover;
    border-radius:6px;
}


/* 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;
}

.stars{
    color:#d8a028;
    font-size:28px;
    margin:10px 0;
}

.rating-left span{
    color:#666;
}



/* Responsive */

@media(max-width:992px){

    .about-section{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    nav{
        display:none;
    }
}

@media(max-width:768px){

    .about-content h1{
        font-size:40px;
    }

    .about-content h2{
        font-size:40px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-section h2{
        font-size:34px;
    }

    .header{
        padding:18px 20px;
    }
}