*{
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;
}
/* 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,
        #0f0200,
        #290d01,
        #460202
    );
}

.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:#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){

    .about-section{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    nav{
flex-wrap:wrap;
justify-content:center;
}
    
footer{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:768px){
    .cards{
grid-template-columns:1fr;
}

    .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;
    }
    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;
    }
}