@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: rgb(228, 195, 86);
    --black: rgb(19, 19, 26);
    --bg: rgb(1, 1, 3);
    --border:.1rem solid rgba(255, 255, 255, .3);
} 
     


*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;

}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;

}

html::-webkit-scrollbar{
    width: .7rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 6rem;

}
body {
    background: var(--bg);
}

section{
    padding: 2rem 7%
}

.heading{
    text-align: center;
    color:#ffffff;
    text-transform: uppercase;
    font-size: 4rem;
    padding-bottom: 3.5rem;
}

.heading span{
    color: var(--main-color);
    padding: 0 1rem;
}


.btn {
    display: inline-block;
    padding: 1rem 2rem !important; 
    font-size: 1.6rem !important; 
    color: #fff !important; 
    background: #ff9800 !important; 
    border: none !important; 
    border-radius: 50px !important; 
    cursor: pointer !important; 
    text-align: center !important;
    text-decoration: none !important; 
    transition: background 0.3s ease !important; 
}

.btn:hover {
    background: #e68900 !important; 
}
.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
}

.header .logo img{
    height:6rem;

    
}
.header .navbar a{
   margin:0 1rem;
   font-size: 1.6rem;
   color: #fff;
}

.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}
.header .icons div:hover {
    color: var(--main-color);
   
}


#menu-btn {
    display: block; 
    font-size: 2rem; 
    color: #ffffff; 
    cursor: pointer; 
}

.old-navbar {
    display: flex; 
    gap: 1rem;
}


.new-navbar {
    position: fixed;
    top: 4rem; 
    right: -100%;
    height: calc(100% - 4rem);
    width: 20rem;
    background: #222;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease; 
}

.new-navbar.active {
    right: 0; 
}

.new-navbar.active {
    display: flex; 
}
.icons {
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.header .search-form {
    display: flex; 
    align-items: center; 
    background: #f9f9f9; 
    width: 30rem; 
    height: 3.5rem; 
    padding: 0.5rem 1rem; 
    border: 1px solid #ddd; 
    border-radius: 25px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.header .search-form.active {
    transform: scaleX(1); 
}

.header .search-form input {
    flex: 1; 
    height: 100%; 
    font-size: 1.6rem; 
    color: #333; 
    padding: 0.5rem; 
    border: none;
    border-radius: 25px; 
    outline: none; 
    background: transparent; 
}

.header .search-form input::placeholder {
    color: #aaa; 
    font-style: italic; 
}

.header .search-form input:focus {
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    border: 1px solid rgba(0, 123, 255, 0.5); 
}

.header .search-form label {
    font-size: 1.8rem; 
    color: #666; 
    margin-right: 1rem; 
    cursor: pointer; 
}

.header .search-form label:hover {
    color: #007bff; 
}

.header .cart-items-container {
    position: absolute;
    top: 100%;
    right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding: 0 1.5rem;
    overflow-y: auto; /* Allow scrolling if items exceed container height */
    transition: right 0.3s ease; /* Smooth transition for sliding in/out */
    display: none; /* Hide by default */
}

.header .cart-items-container.active {
    display: flex; /* Show when active */
    flex-direction: column; /* Ensure items stack vertically */
    right: 0;
}

.header .cart-items-container .cart-item {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header .cart-items-container .cart-item .fa-times {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover {
    color: var(--main-color);
}

.header .cart-items-container .cart-item img {
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3 {
    font-size: 2rem;
    color: var(--black);
    padding-bottom: 0.5rem;
}

.header .cart-items-container .cart-item .content .price {
    font-size: 1.5rem;
    color: var(--main-color);
}

.header .cart-items-container .btn {
    width: 80%;
    text-align: center;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

   .home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('kantotcover.jpg') no-repeat;
    background-size: cover;
    background-position: center;
   }

   .home .content{
    max-width: 60rem;
   }
   .home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: #fff
   }
   .home .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color: #fff;
   }
    
   .about .row{
    display: flex;
    align-items: center;
    background:var(--black);
    flex-wrap: wrap;
   }
    
   .about .row .image{
    flex: 1 1 45rem;
   }
   .about .row .image img{
    width: 100%;
   }
   .about .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
   }

   .about .row .content h3{
    font-size: 4rem;
    color: #fff;
   }

   .about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;

   }
   .menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    padding: 3rem;
    text-align: center;
    border: 1px solid #ccc; 
    background: #000; 
    color: #fff;
    border-radius: 10px; 
}

.menu .box-container .box img {
    height: 12rem; 
    width: auto;
}

.menu .box-container .box h3 {
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    font-size: 2.5rem;
    padding: 0.5rem 0;
}

.menu .box-container .box .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
    color: #c0c0c0; 
}

.menu .box-container .box button {
    background: #c59d5f; 
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    margin-top: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.menu .box:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}

.meals {
    padding: 2rem; 
    background: #000; 
    color: #fff; 
}

