*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#140b01;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}

/* nav */
.hamburger{
    display:none;
    width:35px;
    height:30px;
    position:relative;
    background:none;
    border:none;
    cursor:pointer;
}

.hamburger span{
    position:absolute;
    width:100%;
    height:3px;
    background:#222;
    left:0;
    transition:.3s;
}

.hamburger span:nth-child(1){
    top:4px;
}

.hamburger span:nth-child(2){
    top:13px;
}

.hamburger span:nth-child(3){
    top:22px;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:13px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:13px;
}
/* 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:#2e170d;
font-weight:600;
text-transform:uppercase;
font-size:24px;
}

nav a.active{

    color:#d6a323;

}

nav  a.active::after{

    width:100%;

}

.white{
background:white;
color:rgb(29, 17, 6);
}
a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #A6A6A6;
  width: 0%;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}


.reviews-header{
    text-align:center;
    padding:60px 20px 30px;
}

.reviews-header h1{
    font-size:54px;
    font-weight:800;
    margin-bottom:10px;
}

.reviews-header p{
    color:#d8a028;
    font-size:20px;
}


/* ================= FOOTER ================= */

footer{

    background:#220801;

    color:#fff;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    padding:45px 60px;

}

.footer-box h4{

    margin-bottom:18px;

    font-size:16px;

}

.footer-box p{

    color:#d6d6d6;

    margin-bottom:8px;

    font-size:14px;

}

.footer-box h3{

    font-size:28px;

    margin:15px 0;

}

.footer-box a{

    color:#d8a028;

    font-weight:600;

}



.social{

    display:flex;

    gap:12px;

    margin-bottom:18px;

}

.social a{

    width:34px;

    height:34px;

    border:1px solid rgba(255,255,255,.35);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}

.footer-box span{

    color:#d8a028;

    font-weight:600;

}

.copyright{

    background:#110600;

    color:#bbb;

    text-align:center;

    padding:15px;

    font-size:13px;

}

/* Responsive */

@media(max-width:992px){


    nav{
flex-wrap:wrap;
justify-content:center;
}
    
footer{
grid-template-columns:1fr 1fr;
}
}
@media(max-width:768px){
    .cards{
grid-template-columns:1fr;
}

    .header{
        padding:18px 20px;
    }
    footer{
    grid-template-columns:1fr;
    }

    header{
        position:relative;
        padding:15px 20px;
    }

    .hamburger{
        display:block;
        order:3;
    }

  

    nav{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:82px;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #eee;
        box-shadow:0 8px 20px rgba(0,0,0,.08);

        max-height:0;
        overflow:hidden;
        transition:max-height .35s ease;
        z-index:1000;
    }

    nav.active{
        max-height:500px;
    }

    nav a{
        padding:18px 25px;
        border-bottom:1px solid #f2f2f2;
    }
}