
.nav{
    background-color: #13171B;
    position: fixed;
    top: 34px;
    width: 100%;
    z-index: 99;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
   
}
.nav .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .logo{
	width: 129px;
    margin-top: 53px;
    transition: all 0.3s;
}
.nav.transparent .logo{
    width: 200px;
    margin-top: 116px;
}


.nav .nav-items{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-family: 'khand', sans-serif;
    width: 468px;
}
.nav .nav-items .nav-item{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: white;
}
.nav .nav-items .nav-item:hover{
    color: var(--tone-color)
}

.nav .mobile-items{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: none;
}
.nav .mobile-items .nav-item{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: white;
}
.nav .mobile-items .nav-item .logo{
    width: 100px;
    margin-top: 26px;
}

.mobile-menu-overlay{
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 97;
    height: 100%;
    background-color: #00000040;
}
.mobile-menu-overlay.active{
    display: block;
    backdrop-filter: blur(5px);

}
.mobile-menu{
    width: 100%;
    background-color: #13171B;
    z-index: 98;
    top: -100%;
    position: fixed;
    left: 0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    padding: 85px 25px 50px 25px;
    gap: 25px;
}
.mobile-menu.active{
    top: 70px;
}
.mobile-menu .nav-item{
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Khand';
    color: white;
}
.mobile-menu .nav-item:hover{
    color: var(--tone-color)
}

@media (max-width:992px){
    .nav{
        height: 70px !important;
    }
    .nav.nav.transparent{
        background-color:  #13171B !important;
    }
    .nav .nav-items{
        display: none;
    }
    .nav .mobile-items{
        display: flex;
    }
    .nav .nav-logo{
    	display: none;
    }
}

.badge{
	background-color: var(--tone-color);
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 24px;
	text-align: center;
	font-weight: bold;
}




/*HERO*/
.hc-hero{
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    height: 700px;
    display: flex;
    align-items: center;
}
.hc-hero h1{
    font-size: 60px;
    font-weight: bold;
    line-height: 70px;
}
.hc-hero h2{
    font-size: 30px;
    font-weight: bold;
    line-height: 60px;
    margin-top: 8px;
}
@media (max-width:992px){
    .hc-hero{
        height: 533px;
    }
}


.info-card{
    background-color: #13171B;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 8px;
    gap: 18px;
    padding: 15px 25px;
    font-weight: 600;
}

.info-card img{
   height: 50px;
}

.meat-image{
    width: 300px;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width:700px){
    .meat-image{
	    width: 200px;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	}
}


.category-card img{
    width: 100%;
}
.category-card .category-name{
    padding: 15px;
    color: white; 
    font-size: 18px;
    margin-top: -8px;
}
@media (max-width:992px){
    .category-card img{
    	height: 200px;
    	object-fit: cover;
    }
}



footer{
    color: white;
    background-color: #13171B;
    padding: 80px 0;
}
footer .footer-title{
    color: var(--tone-color);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    font-family: 'Khand', sans-serif;
}
footer .footer-links{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .footer-links a{
    color: white;
}






.menu-toggler {
    cursor: pointer;
    width: 30px;
}
  
.menu-toggler:before,
.menu-toggler:after,
.menu-toggler div {
    background: white;
    content: "";
    display: block;
    height: 3px;
    border-radius: 3px;
    margin: 6px 0;
    transition: 0.5s;
}
.menu-toggler.active:before {
    transform: translateY(8px) rotate(135deg);
}
.menu-toggler.active:after {
    transform: translateY(-10px) rotate(-135deg);
}
.menu-toggler.active div {
    transform: scale(0);
}