.meals .heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff; 
    text-transform: uppercase; 
}

.meals .box-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); 
    gap: 1.5rem; 
}

.meals .box {
    padding: 3rem; 
    text-align: center;
    border: 1px solid #ccc; 
    background: #000; 
    color: #fff; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.meals .box:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}

.meals .box img {
    height: 12rem; 
    width: auto;
    border-radius: 10px; 
    margin-bottom: 1rem;
}

.meals .box h3 {
    font-size: 2rem; 
    padding: 1rem 0;
}

.meals .box .price {
    font-size: 2.5rem; 
    padding: 0.5rem 0;
}

.meals .box .price span {
    font-size: 1.5rem; 
    text-decoration: line-through;
    font-weight: lighter;
    color: #c0c0c0; 
}

.meals .box .btn {
    display: inline-block;
    padding: 1rem 2rem; 
    font-size: 1.6rem; 
    color: #fff; 
    background: #ff9800; 
    border-radius: 50px; 
    border: none;
    cursor: pointer; 
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease; 
}

.meals .box .btn:hover {
    background: #e68900; 
}

.products .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.products .box {
    text-align: center;
    border: 1px solid #fff; 
    padding: 2rem;
    background: #000; 
    border-radius: 10px;
}
 
.products .box .image img {
    width: 100%;
    height: auto;
    max-height: 20rem;
}

.products .box .content h3 {
    color: #fff;
    font-size: 2rem;
}

.products .box .content .price {
    color: #fff;
    font-size: 2rem;
}

.products .box .content .price span {
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
    color: #c0c0c0; 
}

.products .box .content button {
    background: #c59d5f; 
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.products .box .content button:hover {
    background: #a87c44;
}
.products .box:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}
.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}

.review .box {
    border: 1px solid #fff; 
    text-align: center;
    padding: 3rem 2rem;
    background: #000; 
    border-radius: 10px;
}

.review .box .quotes {
    width: 40px;
    margin-bottom: 10px;
    filter: invert(1); 
}

.review .box p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #ccc;
    padding: 2rem 0;
}

.review .box .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    border: 2px solid #fff;
}

.review .box h3 {
    padding: 1rem 0;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

.review .box .stars i {
    font-size: 1.5rem;
    color: #f4c542; 
}

.review .box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}

.contact .row{
    display: flex;
    align-items:center;
    background:var(--black);
    flex-wrap: wrap;
    gap:1rem;

}

.contact .row .map{
    flex:2 2 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom:2rem;
    background: var(--black);
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:transparent;
}
.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    border: 1px solid #ccc; 
    background-color: #000; 
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blogs .box-container .box .image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.2);
}

.blogs .box-container .box .content {
    text-align: center;
    padding: 2rem;
}

.blogs .box-container .box .content .title {
    font-size: 2.5rem;
    line-height: 1.5;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.blogs .box-container .box .content .title:hover {
    color: #d4a373; 
}

.blogs .box-container .box .content span {
    color: #d4a373;
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p {
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

.blogs .box-container .box .content .price {
    font-size: 2.5rem;
    color: #fff;
    padding: 0.5rem 0;
}

.blogs .box-container .box .content .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
    color: #c0c0c0;
}

.blogs .box-container .box .content .btn {
    background-color: #d4a373;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.blogs .box-container .box .content .btn:hover {
    background-color: #d4a373;
    color: #fff;
}

.blogs .box:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}
.footer{
    background:var(--black);
    text-align: center;
}
.footer .share{
    padding: 1rem 0;
}
.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border:var(--border);
    margin: .3rem;
    border-radius: 50%;
}
.footer .share a:hover{
    background: var(--main-color);
}
.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}
.footer .links a{
    padding: .7rem 2rem;
    color: #fff;
    border:var(--border);
    font-size: 2rem;
}
.footer .links a:hover{
    background: var(--main-color);
}
.footer .credit{
    padding: 2rem 0;
    color: #fff;
    font-size: 2rem;
    font-weight: lighter;
}
.footer .credit span{
    color: var(--main-color);
}

 

    @media (max-width: 991px){
        
        html{
            font-size: 55%;
        }
        .header{
            padding: 1.5rem 2rem;
        }
        
        section{
            padding:2rem;
        }
    }

    

  @media (max-width: 768px){
        
    #menu-btn{
        display: inline-block;

    }
    .header .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }
       .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding: .5rem;
        font-size: 2rem;

      }
        .header .search-form{
            width: 90%;
            right: 2rem;
        }
    

        .home{
            background-position:left;
            justify-content: center;
            text-align: center;

        }
        .home .content h3{
            font-size: 5rem;
        }
        .home .content h3{
            font-size: 5rem;
        }
        .home .content h3{
        font-size: 1.5rem;
    }
}

  @media (max-width: 450px){
        
    html{
        font-size: 50%;
    }
}

      