*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

html, body{
    overflow-x: hidden;
    overflow-y:scroll;
    background-color: var(--light-color);
    scroll-behavior: smooth;
    position: relative;
   
}

:root{
    --accent-color: #EE4266;
    --main-color: #52414C;
    --light-color: #f1faee;
    --secondary-color: #a8dadc;
    --additional-color: #F8F2ED;
    --para-color: #7E6374;
}

@media(hover:hover){
    .nav-link a:hover, .nav-link a:active, .nav-link a:focus{
        color: var(--accent-color);
        transition: .3s ease-in-out;
    } 

    .button:hover{
        background-color: rgba(163, 0, 0, 0.8);
    }

    .menu-link:hover a{
        color: var(--accent-color);
        border-bottom: 1px solid var(--accent-color);
    }

    
    .nav-link:hover a::after{
        width: 110%;
    }
}

a{
    cursor: pointer;
    text-decoration: none;
}

p{
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    color: var(--para-color);
    font-weight: 400;
}

h1{
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 5;
}

h2{
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 4rem;
}

h3{
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 2.5rem;
}

h4{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8rem;
    text-transform: uppercase;
}

h5{
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8rem;
}

.wrapper{
    max-width: 1200px;
    width: 100%;
    padding: 2%;
    margin: 0 auto;
}

.spacer{
    height: 50px;
    width: 100%;
}

/* Pop up modal */
/*.popup-box{*/
/*    position: fixed;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 999;*/
/*    top: 0;*/
/*    left: 0;*/
/*    display: none;*/
/*}*/

/*.popup-content{*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    max-width: 640px;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    overflow-y: scroll;*/
    
/*}*/

/*.popup-content img{*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*}*/


/*.popup-content .btn-close{*/
/*    position: absolute;*/
/*    top: 5%;*/
/*    right: 5%;*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    border-radius: 50px;*/
/*    outline: none;*/
/*    border: none;*/
/*    background-color: brown;*/
/*    color: white;*/
/*    font-size: 24px;*/
/*    cursor: pointer;*/
/*    transition: all .3s ease-in;*/
/*}*/

/*.popup-content .btn-close-bottom{*/
/*   width: 100%;*/
/*   height: 50px;*/
/*   margin-top: -30px;*/
/*   text-align: center;*/
/*   border: none;*/
/*   background: brown;*/
/*   cursor: pointer;*/
/*   color: white;*/
/*   transition: all .3s ease-in;*/
/*   font-size: 24px;*/
/*}*/

/*.popup-content .btn-close-bottom:hover{*/
/*    background: maroon;*/

/*}*/

/*.popup-content .btn-close:hover{*/
/*    background-color: maroon;*/
/*}*/


/*.no-scroll{*/
/*    position: fixed;*/
/*    filter: blur(15px);*/
/*}*/
/* Navbar Section Styling */
.navbar{
    background-color: var(--light-color);
    /* max-height: 3.5rem; */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

}

.brand{
    display: flex;
    align-items: center;
    gap: 8px;

}

.brand .logo-name{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.brand .logo-name h3{
    font-size: 1.6rem;
    line-height:2rem;
    color: var(--accent-color);
}

.brand .logo-name p{
    color: #444;
    font-weight: 600;
    font-size: 0.8rem;
}

.logo{
    width: 60px;
    height: auto;
}


.navbar .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    z-index: 1000;
    transition: .3s ease-in-out;
    transform: translateX(-100%);
}






.mobile-menu-items{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 70%;
    margin-top: 50px;
    list-style: none;

}



.mobile-menu-item a{
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
}

