@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Margarine&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Satisfy&display=swap');


.html{
    scroll-behavior: smooth;
}
a{
    text-decoration:none;
}
img{
    width: 100%;
    display: block;
}
h1,h2,h3,h4{
    letter-spacing: 0.5px;
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
h1{
    font-size: 3rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.5rem;
}
h4{
    font-size: 0.875rem;
}
p{
  margin-bottom: 1.75cm;  
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    background-color: rgb(233, 223, 223);
    color: rgb(199, 194, 194);
    line-height: 1.5;
}

 /*--------------view more btn-----------------------------------*/
 .btn {
    background-color: red;
    color: white;
    padding: 0.375rem 0.75rem; /* Fixed padding value */
    letter-spacing: 0.5px;
    border: none; /* Optional: Removes border for a cleaner look */
    border-radius: 4px; /* Optional: Rounds corners for a softer appearance */
    font-size: 1rem; /* Optional: Sets a default font size */
    cursor: pointer; /* Optional: Changes cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Optional: Smooth transition for background color */
}
.btn:hover {
    background-color: darkred;
   
}

.banner-btn{
    border-radius: 1000px;
}

 
 /*--------------view more- end----------------------------------*/
/*-----------------clearfix--------*/
.clearfix::after,
.clearfix::before{
    content: "";
    clear: both;
    display: table;
  
}
.section-center{
    padding: 4rem 0;
    width: 85vw;
    margin: 0 auto;
    max-width: width 1170px; ;
}
.section-title h3{
    font-family: "Playwrite HU", cursive;
    color: red;
   font-size: 2rem;
}

.section-title{
    margin-bottom: 2rem;
}


/*----nav bar---*/
.nav-btn svg{
    fill: rgb(228, 231, 240);
    position: fixed;
    top: 5%;
    left: 5%;
    cursor: pointer;
    z-index:1 ;
    }
#nav-check {
    display: none;
}

#nav-check:checked ~ .navbar {
    transform: translateX(0);
}
#nav-check:checked ~ .overlay {
    display: block;
}

.overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.navbar {
    position: fixed;
    background-color: rgb(204, 211, 204);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 3;
}




.navbar h3{
    padding: 1rem;
    font: size 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    background-image: linear-gradient(180deg, rgb(243, 240, 236), rgb(222, 116, 10));
    background-clip: text;
}
.navbar-header img{
    width: 100px;
    margin:0 auto;
}
.navbar-header{
    position: relative;
}
.nav-close{
    position:absolute;
    right: 0;
    top:5px;
}
.nav-close svg {
    cursor: pointer;
    fill: gray ;
    transition: 0.3s ;
}
.nav-close :hover svg{
    fill: rgb(233, 228, 228);
}
.nav-items{
    list-style-type: none;
}
.nav-link{
    display: block;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    transition: 0.3s;

}
.nav-link:hover{
    background-color: brown;
    padding-left: 1.5rem;
    border-left: 0.5rem solid yellow;

}
@media screen and (min-width: 768px) {
    .navbar {
        width: 35%;
        max-width: 25rem;
    }
}
/*---------------------navbar end------------*/
/*-----baneer---*/
.header {
    min-height: 100vh;
    background: linear-gradient(rgba(57, 49, 42, 0.8), rgba(0, 0, 0, 0.6)), 
                url("image/chef-job-1024x883.jpg") center/cover no-repeat fixed;
}

