
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root {
    --black: #80BCBD;
    --light-color: #efd692;
    --box-shadow: 0.5rem 1.5rem rgba(0,0,0,.1);
}


* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/*navbar style start*/

header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 12vh;
    background: var(--black);
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    z-index: 10000;
}


header .logo img {
    height: auto;
}

header .navbar a {
    font-size: 2rem;
    padding: .5rem 2.5rem;
    color: var(--light-color);
    border: .1rem solid transparent;
}


header .navbar a.active,
header .navbar a:hover{
    color: #fff;
    border: .1rem solid rgba(205,170,124,0.2);
}

header .icons i {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    background: var(--light-color);
    text-align: center;
    font-size: 1.7rem;
}

header .icons i:hover{
    color: #fff;
    background: var(--light-color);
    transform: rotate(360deg);
}

header .icons #menu {
    display: none;
}

/* End */

/*slider style start*/
#slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Set a maximum width for the slider */
    margin: auto;
    overflow: hidden;
  }

  #slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .new-slider {
    width: 100%; /* Make images fill their containers */
    height: auto; /* Maintain aspect ratio */
  }

  /* Optional: Add styles for navigation buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgb(100, 100, 100);
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 20px;
  }

  #prev-btn {
    left: 10px;
  }

  #next-btn {
    right: 10px;
  }


/*slider style end*/

/* welcome style start */

section{
 padding: 8rem 9%;
}

.heading
{
    text-align: center;
    color: var(--black);
    font-size: 4.5rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
    list-style: 1.3px;
}
.sub-heading
{
    text-align: center;
    color: var(--light-color);
    font-size: 2.5rem;
    padding: .5rem 2rem;
    font-weight: 300;
    margin-bottom: 4rem;
    background: var(--black);
    display: inline-block;
}

.welcome .box-container
{
    display: flex;
    gap: 1.5rem;
}

.welcome .box-container .box 
{
    width: 33%;
    background: var(--black);
    box-shadow: var(--box-shadow);
    text-align: center;
    padding-bottom: 1%;

}

.welcome .box-container .box .image
{
    height: 25rem;
    width: 100%;
    position: relative;
    overflow: hidden;

}
.welcome .box-container .box .image .size
{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.welcome .box-container .box .image .bac-col
{
  height: 100%;
  width: auto;
  object-fit: cover;
  background-color: #e6e7e7;
}
.welcome .box-container .box .image img 
{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.welcome .box-container .box .image:hover img
{
    transform: scale(1.1);
}

.welcome .box-container .box .content 
{
   padding: 2rem;
   padding-top: 2rem;
}

.welcome .box-container .box .content h3
{
    color: var(--light-color);
    font-size: 2.2rem;
    font-weight: 400;
}

.welcome .box-container .box .content p 
{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    padding: .5rem 0;
    line-height: 1.5;
}
/* welcome style end */

/* our menu style start */
.our-menu
{
    background: url(./img/our-menu-bg-1.png) left top no-repeat, url(./img/our-menu-bg-3.jpg);
    
}

.our-menu .menu-container
{
    padding: 3rem 0 ;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(35rem,2fr));
    gap: 5rem 10rem ;


}

.our-menu .menu-container .item .item-name
{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 ;
    margin-top: 0.5rem;
}

.our-menu .menu-container .item .menu-item
{
    padding: .5rem 0;
}

.our-menu .menu-container .item .item-name h2 
{
    font-size: 3rem;
    color: #e5e5e5;
    font-weight: 300;
}

.our-menu .menu-container .item .item-menu h3{
    font-size: 2rem;
    color: #e5e5e5;
    font-weight: 200;
    display: inline-block;
}

.our-menu .menu-container .item .item-menu span
{
    width: 28%;
    display: inline-block;
    border: 1px dotted #e5e5e5;
}
.our-menu .menu-container .item .item-menu ul
{
    display: flex;
    font-size: 1.5rem;
    list-style: none;
    padding: .8rem 0;
    font-weight: 200;
}

.our-menu .menu-container .item .item-menu ul li a 
{
    color: #b9b9b9;
}


/* our menu style end */

/* our product section */


.card-container {
    display: grid;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    margin-top: 20px;
    grid-template-columns: auto auto ;
    
}

.card {
    display: flex;
    background-color: #e3dada;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.card-image {
    flex: 1;
}



.card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 30px;
}



.card-image  .middle{
    margin-top: 30px;
}

.card-content {
    flex: 1;
    padding: 20px;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1.5rem;
    color: #555;
}
/* our product section */   

/* our chef starts */
.our-team
{
    background-color: #f5dda8;
    font-size: 20px;
    
}