.menu-toggle-btn{
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.menu-toggle-btn ion-icon{
    font-size: 3rem;
    color: #fefefe;
}


.nav-links{
    display: none;
}

/* .nav-link{
    list-style-type: none;
}

.nav-link a{
    text-transform: uppercase;
    color: var(--dark-color);
    font-weight: 500;
    letter-spacing: 2px;
}

.nav-link a:hover, .nav-link a:active, .nav-link a:focus{
    color: var(--accent-color);
}  */

.hamburger-menu{
    font-size: 3rem;
    cursor: pointer;
}
/* Hero Section */
.hero-section{
    width: 100vw;
    padding-top: 6rem;
    position: relative;
  
}

.hero-section .wrapper{
    display: flex;
    flex-direction: column;
}

.hero-image{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text{
    width: 100%;
    text-align:center;
    padding: 2rem 1rem;
}

.hero-heading{
    position: relative;
    overflow: hidden;
}

.hero-heading h1{
    font-size: 3.2rem;
    letter-spacing: 1.5px;
    line-height: 4rem;
    margin-bottom: 2rem;
    position: relative;
    
}

.hero-subheading{
    position: relative;
    overflow: hidden;
}

.hero-subheading p{
    position: relative;
}



.scroll-down{
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  color: var(--main-color);
}

.scroll-down ion-icon{
    animation: down .3s ease-in infinite alternate-reverse;
}

@keyframes down{
    0%{
        opacity: .6;
        transform: translateY(0);
    }

    100%{
        opacity: 1;
        transform: translateY(5px);
    }
}


section{
    width: 100%;
    padding: 2rem 0;
}

section .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section h2{
    position: relative;
    text-align: center;
    z-index: 9;
    margin: 3rem 0 2rem 0;
    
}

section h2::before{
    width: 30px;
    height: 30px;
    content: '';
    background-color: var(--accent-color);
    position: absolute;
    top: 10px;
    right: -20px;
    z-index: -1;
}

.section-desc{
    text-align: center;
    max-width: 100%;
    margin: 0 5%;
}

.section-desc h2{
    display: inline-block;
}

section p{
    margin: 0 auto 0.8rem auto;
    text-align:center;
}

section h3{
    margin: 2rem 0;
}

.video{
    width: 100%;
    height: 300px;
    margin: 4rem 0;
}

/* Food Menu Section */
.section-quote{
    width: 100%;
    height: 200px;
    padding: 1rem;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.what-we-offer{
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),url('assets/pizza-mobile.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
   
}

.section-quote h1{
    font-size: 1.6rem;
    line-height: 2.5rem;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--light-color);
    
}

.food-images{
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 2rem 0 0 0;
}


.food-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease-in-out;
}

.food-image img:hover{
    transform: scale(1.03);
}

.food-image p{
    margin: 1rem 2rem 4rem 2rem;
    text-align:center;
}

.button{
    padding: 1rem 4rem;
    outline: none;
    border: none;
    background-color: var(--accent-color);
    color: var(--light-color);
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0.3rem;
    transition: background-color .3s ease-in;
}


.menu-btn{
    display: block;
    cursor: pointer;
  
}

.service-quote{
    -webkit-background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/party-mobile.jpg');
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/party-mobile.jpg');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size:cover;
    background-position: top center;
}

.services-category{
    margin: 3rem auto;
    text-align: center;
    max-width: 640px;
    width: 100%;
}

.services-category span{
    padding: 1rem;
    font-weight: 500;
    color: var(--main-color);
    margin-right: 1rem;
    cursor: pointer;
}

.services-category span.active{
    border-bottom: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
}

.services-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 5rem 0;
}


.services-container .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 5%;
}



.services-container .left > div {
    display: none;
}

.services-container .left > div.active{
    display: block;
}

.service-item h3{
    font-weight: 800;
}