.banner{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.banner h2{
    font-family: 'Inter', sans-serif;
    color: transparent;
    background-image: linear-gradient(180deg, rgb(243, 240, 236), rgb(222, 116, 10));
    background-clip: text;
}
.banner h1{
    font-family: 'Margarine', cursive;
    font-size: 2rem;
    color: transparent;
    background-image: linear-gradient(180deg, rgb(234, 183, 121), rgb(173, 92, 11));
    background-clip: text;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInMoveDown 2s ease-in-out forwards;
}
@keyframes fadeInMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.banner-btn:hover{
    outline: 0.125rem rgb(186, 136, 50);
    outline-offset: 0.25rem;
}
.content-divider {
    height: 0.5rem;
    background: linear-gradient(to left, red, rgb(186, 136, 50), red);
}

/*---------------------features-------------*/
.feature {
    background-color: rgb(117, 109, 109) ;
    cursor: pointer;
    padding: 2.5rem 0;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Correct transition syntax */
}

.feature-icon svg {
    transition: fill 0.3s ease, transform 0.3s ease; /* Correct transition syntax */
}

.feature-title {
    text-transform: uppercase;
     color: black;
}

.feature-text {
    color: rgb(58, 55, 55);
    max-width: 17rem;
    margin: 0 auto;
}

.feature:hover {
    background-color: rgb(93, 179, 255);
    box-shadow: 0 2px red;
}

.feature:hover .feature-title {
    color: rgb(0, 0, 0);
}

.feature:hover .feature-icon svg {
    fill: black;
    transform: translateY(-5px);
}

@media screen and (min-width: 576px) {
    .feature {
        width: 50%;
        float: left;
    }
}

@media screen and (min-width: 1200px) {
    .feature {
        width: 25%;
    }
}
/**---------------about----------------*/
/* Clearfix */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* General Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.about {
    padding: 2rem 0;
}

.about-img,
.about-info {
    padding: 2rem 0;
}

.about-picture-container {
    background-color: aliceblue;
    max-width: 30rem;
    box-shadow: 0px 3px 5px black;
    border-radius: 5px;
    overflow: hidden;
}

.about-picture {
    transition: transform 0.3s ease;
}

.about-picture-container:hover .about-picture {
    transform: scale(1.2);
    opacity: 0.5;
}

.about-text {
    max-width: 26rem;
    color: gray;
}

/* Media Queries */
@media screen and (min-width: 992px) {
    .about-img,
    .about-info {
        float: left;
        width: 50%;
    }
    .about-info {
        padding-left: 2rem;
        border: 1px solid red; /* For debugging */
    }
}
/*****************products-----------------*/

.products{
   background-color:rgb(0, 0, 0) 
}
.products.products-info{
    padding: 2rem 0;
}

.product-text{
    color: antiquewhite;
    max-width: 26rem;
}

.product-img{
    border-radius: 5px;
    height: 17rem;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow:0px 6px 3px black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-img:hover{
    box-shadow:0px 6px 3px rgb(0, 0, 0,0.3);
    transform: translateY(-2px);

}
.product-title{
    font-size: 1.02rem;
}
.product-price{
    color: red;
    font-size: 1.01;
}

@media screen and (min-width: 768px) {
    .product{
        float: left;
        width: 50%;
        padding: 2rem;
    }
}  
@media screen and (min-width: 992px) {
    .product{
        width: 33.33%;
    } 
}
@media screen and (min-width: 1200px) {
    .products {
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 1rem; /* Adjust as needed */
    }

    .product-info {
        grid-column: 1 / 2;
    }

    .product-inventory {
        grid-column: 2 / 3;
    }

    .product {
        margin: 0;
        padding: 1rem; /* Adjust as needed */
    }
}
/******************productend******************/

/******************service*****************/
.service-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: -4rem;
}
.service-card{
   margin: 2rem 0;
   background:gray ; 
   border-radius: 5px ;
   box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover{
    transform: translateY(-2px);
    box-shadow:0 4px 6px rgba(0, 0, 0, 0.1);
}
.service-img{
    height: 17rem;
    object-fit: cover;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;

}
.service-info{
    text-align: center;
    padding:3rem 1rem 2.5rem 1rem ;
    background-color: rgb(233, 224, 224);
}
.service-info p{
    max-width: 20rem;
    margin: 0 auto;
    color:gray
}
.service-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.service-img-container{
    position: relative;
}
.service-icon{
    height: 60px;
    width: 60px;
    background-color: brown;
    padding: 0.25rem 0.6rem;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,50%);
    display:grid ;
    place-items: center;
    border: 0.375rem solid  rgb(233, 224, 224)
}
.service-icon svg {
    fill: white;
    width: 30px;
    height: 30px;
}
@media screen and (min-width: 768px){
    .service-card{
        width: 45%;
        float: left;
        margin-right: 5%;
    }
}
@media screen and (min-width: 992px){
    .service-card{
        width: 45%;
        float: left;
        margin-right: 5%;
    }
}
    
/******************service end*****************/

/*****************contact us start**************/
.contact{
    background-color: gray;
}
.contact-form
.contact-info{
    margin: 1rem 0;
}
.contact-title{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    margin-bottom: -0.05rem;
}
.contact-text{
    color: black;
}

.contact-title svg{
    fill: black;
   
}
.contact-item{
    margin-bottom: 1.25rem;
}
.contact-form{
    background-color: #6f6565;
    padding: 1.3rem;
    max-width: 35rem;
    box-shadow: 0 5px 15px black;
    border-radius:5px ;
}
.contact-form h3{
    font-family: "Kalnia Glaze", serif;
    color:rgb(230, 52, 52) ;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.25rem;
 }

.form-group{
    height: 35px;
    margin-bottom: 20px;
    position: relative;
}
.form-control {
    width: 100%;
    height: 100%;
    background: none;
    border: 1px solid #ccc; 
    outline: none;
    padding: 16px;
    border-radius: 3px;
    resize: none;
    box-sizing: border-box;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
textarea.form-control{
    height: 100px;
}

.form-label{
    position: absolute;
    left: 7px;
    top: 7px;
    color:black ;
    background-color:  #6f6565;
    padding: 0 6px;
    font-size: 14px;
    transition:all 0.3s ease;
}
.form-control:focus+.form-label{
    top: -10px;
    color: seashell;
    z-index: 10;
}
.form-control:focus{
    border: 1px solid gray;
}
.form-control:not(:focus):valid+label{
    top: -10px;
    z-index: 10;
}
.submit-btn{
    padding: 0.7rem 1rem;
    margin-top: 3.5rem;
}
@media screen and (min-width: 992px){
    .contact-form,
    .contact-info{
        float: left;
        width: 50%;
    }
}

/*****************contact end**************/

/*****************footer**************/
.footer{
    background-color:rgb(151, 143, 143) ;
    text-align: center;
}
.social-icons svg {
    height: 35px;
    width: 35px;
    fill: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}


.social-icon:hover svg {
    fill: red;
}
.footer-text{
    color: white;
    margin-top: 1.25rem;
    text-transform: capitalize;
    font-weight: 400;
}
.company{
    color: bisque;
}
/*****************footer end**************/
body::-webkit-scrollbar{
    width: 10px;
}
body::-webkit-scrollbar-thumb{
    background:linear-gradient(to bottom, rgb(136, 9, 9), rgb(186, 136, 50), red);;
    border-radius: 5px;
}
body::-webkit-scrollbar-track{
    background-color: bisque;
}

body::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(to bottom, rgb(111, 136, 9), rgb(165, 152, 131), rgb(14, 180, 30));;
}

body::-webkit-scrollbar-thumb:active{
    background: linear-gradient(to bottom, rgb(136, 9, 9), rgb(186, 136, 50), red);;
}





