/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Righteous&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 3rem;
    scroll-behavior: smooth;
    font-family: var(--font-family-1);
}
/*Variables*/
:root {
    --brown: #4b1204;
    --yellow-color: #ffa10a;
    --text-color: #121212;
    --container-color: #efe8e0;
    --red: #a72e1b;
    --bg-color: #fff;
    --text-alter-color: #94908e;
    --font-family-1: "Arvo",serif;
    --font-family-2: "righteous", sans-serif;
}
body {
    color: var(--text-color);
    background: var(--bg-color);
}
a {
    text-decoration: none;
}
image {
    width: 100%;
}
section {
    padding: 3rem 0 2rem;
}
.container {
    max-width: 1400px;
    margin: auto;
    width: 100%;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--red);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    z-index: 100;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}
.logo image {
    width: 75px;
    margin-left: 20px;

}
.navbar {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}
.nav-links {
    font-size: 0.88rem;
    color: var(--bg-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-links:hover{
    color: var(--text-alter-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-icons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.nav-icons .bx{
    color: var(--bg-color);
    font-size: 20px;
}
.cart{
    position: relative;
}
.cart span{
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--text-color);
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}
.menu-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
}
.menu-icon div{
    display: block;
    background: var(--bg-color);
    height: 2px;
    width: 23px;
    transition: 0.3s;
}
.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}
.move .line2{
    opacity: 0;
}
.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}
.home{
    min-height: 650px;
    background: var(--red);
    position: relative;
    padding: 7rem 0 2rem;
}
.home-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
    color: var(--bg-color);
}
.home-text{
    z-index: 4;
}
.home-text h1{
    font-family: var(--font-family-2);
    font-size: 6.2rem;
    line-height: 6.8rem;
    font-weight: 800;
}
.home-text p{
    font-size: 1.025rem;
    margin: 2rem 0 1rem;
}
.home-text h3{
    font-size: 2.7rem;
    line-height: 2.7rem;
    font-weight: 500;  
    margin-bottom: 2rem;
}
.btn{
    max-width: 160px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--yellow-color);
    color: var(--bg-color);
    cursor: pointer;
}
.btn:hover{
    background: var(--text-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.home-image{
    max-width: 540px;
    width: 100%;
    z-index: 4;
}
.home-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.features{
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax (auto, 310px));
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgb(18 18 18 / 20%);
}
.feature-box{
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-img{
    width: 50px;
}
.feature-text h3{
    font-size: 1.4rem;
    font-weight: 500;
}
.heading{
    font-size: 3.5rem;
    font-weight: 500;
    font-family: var(--font-family-2);
    text-align: center;
    margin-bottom: 2rem !important;
}
.feature-menu-content{
    display: flex;
    grid-template-columns: repeat(auto-fit, min max(auto, 180px));
    justify-content: space-between;
    gap: 1rem;
}
.feature-menu-box{
    text-align: center;
}
.feature-menu-box img{
    max-width: 185px;
    width: 100%;
    transition: transform 0.2s ease;
    cursor: pointer;
}
.feature-menu-box img:hover{
    transform: scale(1.1);
    transition: transform 0.2s ease;
}
.feature-menu-box h3{
    font-family: var(--font-family-2);
}
.feature-menu-box p{
    color: var(--text-color);
    opacity: 0.7;
}
.items{
    background: var(--container-color);
}
.item-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.item-box{
    position: relative;
    background: var(--bg-color);
    padding: 24px 14px;
    border-radius: 8px;
    border: 1px solid rgb(75 18 4 );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.item-box .sale{
    position: absolute;
    right: 14px;
    top: 14px;
    background: var(--text-color);
    color: var(--bg-color);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}
.item-box img{
    max-width: 264px;
    width: 100%;
    object-position: center;
    margin-bottom: 1.2rem;
}
.item-box h2{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown);
}
.item-box .price{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.2rem;
}
.item-box .price h3{
    color: var(--brown);
    font-weight: 500;
}
.item-box .price p{
    text-decoration: line-through;
    font-weight: 500;
    color: rab(var(--brown), 0.8);
}
.item-btn{
    background: var(--yellow-color);
    color: var(--brown);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
}
.item-btn:hover{
    background: var(--brown);
    color: var(--bg-color);
    transition: transform 0.4s ease-in-out;
}
.menu-container{
    background: var(--text-color);
    color: var(--bg-color);
    position: relative;
    padding: 4rem 0;
}
.menu-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.menu-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.menu-box{
    z-index: 4;
}
.menu-box h2{
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--yellow-color);
    font-family: var(--font-family-2);
    margin-bottom: 1.8rem;
}
.m-item-box{
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #ffffff7c;
    border-top: 1px dashed #ffffff7c;
    cursor: pointer;
    padding: 10px;
}
.burgers-conten :last-child {
    border-bottom: 1px dashed #ffffff7c;
}
.m-item-box:hover{
    background: var(--yellow-color);
    transition: backgrpund 0.3s ease-in-out;
}
.m-item-box img{
    max-width: 82px;
    border-radius: 10px;
}
.m-item-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.m-item-des{
    padding: 0 16px 0 8px;
}
.m-item-des h3{
    font-size: 1.075rem;
    font-weight: 500;
}
.m-item-des p{
    font-size: 0.94rem;
    color: rgb(255 255 255 / 70%);
    margin-top: 4px;
}
.m-item-price{
    padding-left: 15px;
    border-left: 1px dashed #ffffff7c;
}
.m-item-price h3{
    font-size: 1.075rem;
    font-weight: 500;
}
.m-item-price p{
    font-weight: 400;
    color: rgb(255 255 255 / 10%);
    text-decoration: line-through;
    margin-top: 7px;
}
.testimonials-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.t-box{
    background: var(--container-color);
    padding: 30px;
    border-radius: 10px;
}
.t-box .stars{
    color: var(--yellow-color);
    font-size: 18px;
}
.t-box p{
    font-size: 1.1rem;
    margin: 10px 0;
}
.profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-data h3{
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}
.profile-data span{
    font-size: 0.94rem;
    font-weight: 400;
    color: rgb(18 18 18 / 70%);
}
.newsletter{
    max-width: 1040px;
    width: 90%;
    margin: auto;
}
.newsletter h2{
    font-size: 3.5rem;
    font-weight: 500;
    font-family: var(--font-family-2);
    text-align: center;
}
.newsletter p{
    text-align: center;
}
.newsletter form{
    max-width: 600px;
    margin: 1.8rem auto auto auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--text-color);
    padding: 7px;
    border-radius: 0.5rem;
}
.newsletter form input{
    border: none;
    outline: none;
    padding: 0 20px;
}
.newsletter form .emial{
    width: 100%;
}
.newsletter form input::placeholder{
    color: var(--text-color);
    font-size: 0.94rem;
    font-weight: 400;
}
.newsletter form .s-btn{
    background: var(--yellow-color);
    padding: 14px 24px;
    border-radius: px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
}
.newsletter form .s-btn:hover{
    background: var(--text-color);
    color: var(--bg-color);
    transition: 0.4s ease-in-out;
}
.footer{
    background: var(--text-color);
    color: var(--bg-color);
}
.footer-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 40px 0 30px;
}
.footer-logo img{
    width: 80px;
}
.feature-box{
    display: flex;
    flex-direction: column;
}
.social{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.social a {
    font-size: 20px;
    background: var(--yellow-color);
    border-radius: 50%;
    padding: 8px;
    margin-right: 0.8rem;
}
.social a:hover{
    color: var(--text-color);
    background: var(--bg-color);
    transition:  0.4s ease-in-out;
}
.footer-box h3{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--bg-color);
    margin-bottom: 1rem;
}
.footer-box p{
    margin-bottom: 8px;
}
.footer-box p span{
    display: inline-block;
    width: 50px;
}
.footer-box a{
    display: flex;
    color: var(--bg-color);
    margin-bottom: 10px;
}
.copyright{
    padding: 30px;
    color: var(--bg-color);
    text-align: center;
}
/* Custom Scroll Bar */
html::-webkit-scrollbar {
    background: transparent;
    width: 0.5rem;
}
html::-webkit-scrollbar {    
    background-color: var(--yellow-color);
}

/* Making Responsive */
@media (max-width : 1410px) {
    .container{
        width: 90%;
        margin: 0 auto;
    }
    .features{
        border-bottom: none;
    }
    .footer-box{
        border-bottom: 1px solid rgb(18 18 18 / 20%);
        padding-bottom: 12px;
    }
}
@media (max-width: 1195px) {
    .home-text h1{
        font-size: 4.2rem;
        line-height: 4.8rem;
    }
    .home-text h3{
        font-size: 2rem;
        line-height: 2rem;
        font-weight: 400;
    }
}
@media (max-width: 975px) {
    .heading{
        font-size: 2.8rem;
    }
    .item-content{
        grid-template-columns: repeat(3,1fr);
    }
    .menu-content,
    .testimonials-content {
        grid-template-columns: 1fr;
    }
    .menu-box h2{
        font-size: 1.7rem;
    }
    .newsletter h2{
        font-size: 2.4rem;
    }
}