.services-container .right{
    width: 100%;
    height: 250px;
    background: url('assets/private-event.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}

.services-container .right.active{
    width: 100%;
    height: 250px;
    background: url('assets/catering.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Special Offers */
.offers{
    display: none;
}

/* Contact Us : Location Section */


.location-quote{
    background-image:linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("assets/thamel-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
   
}

.contact-us-wrapper .left{
    text-align:center;
    padding: 0 2rem 4rem 2rem;
}

.contact-us-wrapper .left .info p{
    display: flex;   
    color: var(--para-color);
   
}

.contact-us-wrapper .left .info p .loc-text{
    display: none;
}

.contact-us-wrapper .left .info p ion-icon{
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.contact-us-wrapper .left .info p a{
    color: var(--para-color);
}

.contact-us-wrapper .right{
    width: 100%;
}

.contact-us-wrapper .right h4{
    text-align: center;
    margin: 1rem;
    text-decoration: underline;

}

.contact-us .right img{
    width: 100%;
}

.contact-us-wrapper{
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
}


/* Footer Styles */
.footer{
    background-color: var(--main-color);
    /* border-top-left-radius: 125px; */
    width: 100%;
    padding: 3rem;
}

.footer .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.col{
    width: 100%;
    border-bottom: 2px solid rgba(0, 0, 0, .05);
    padding-bottom: 3rem;
}


.col .top{
    display: flex;
}

.col .top .logo{
    width: 60px;
    height: 60px;
}

.col .top .logo-name{
    margin-left: 5px;
    color: var(--light-color);
    text-align:center;
}

.logo-name h3{
    font-weight: 600;
    text-transform: uppercase;
}

.logo-name p{
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-top:-5px;
}

.col .bottom{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}


.col .bottom a{
    color: var(--secondary-color);
}

.footer .col h4{
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.col p{
    font-size: 0.8rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.col ion-icon{
    font-size: 2rem;
    color: var(--light-color);
    margin-right: 2rem;
}

.opening-hours h5{
    color: var(--light-color);
    margin-top: 2rem;
}

/* Opening Hours in tabular form */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 12px 15px;
}
th {
    background-color: #007BFF;
    color: #000;
    text-align: center;
}
td {
    border-bottom: 1px solid #dddddd;
}
tr:last-of-type td {
    border-bottom: none;
}
.center {
    text-align: center;
}
.full-width {
    text-align: center;
    background-color: #f1f1f1;
}

/* Food Menu page display */
 /* Extended Menu */
 .extended-menu{
    width: 100%;
    background: var(--light-color);
    overflow-x: hidden;
    /* position: relative; */
}

.fixed-section{
    position: fixed;  
    width: 100%;
    top: 0;
    background-color: var(--main-color); 
    z-index: 999;
}


.menu-scroll-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    }

.menu-scroll-div button{
    outline: none;
    border: none;
    background: var(--light-color);
    margin: 0 10px;
    cursor: pointer;
    display: none;
}

.menu-scroll-div button ion-icon{
   font-size: 3rem;
   color: var(--accent-color);
}



.menu-categories{
    color: inherent;
    overflow-x: scroll;
}


.menu-categories::-webkit-scrollbar{
    display: none;
}

.menu-links{
    /* overflow-x: scroll; */
    display: flex;
    justify-content: space-between;
    transition: transform .3s ease-in;
    position: relative;
}

.menu-link{
    flex:1;
    list-style: none;
    padding: 1rem 2rem;
    margin-right: 1rem;
    text-align: center;    
}


.menu-link.active a{
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.menu-link a{
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: var(--light-color);
    padding: 0.5rem;
}


.menu-link a img{
    width:40px;
    margin-bottom: 0.5rem;
}

.menu-wrapper{
    margin: 5rem auto 0 auto;
}

.menu-wrapper a{
    margin-bottom: -2rem;
}

.go-back{
    display: flex;
    align-items: center;
    gap: 5px;
}

.go-back span, .go-back ion-icon{
    font-weight: 800;
    font-size: 1.2rem;
}

.menu-items-layout{
    width: 100%;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, .08);
}

.img-container{
    width: 100%; 
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
}

.img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.menu-content-container{
    width: 100%;
    padding: 2rem;
    background: var(--light-color);
}

.img-container.hide{
    display:none;
}

.menu-content-container:first-child{
    display:block;
}

.menu-content-container .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.border{
    border-bottom: 1px dotted var(--main-color);
}


.menu-cat{
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   width: 100%;
   text-align:center;
}

.menu-cat h3{
    color: var(--main-color);
    letter-spacing: 1.5px;
    line-height: 3.5rem;
    font-size: 2.2rem;
    margin-top: 0rem;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.menu-cat h6{
    color: rgba(0, 0, 0, .4);
}

.menu-content{
    border-left: 4px solid var(--accent-color);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    padding: 0 1rem;
    margin: 2rem auto;
    width: 100%;
}


.menu-content h4{
    padding-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-content-top h4{
    color: var(--main-color);
}

.menu-content p{
    padding: 0.5rem 0;
    letter-spacing: 1.5px;
    text-align: left;
    width: 100%;
}




/* Food Menu page end */

@media only screen and (min-width: 720px){
    p{
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 1px;
        color: var(--para-color);
    }
    
    h1{
        font-size: 5rem;
        font-weight: 800;
        letter-spacing: 3px;
        line-height: 5.5rem;
    }
    
    h2{
        font-size: 3.4rem;
        font-weight: 600;
        letter-spacing: -1px;
        line-height: 4rem;
    }
    
    h3{
        font-size: 1.9rem;
        font-weight: 400;
        letter-spacing: 1.5px;
        line-height: 2.5rem;
    }
    
    h4{
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        line-height: 1.8rem;
        text-transform: uppercase;
    }
    
    h5{
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        line-height: 2rem;
    }
    
    .wrapper{
        max-width: 1200px;
        width: 95%;
        margin: 0 auto;
    }
    
    .spacer{
        height: 100px;
        width: 100%;
    }
    
    /* Navbar Section Styling */
    .navbar{
        background-color: var(--light-color);
        width: 100%;
        z-index: 100;
    
    }
    
    .logo{
        width: 60px;
        height: auto;
    }
    
    .navbar .wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links{
        display: flex;
        /* width: 30rem; */
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link{
        list-style-type: none;
    }
    
    .nav-link a{
        text-transform: uppercase;
        color: var(--dark-color);
        font-weight: 500;
        letter-spacing: 2px;
        position: relative;
        
    }

    .nav-link a::after{
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0%;
        height: 1px;
        background-color: var(--accent-color);
        transition: .3s ease-in-out;
    }

    
  

    .hamburger-menu{
        display: none;
    }
    
    /* Hero Section */
    /* .hero-section{
        width: 100vw;
        height: calc(100vh - 7rem);
        padding-top: 2rem;
    }*/
    .hero-section{ 
        width: 100vw;
        padding-top: 7rem;
    }
    
    .hero-section .wrapper{
        display: flex;
        flex-direction: column;
    }
    
    .hero-image{
        width: 100%;
        height: 100%;
       
    }
    
    .hero-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-text{
        width: 100%;
        text-align:center;
        padding: 2rem 1rem;
    }
    
    .hero-text h1{
        font-size: 4rem;
        letter-spacing: 1.5px;
        line-height: 4.8rem;
        margin-bottom: 2rem;
    }
    
    
    
    .scroll-down{
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 2rem 0;
    }


    
    
    section{
        width: 100%;
        padding: 2rem 0;
    }
    
    section .wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 95%;
    }
    
    section h2{
        position: relative;
        text-align: center;
        z-index: 9;
        margin: 3rem 0 2rem 0;
        
    }
    
    section h2::before{
        width: 30px;
        height: 30px;
        content: '';
        background-color: var(--accent-color);
        position: absolute;
        top: 10px;
        right: -20px;
        z-index: -1;
       
    }

    
    .section-desc{
        text-align: center;
        max-width: 65%;
    }
    
    .section-desc h2{
        display: inline-block;
    }
    
    section p{
        margin: 0 auto 0.8rem auto;
        text-align:center;
    }
    
    section h3{
        margin: 2rem 0;
    }
    
    .video{
        width: 100%;
        height: 600px;
        margin: 4rem 0;
    }
    
    /* Food Menu Section */
    .section-quote{
        width: 100%;
        height: 300px;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .what-we-offer{
        background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/pizza.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
    
    .section-quote h1{
        width: 75%;
        color: var(--light-color);
        text-align: center;
        font-size: 3rem;
        line-height: 4rem;
    }
    
    .food-images{
        width: 100%;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        margin: 2rem 0 0 0;
    }

    .food-image:last-child{
        grid-column: 1/4;
    }
    
    .food-image img{
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
    
    .food-image p{
        margin: 1rem 2rem 4rem 2rem;
        text-align:center;
    }
    
    .button{
        padding: 1rem 4rem;
        outline: none;
        border: none;
        background-color: var(--accent-color);
        color: var(--light-color);
        font-size: 1.5rem;
        line-height: 2rem;
        letter-spacing: 0.3rem;
        transition: background-color .3s ease-in;
    }
    
    .menu-btn{
        display: block;
        cursor: pointer;
      
    }
    
    .service-quote{
        background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/party.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
    
    .services-category{
        margin: 3rem auto;
        text-align: center;
        max-width: 640px;
        width: 100%;
        
    }
    
    .services-category span{
        padding: 1rem 2rem;
        color: var(--main-color);
        margin-right: 1rem;
        cursor: pointer;
    }
    
    .services-category span.active{
        border-bottom: 2px solid var(--accent-color);
        color: var(--accent-color);
        font-weight: 600;
    }
    
    .services-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 3rem 0;
    }
    
    
    .services-container .left{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        padding: 5%;
    }
    
    
    
    .services-container .left > .service-item {
        display: none;
    }
    
    .services-container .left > .service-item.active{
        display: block;
    }
    
    
    .services-container .right{
        width: 100%;
        height: 360px;
        background: url('assets/private-event.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .services-container .right.active{
        width: 100%;
        height: 360px;
        background: url('assets/catering.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }
    
    
    /* Contact Us : Location Section */
    
    
    .location-quote{
        background-image:linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(assets/thamel.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
       
    }
    
    .contact-us-wrapper .left{
        text-align:center;
        padding: 0 2rem 4rem 2rem;
    }
    
    .contact-us-wrapper .left .info p{
        display: flex;   
        color: var(--para-color);
       
    }
    
    .contact-us-wrapper .left .info p .loc-text{
        display: none;
    }
    
    .contact-us-wrapper .left .info p ion-icon{
        margin-right: 0.8rem;
        font-size: 1.3rem;
    }
    
    .contact-us-wrapper .left .info p a{
        color: var(--para-color);
    }
    
    .contact-us-wrapper .right{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items:center;
    }
    
    .contact-us-wrapper .right h4{
        text-align: center;
        margin: 1rem;
        text-decoration: underline;
    
    }
    
    .contact-us .right img{
        width: 80%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .contact-us-wrapper{
        max-width: 900px;
        width: 95%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
    }

    /* Footer Styles */
    .footer{
        background-color: var(--main-color);
        /* border-top-left-radius: 125px; */
        width: 100%;
        padding: 3rem;
    }
    
    .footer .wrapper{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3rem;


    }
    
    .col{
        width: 100%;
        border-bottom: 2px solid rgba(0, 0, 0, .05);
        padding-bottom: 3rem;
    }
    
    
    .col .top{
        display: flex;
    }
    
    .col .top .logo{
        width: 60px;
        height: 60px;
    }
    
    .col .top .logo-name{
        margin-left: 5px;
        color: var(--light-color);
        text-transform: uppercase;
        text-align:center;
    }
    
    .logo-name h3{
        font-weight: 600;
    }
    
    .logo-name p{
        font-weight: 500;
        color: var(--secondary-color);
        margin-top:-5px;
    }
    
    .col .bottom{
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    
    .col .bottom a{
        color: var(--secondary-color);
    }
    
    .footer .col h4{
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    .col p{
        font-size: 0.8rem;
        color: var(--light-color);
        margin-bottom: 1rem;
    }
    
    .col ion-icon{
        font-size: 2rem;
        color: var(--light-color);
        margin-right: 2rem;
    }
    
    .opening-hours h5{
        color: var(--light-color);
        margin-top: 2rem;
    }
    
    /* Extended Menu */
    .extended-menu{
        width: 100%;
        position: relative;
    }

    .fixed-section{
        position: fixed;  
        width: 100%;
        /* top: 0; */
        background-color: var(--main-color); 
        z-index: 999;
    }

    .menu-wrapper{
        margin: 7rem auto 0 auto;
    }


    .menu-scroll-div{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        }

    .menu-scroll-div button{
        outline: none;
        border: none;
        background: var(--main-color);
        margin: 0 10px;
        cursor: pointer;
        display: block;
    }

    .menu-scroll-div button ion-icon{
       font-size: 3rem;
       color: var(--accent-color);
    }

    

    .menu-categories{
        color: inherent;
        overflow-x: scroll;
    }


    .menu-categories::-webkit-scrollbar{
        display: none;
    }

    .menu-links{
        /* overflow-x: scroll; */
        display: flex;
        justify-content: space-between;
        transition: transform .3s ease-in;
        position: relative;
    }

    .menu-link{
        flex:1;
        list-style: none;
        padding: 1rem 2rem;
        margin-right: 1rem;
        text-align: center;
        
    }


    .menu-link.active a{
        border-bottom: 1px solid var(--accent-color);
        color: var(--accent-color);
    }

    .menu-link a{
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 600;
        color: var(--light-color);
        padding: 0.5rem;
       
       
    }


    .menu-link a img{
        width:40px;
        margin-bottom: 0.5rem;
    }

    .menu-items-layout{
        max-width: 800px;
        margin: 1rem auto 3rem auto;
        border-radius: 5px;
        box-shadow: 0 5px 15px 5px rgba(0, 0, 0, .08);
    }

    .img-container{
        width: 100%; 
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align:center;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .img-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .menu-content-container{
        margin-bottom: 2rem;
        background: var(--light-color);
    }

    .menu-content-container.hide{
        display:none;
    }

    .menu-content-container:first-child{
        display:block;
    }

    .menu-content-container .wrapper{
        margin: 1rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }


    .menu-cat{
       display: flex;
       flex-direction: column;
       justify-content: flex-start;
       padding: 0 3rem 2rem 0;
       width: 100%;
       }

    .menu-cat h3{
        color: var(--main-color);
        letter-spacing: 2px;
        font-size: 3rem;
        margin-bottom: 0.4rem;
        font-weight: 800;
    }

    .menu-cat h6{
        color: rgba(0, 0, 0, .4);
    }

    .menu-content{
        border-left: 4px solid var(--accent-color);
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
        padding: 0 1rem;
        margin: 2rem auto;
        width: 100%;
    }

    
    .menu-content h4{
        padding-bottom: 0.5rem;
        font-weight: 600;
        color: var(--accent-color);
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-content-top h4{
        color: var(--main-color);
    }

    .menu-content p{
        padding: 0.5rem 0;
        letter-spacing: 1.5px;
        text-align: left;
        width: 100%;
    }

 
}

@media only screen and (min-width: 992px) {


    p{
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 1px;
        color: var(--para-color);
    }
    
    h1{
        font-size: 5rem;
        font-weight: 800;
        letter-spacing: 3px;
        line-height: 5.5rem;
    }
    
    h2{
        font-size: 3.4rem;
        font-weight: 600;
        letter-spacing: -1px;
        line-height: 4rem;
    }
    
    h3{
        font-size: 1.9rem;
        font-weight: 400;
        letter-spacing: 1.5px;
        line-height: 2.5rem;
    }
    
    h4{
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        line-height: 1.8rem;
        text-transform: uppercase;
    }
    
    h5{
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        line-height: 2rem;
    }
    
    .wrapper{
        max-width: 1200px;
        width: 95%;
        margin: 0 auto;
    }
    
    .spacer{
        height: 100px;
        width: 100%;
    }
    
    /* Navbar Section Styling */
    .navbar{
        background-color: var(--light-color);
        padding: 0;
        width: 100%;
        z-index: 100;
    
    }

    .mobile-menu-container{
        display: none;
    }
    
    .logo{
        width: 60px;
        height: auto;
    }
    
    .navbar .wrapper{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link{
        list-style-type: none;
    }
    
    .nav-link a{
        text-transform: uppercase;
        color: var(--dark-color);
        font-weight: 500;
        letter-spacing: 2px;
    }
    
  

    .hamburger-menu{
        display: none;
    }
    
    /* Hero Section */
    .hero-section{
        width: 100vw;
        height: calc(100vh - 7rem);
        padding-top: 7rem;
    }
    
    .hero-section .wrapper{
        position: relative;
        width: 100%;

    }
    
    .hero-image{
        width: 560px;
        height: 100%; 
        position: absolute;
        top: 0;
        right: 0;
        /* z-index: 9; */
    }
    
    .hero-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* z-index: 1; */
    }
    
    .hero-text{
        position: relative;
        z-index: 99;
        text-align: left;
        top: 0;
        left: 0;
        width: 52%;
        height: 100%;
    }
    
    .hero-text h1{
        font-size: 5rem;
        line-height: 6rem;
        font-weight: 800;
        margin-bottom: 2rem;
    }
    
    
    
    .scroll-down{
      position: absolute;
      bottom: 50px;
      right: -60px;
      transform:rotate(90deg);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;

    }
    
    .scroll-down span{
        position: absolute;
        bottom: 0;
        right: -20px;
        transform: rotate(270deg);
    }

    
    
    section{
        width: 100%;
        padding: 2rem 0;
    }
    
    section .wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 95%;
    }
    
    section h2{
        position: relative;
        text-align: center;
        z-index: 9;
        margin: 3rem 0 2rem 0;
        
    }
    
    section h2::before{
        width: 30px;
        height: 30px;
        content: '';
        background-color: var(--accent-color);
        position: absolute;
        top: 10px;
        right: -20px;
        z-index: -1;
    }
    
    .section-desc{
        text-align: center;
        max-width: 58%;
    }
    
    .section-desc h2{
        display: inline-block;
    }
    
    section p{
        margin: 0 auto 0.8rem auto;
        text-align:center;
    }
    
    section h3{
        margin: 0 0 2rem 0;
    }
    
    .video{
        width: 100%;
        height: 600px;
        margin: 4rem 0;
    }
    
    /* Food Menu Section */
    .section-quote{
        width: 100%;
        height: 300px;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .what-we-offer{
        background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/pizza.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
    
    .section-quote h1{
        width: 65%;
        color: var(--light-color);
        text-align: center;
        font-size: 5rem;
        line-height: 5.5rem;
    }
    
    .food-images{
        width: 100%;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        margin: 2rem 0 0 0;
    }

    .food-image:last-child{
        grid-row: auto;
        grid-column: auto;
    }
    
    .food-image img{
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
    
    .food-image p{
        margin: 1rem 2rem 4rem 2rem;
        text-align:center;
    }
    
    /* .button{
        padding: 1rem 4rem;
        outline: none;
        border: none;
        background-color: var(--accent-color);
        color: var(--light-color);
        font-size: 1.5rem;
        line-height: 2rem;
        letter-spacing: 0.3rem;
        transition: background-color .3s ease-in;
    }
    
    .menu-btn{
        display: block;
        cursor: pointer;
      
    } */
    
    .service-quote{
        background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),url('assets/party.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
    
    .services-category{
        margin: 3rem auto;
        text-align: center;
        max-width: 640px;
        width: 100%;
        
    }
    
    .services-category span{
        padding: 1rem 2rem;
        color: var(--main-color);
        margin-right: 1rem;
        cursor: pointer;
    }
    
    .services-category span.active{
        border-bottom: 1px solid var(--accent-color);
        color: var(--accent-color);
        font-weight: 600;
    }
    
    .services-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        height: 450px;
        margin: 3rem 0;
    }
    
    .services-container div{
        flex: 1;
    }
    
    .services-container .left{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        padding: 0 5rem;
    }
    
    
    
    .services-container .left > div {
        display: none;
    }
    
    .services-container .left > div.active{
        display: block;
    }
    
    
    .services-container .right{
        width: 100%;
        height: 100%;
        background: url('assets/private-event.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .services-container .right.active{
        width: 100%;
        height: 100%;
        background: url('assets/catering.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }
    
    /* Contact Us : Location Section */
    
    
    .location-quote{
        background-image:linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(assets/thamel.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 2rem 0;
        height: auto;
       
    }

    .location-quote h1{
        width: 70%;
    }
    
    .contact-us-wrapper .left{
        text-align:center;
        padding: 0 2rem 4rem 2rem;
    }
    
    .contact-us-wrapper .left .info p{
        display: flex;   
        color: var(--para-color);
        margin: 1rem 2rem 1rem 0;
       
    }
    
    .contact-us-wrapper .left .info p .loc-text{
        display: none;
    }
    
    .contact-us-wrapper .left .info p ion-icon{
        margin-right: 0.8rem;
        font-size: 1.3rem;
    }
    
    .contact-us-wrapper .left .info p a{
        color: var(--para-color);
    }
    
    .contact-us-wrapper .right{
        flex: 1;
    }
    
    .contact-us-wrapper .right h4{
        text-align: center;
        margin: 1rem 0;
        text-decoration: underline;
    
    }
    
    .contact-us .right img{
        width: 100%;
    }
    
    .contact-us-wrapper{
        max-width: 900px;
        width: 95%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items:center;
    }
    
    .contact-us-wrapper div{
        flex: 1;
    
    }
    
    /* Footer Styles */
    .footer{
        background-color: var(--main-color);
        width: 100%;
        padding: 4.5rem;
    }
    
    .footer .wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 5rem;
    }
    
    .col{
        width: 350px;
    }
    
    .col .top{
        display: flex;
        flex-direction:row;
    }

    .col .top .logo{
        width: 60px;
        height: 60px;
    }
    
    .col .top .logo-name{
        margin-left: 5px;
        color: var(--light-color);
        text-transform: uppercase;
        text-align:center;
    }
    
    .logo-name h3{
        font-weight: 600;
    }
    
    .logo-name p{
        font-weight: 500;
        color: var(--secondary-color);
        margin-top:-5px;
    }
    
    .col .bottom{
        margin-top: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .col .bottom a{
        color: var(--secondary-color);
    }
    
    .footer .col h4{
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    .col p{
        font-size: 0.8rem;
        color: var(--light-color);
    }
    
    .col ion-icon{
        font-size: 2rem;
        color: var(--light-color);
        margin-right: 2rem;
    }
    
    .opening-hours{
        width: 600px;
    }
    
    .opening-hours h5{
        color: var(--light-color);
        margin-top: 2rem;
    }

    .extended-menu{
        width: 100%;
        
    }

    .fixed-section{
        position: fixed;  
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--light-color); 
        z-index: 999;
    }


    .menu-scroll-div{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        }

    .menu-scroll-div button{
        outline: none;
        border: none;
        background: var(--light-color);
        margin: 0 10px;
        cursor: pointer;
        display: block;
    }

    .menu-scroll-div button ion-icon{
       font-size: 3rem;
       color: var(--accent-color);
    }

    

    .menu-categories{
        color: inherent;
        overflow-x: scroll;
    }


    .menu-categories::-webkit-scrollbar{
        display: none;
    }

    .menu-links{
        /* overflow-x: scroll; */
        display: flex;
        justify-content: space-between;
        transition: transform .3s ease-in;
        position: relative;
    }

    .menu-link{
        flex:1;
        list-style: none;
        padding: 1rem 2rem;
        margin-right: 1rem;
        text-align: center;    
    }


    .menu-link.active a{
        border-bottom: 1px solid var(--accent-color);
        color: var(--accent-color);
    }

    .menu-link a{
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 600;
        color: var(--main-color);
        padding: 0.5rem;
    }


    .menu-link a img{
        width:40px;
        margin-bottom: 0.5rem;
    }

    .menu-wrapper{
        margin: 7rem auto 0 auto;
    }

    .menu-items-layout{
        max-width: 800px;
        margin: 1rem auto 3rem auto;
        border-radius: 5px;
        box-shadow: 0 5px 15px 5px rgba(0, 0, 0, .08);
    }

    .img-container{
        width: 100%; 
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align:center;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .img-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .menu-content-container{
        margin-bottom: 2rem;
        background: var(--light-color);
    }

    .menu-content-container.hide{
        display:none;
    }

    .menu-content-container:first-child{
        display:block;
    }

    .menu-content-container .wrapper{
        margin: 1rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }


    .menu-cat{
       display: flex;
       flex-direction: column;
       justify-content: flex-start;
       padding: 0 3rem 1rem 0;
       width: 100%;
       }

    .menu-cat h3{
        color: var(--main-color);
        letter-spacing: 2px;
        font-size: 3rem;
        margin-bottom: 0.4rem;
        font-weight: 800;
    }

    .menu-cat h6{
        color: rgba(0, 0, 0, .4);
    }

    .menu-content{
        border-left: 4px solid var(--accent-color);
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
        padding: 0 1rem;
        margin: 2rem auto;
        width: 100%;
    }

    
    .menu-content h4{
        padding-bottom: 0.5rem;
        font-weight: 600;
        color: var(--accent-color);
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-content-top h4{
        color: var(--main-color);
    }

    .menu-content p{
        padding: 0.5rem 0;
        letter-spacing: 1.5px;
        text-align: left;
        width: 100%;
    }

 
}