.flip-flop {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 20px;
    perspective: 1000px;
  }

  .new-flip {
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    animation: rotate 6s infinite alternate; /* Auto-rotation animation */
  }

  @keyframes rotate {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(180deg);
    }
  }

  .new-flip .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
  }

  .new-flip .front {
    transform: rotateY(0deg);
  }

  .new-flip .back {
    transform: rotateY(180deg);
  }

  .new-flip img {
    max-width: 100%;
    max-height: 70%;
    border-radius: 8px 8px 0 0;
  }

  .new-flip p {
    padding: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .new-flip a {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
  }
/* our chef end */

/*  From our owners side  */

.head-top
{
    margin-top: 20px;
}
.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(100, end) infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  

.about-us {
    max-width: 100%;
    margin: 0 auto;
    padding: 2em;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    font-size: 2rem;
}

.about-img{
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.pulse {
    animation: pulse 1s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }
  

.about-us-text{
    line-height: 2;
    color: #333;
}

.about-us-text-second{
    line-height: 2;
    color: #333;
}

/*  From our owners side */



/* Blog style start */


.blog
{
   background-color: #f8f8d3;
}


.blog .box-container .box
{
    background: #fff;
}

.blog .content
{
    text-align: left;
    position: relative;
}

.blog .content h3,
.blog .content p,
.blog .content a
{
    color: #333!important;
}

.blog .content a
{
    font-size: 14px;
    display: inline-block;
    padding-top: 1rem;
    text-decoration: underline;
}

.blog .content img
{
    position: absolute;
    bottom: 0;
    right: 0;
}
/* Blog style end */

/* review section start */

.testimonials
{
    padding: 40px 0;
    background: #e6e7e7;
    color: #0e0e0d;
    text-align: center;
}

.inner
{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.row
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col
{
    flex: 30%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.slide-in-left {
    transform: translateX(-100%);
    animation: slideInLeft 1s ease-in-out forwards ;
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .slide-in-right {
    transform: translateX(100%);
    animation: slideInRight 1s ease-in-out forwards ;
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  

  .slide-up {
    transform: translateY(100%);
    animation: slideUp 1s ease-in-out forwards  ;
    
    
  }
  
  /* Visible state - slide-up effect */
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

.testimonial
{
    background: #fff;
    padding: 30px;
}

.testimonial img
{
      width: 100px;
      height: 100px;
      border-radius: 50%;
}

.name
{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px 0;
}

.stars
{
    color: #cdaa7c;
    margin-bottom: 20px;
    font-size: small;
}

.text-review
{
    font-size: 20px ;
}
/* review section end */


/* Footer style starts */

.footer
{
    background: #333;
    text-align: center;
    color: #b2b2b2;
    font-size: 1.3rem;
    
}

.footer .container
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,2fr));
    color: #b2b2b2;
    grid-gap: 1rem;
    padding: 4rem 0;
    border-bottom: 1px solid #b2b2b2;
}

.footer .container div 
{
    padding: 0 7rem;
}

.footer .container h3
{
    color: #fff;
    font-size: 1.5rem;
    padding-bottom: .8rem;
}

.footer .container input
{
    width: 100%;
    border: 1px solid #b2b2b2;
    padding: .5rem .8rem;
    background: transparent;
    border-radius: 20px;
}

.footer .container ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.footer .container ul li a
{
    color: #b2b2b2;
    margin-left: 10px;
    font-size: 18px;
}

.footer .container span
{
  display: block;
}

.last-line
{
    margin-top: 3rem;
    
}

.gmail
{
    text-transform: lowercase;
}

/* Footer style ends */

::-webkit-scrollbar
{
    width: 12px;
}

::-webkit-scrollbar-track
{
    background: #333;
}

::-webkit-scrollbar-thumb{
    background: #cdaa7c;
}

/* whatsapp */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 15px;
    background-color: #25D366; /* WhatsApp green color */
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    
  }

  .whatsapp-icon {
    width: 40px; /* Adjust the size as needed */
    height: 40px;
    /* margin-right: 8px; */
  }
 
  


/* whatsapp */








.topbtn
{
    position: fixed;
    right: 2%;
    bottom: 40%;
    width: 30px;
    height: 30px;
    background: #cdaa7c;
}

/* media query */

@media (max-width:991px)
{
    html {
        font-size: 55%;
    }
    header {
        padding: 1rem 2rem;
    }
    header .logo img {
        height: 7rem;
    }

    .our-menu .menu-container
    {
        grid-template-columns: repeat(auto-fit,minmax(30rem, 2fr));
    }
    .our-menu .menu-container .item .item-menu span
    {
        width: 15%;
    }
    .col
    {
        flex: 100%;
        max-width: 80%;
    }
}




@media (max-width:768px)
{
    header .logo img{
        height: 7rem;
    }
    header .icons #menu {
        display: inline-block;
    }
    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(205,170,124,0.2);
        border-bottom: .1rem solid rgba(205,170,124,0.2);
        padding: 1rem;
        clip-path: polygon(0 0,100% 0, 100% 0,0 0);
    }
    header .navbar.active {
        clip-path: polygon(0 0,100% 0, 100% 100%,0 100%);
    }
    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: var(--black);
    }

   
    
    /* welcome section */
    .welcome .box-container
    {
        flex-wrap: wrap;
    }
    .welcome .box-container .box
    {
        width: 100%;
    }
}    

   

@media (max-width:600px){
    .col{
        flex: 100%;
        max-width: 100%;
        
    }

    .middle{
        margin-top: 40px;
    }

    .about-us{
        padding: 1em;
        font-size: 2rem;
    }
    .card-description {
        font-size: 1rem;
        color: #555;
    }
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 15px;
        background-color: #25D366; /* WhatsApp green color */
        color: #fff;
        padding: 10px;
        border-radius: 50%;
        font-size: 20px;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        
      }

      .slider-btn{
        background-color: transparent;
      }
}    

