/* google font*/




/* Dancing script*/

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap');
/* roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
/* cookie */
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');

/*CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* main */
:root {
    --bg-color-1: #ffffff;
    --bg-color-2: #f5f0f9;
    --grey-color: rgba(44, 27, 152, 0.2);
    --heading-color: #180564;
    --text-color: #180564;
    --primary-color: rgb(225, 4, 4);
    --font-family-1: 'Roboto', sans-serif;
    --font-family-1: 'Cookie', sans-serif;
    --nav-item-border-bottom: lpx solid rgba(0, 0, 0, 0.07);
    --color-scheme: light;
}

.dark-mode {
    --bg-color-1: #080b0e;
    --bg-color-2: #101418;
    --grey-color: #383737;
    --heading-color: #ffffff;
    --text-color: #ffffffcc;
    --primary-color: #d70400;
    --font-family-1: 'Roboto', sans-serif;
    --font-family-1: 'Cookie', sans-serif;
    --nav-item-border-bottom: lpx solid rgba(255, 255, 255, 0.07);
    --color-scheme: dark;
}


body {
    overflow-x: hidden;
}

/*scroll bar*/
::-webkit-scrollbar {
    width: 10px;
    background: var(--bg-color-2);
    color: white;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

/* Reusable Classes*/
.flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Default settings */
section {
    padding: 50px 5rem 35px 5rem;
    margin-bottom: -1px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    vertical-align: middle;
}

h1 {
    font-size: 48px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 1.2;
}

h2 {
    color: var(--heading-color);

}

h3 {
    font-family: var(--font-family-2);
    letter-spacing: 0.1em;
    font-size: 34px;
    margin-bottom: 15px;
    line-height: 28px;
    color: var(--primary-color)
}

h4 {
    line-height: 1.8;
    color: var(--heading-color);
    font-size: 24px;
}

h5 {
    color: var(--primary-color);
    font-size: 20px;

}

p {
    padding: 5px 0;
    font-size: 18px;
    color: var(--text-color);
    line-height: 28px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

ul {
    display: flex;
    list-style: none;
}

/*prenav text*/

#prenav-text {
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 2;

}

#prenav-text .flex-row {
    margin: 0 4rem;
    justify-content: space-between;
    align-items: center;
}

#prenav-text .contact-info,
#prenav-text .opening-times {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

#prenav-text .contact-info span {
    color: white;
}

#prenav-text .social-links {
    margin: 0;
}

#prenav-text .social-links li a {
    color: white;
    font-size: 17px;
    margin: 0 10px;
}

/*nav bar*/

#navbar {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    height: 5.5rem;
    margin: 0 4rem;
    justify-content: space-between;
    padding: 0 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
}


.logo h5 {
    font-size: 22px;
    color: var(--primary-color);
    display: inline-block;

}

.logo h5 span {
    color: white;
}
.lgo {
    position: absolute;
    z-index: 5;
    left: 10px;
    top: 10px;
    opacity: 0.75;
    border-radius: 5px;
    
    
    
    width: 20%;
    height: 80%;
}

.nav-items {
    display: flex;
    justify-content: space-around;
}

.nav-items .nav-links {
    color: white;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.nav-items .nav-links:hover {
    font-size: 17px;
    color: var(--primary-color);
}

.nav-btns {
    gap: 10px;
}

.nav-icon i {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-btn-wrapper {
    display: none;
}

#navbar.fixed {
    padding: 0 4.5rem;
    margin: 0;
    position: fixed;
    top: 0;
    border-radius: 0;
    height: 4rem;
    background-color: var(--bg-color-1);
}

#navbar.fixed .logo h5 {
    color: var(--heading-color);
}

#navbar.fixed .logo h5 span {
    color: var(--primary-color);

}

#navbar.fixed .nav-items .nav-links {
    color: var(--heading-color);
}

#navbar.fixed .nav-items .nav-links:hover {
    color: var(--primary-color);
}

#navbar.fixed .nav-icon i {
    color: var(--heading-color);
}





























/* carousel  from slides css*/
@import url();
.container{
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #eee;
    margin: 0;
    font-size: 12px;

}
/* carousel */
.carousel {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: -1px;
    position: relative;
}
.carousel .list .item {
    position: absolute;
    inset: 0 0 0 0;

}
.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 6px 6px 3px #0004;
}
.carousel .list .item .content .author {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 10px;
    margin-top: 15%;
    text-shadow: 1px black;
}
.carousel .list .item .content .title,
.carousel .list .item .content .topic {
    font-weight: bold;
    font-size: 5em;
    line-height: 1.3em;
}
.carousel .list .item .content .topic {
    color: var(--primary-color);
}

.carousel .list .item .content .buttns{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
    
    
}
.carousel .list .item .content button{
    border: 0.05px solid grey;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: var(--font-family-1);
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 2px 2px 4px #000;
    
    
}
.carousel .list .item .content button:hover {
    color: #fff;
    background-color: #180564;
}
.carousel .list .item .content button:nth-child(2){
    background-color: transparent;
    color: #eee;
    border: 1px solid #eee;
    
}
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 1;
    display: flex;
    gap: 20px;
    
    
}
.thumbnail .item {
    border-radius: 18px;
    overflow: hidden;
    width: 130px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
    border-bottom: 3.5px solid #2d2727 ;
    border-left: 2.5px solid #2d2727 ;
    box-shadow: 3px 3px 10px #000;

}
.thumbnail .item img {
    width: 100%;
    height: 100%;
}
.thumbnail .item .content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin-top: 80px;
}
.thumbnail .item .content .title {
    font-weight: bold;
}
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 15px;
    align-items: center;
    

}
.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: 0.5px solid black;
    font-family: monospace;
    color: #fff;
    font-weight: bold;
    font-size: large;
    transition: .3s;
    z-index: 1;
    box-shadow: 2px 2px 2px #000;
}
.arrows button:hover {
    background-color: #eee;
    color: #555;
}
.carousel .list .item:nth-child(1){
    z-index: 1;
}
.carousel .list .item:nth-child(1) .author,
.carousel .list .item:nth-child(1) .title,
.carousel .list .item:nth-child(1) .topic,
.carousel .list .item:nth-child(1) .des,
.carousel .list .item:nth-child(1) .buttns {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
    to{
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}
.carousel .list .item:nth-child(1) .title {
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(1) .topic {
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(1) .des {
    animation-delay: 1.6s;
}
.carousel .list .item:nth-child(1) .buttns {
    animation-delay: 1.8s;
}
/* efect next click */
.carousel.next .list .item:nth-child(1) img{
    width: 130px;
    height: 150px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    border-radius: 20px;
    animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage {
    to{
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }
}
.carousel.next .thumbnail .item:nth-last-child(1){
    width: 0;
    overflow: hidden;
    animation: showThumbnail 0.5s linear 1 forwards;
} 
@keyframes showThumbnail {
    to{
        width: 150px;
    }
}
.carousel.next .thumbnail{
    transform: translateX(150px);
    animation: transformThumbnail .5s linear 1 forwards;
}
@keyframes transformThumbnail{
    to{
        transform: translateX(0);
    }
}
/* effect prev click */
.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}
.carousel.prev .list .item:nth-child(2) img{
    position: absolute;
    bottom: 0;
    left: 0;
    animation: outImage 0.5s linear 1 forwards;
}
@keyframes outImage{
    to{
        width: 130px;
        height: 150px;
        border-radius: 20px;
        left: 50%;
        bottom: 50px;
    }
}
.carousel.prev .thumbnail .item:nth-child(1){
    width: 0;
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.prev .list .item:nth-child(2) .author,
.carousel.prev .list .item:nth-child(2) .title,
.carousel.prev .list .item:nth-child(2) .topic,
.carousel.prev .list .item:nth-child(2) .des,
.carousel.prev .list .item:nth-child(2) .buttns {
    animation: contentOut 1.5s linear 1 forwards;
}
@keyframes contentOut {
    to{
        transform: translateX(150px);
        filter: blur(20px);
        opacity: 0;
    }

}
.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}
/* time */
.time {
    width: 0%;
    height: 5px;
    background-color: #f1683a;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
}
.carousel.next .time,
.carousel.prev .time {
    width: 100%;
    animation: timeRunning 2s linear 1 forwards;
}
@keyframes timeRunning {
    to{
        width: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        margin-top: 5%;
        padding-right: 0;
    } 
    .carousel .list .item .content .title {
        font-size: 30px;
    }
    
}



/* styles for home section of about page */
.autho {
    font-size: 25px;
    margin-top: 12%;
}
.titl {
    font-size: 60px;
}
.de  {
    font-size:20px ;
}
.btt {
    width: 20%;
    height: 20px;
}




















/* Home */
#home {
    padding: 0;
    margin-bottom: -10px;
    /* mine */

}

#home .slide{
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    margin-left: -1px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home .slide1 {
    
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/.images/banner1.jpg);


}

#home .slide2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/banner2.jpg);
}

#home .slide .content {
    text-align: center;
    margin-top: 40px;
}

#home .slide .content .sub-heading {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    letter-spacing: 5px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 10px;
    position: relative;
    line-height: 2;
    z-index: 0;
    text-shadow: 0px 2px 2px black;
}

#home .slide .content .heading {
    color: white;
    line-height: 1;
    font-family: 'Dancing Script', cursive;
    font-size: 10vw;
    font-weight: 400;
    margin-bottom: 40px;
}

#home .slide .content .sub-heading-2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    z-index: 0;
    letter-spacing: 5px;
    text-shadow: 0px 2px 2px black;
}



#home .slide .content .sub-heading-2::after,
#home .slide .content .sub-heading-2::before {
    content: "";
    display: inline-block;
    margin: 0 2rem;
    width: 70px;
    transform: translateY(-5px);
    height: 2px;
    background-color: var(--primary-color);
}

#home .home-carouse .owl-dots {
    position: absolute;
    left: -3px;
    right: 0;
    bottom: 100px;
    width: 100%;
    text-align: center;
}

.owl-dot {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    margin: 0 3px;

}

.owl-dot.active {
    border-color: white !important;

}

.owl-dot span {
    margin: 2px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.owl-dot.active span {
    background-color: white !important;
}

/*log in */
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #23232a;
}
.loginbox{
    position: relative;
    width: 380px;
    height: 420px;
    background: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
}
.loginbox::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent,
    transparent, var(--primary-color), #ffd000, #111111);
    z-index: 1;
    transform-origin: bottom right ;
    animation: animate 6s linear infinite;
}
.loginbox::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent,
    transparent, var(--primary-color), #ffd000, #111111);
    z-index: 1;
    transform-origin: bottom right ;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}
.borderLine {
    position: absolute;
    top: 0;
    inset: 0;
}
.borderLine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent,
    transparent, #ffffff, #ff0000, #111111);
    z-index: 1;
    transform-origin: bottom right ;
    animation: animate 6s linear infinite;
    animation-delay: -1.5s;
}
.borderLine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent,
    transparent, #ffffff, #ff0000, #111111);
    z-index: 1;
    transform-origin: bottom right ;
    animation: animate 6s linear infinite;
    animation-delay: -4.5s;
}
@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.loginbox form{
    position: absolute;
    inset: 4px;
    background: #222;
    padding: 10% 40px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.loginbox form h2 {
    color: #fff;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
}
.loginbox form .inputBox{
    position: relative;
    width: 300px;
    margin-top: 35px;

}
.loginbox form .inputBox input {
    position: relative;
    width: 100%;
    padding: 20px 10px 10px;
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    z-index: 10;


}
.loginbox form .inputBox span {
    position: absolute;
    left: 0;
    padding: 20px 0px 10px;
    pointer-events: none;
    color: #8f8f8f;
    font-size: 1em;
    letter-spacing: 0.05em;
    transition: 0.5s;
}
.loginbox form .inputBox input:valid ~ span,
.loginbox form .inputBox input:focus ~ span {
    color: #fff;
    font-size: 0.75em;
    transform: translateY(-34px);
}
.loginbox form .inputBox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s;
    pointer-events: none;
}
.loginbox form .inputBox input:valid ~ i,
.loginbox form .inputBox input:focus ~ i {
    height: 44px;
}

.loginbox form .links{
    display: flex;
    justify-content: space-between;
}
.loginbox form .links a {
    margin: 10px 0;
    font-size: 0.75em;
    color: #8f8f8f;
    text-decoration: none;
}
.loginbox form .links a:hover,
.loginbox form .links a:nth-child(2) {
    color: #fff;
}
.loginbox form input[type="submit"] {
    border: none;
    outline: none;
    padding: 9px 25px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    font-weight: 600;
    width: 100px;
    margin-top: 10px;
}
.loginbox form input[type="submit"]:active {
    opacity: 0.8;
}
/* end of login form*/


/* signup form*/



















































.listing {
    margin: 0;
    right: 0;
    position: absolute;
    width: 20%;
    border-radius: 6px;
    font-size: 1rem;
    
    background-color: rgba(145, 255, 0, 0.43);
    padding: 50px 30px 30px 30px;
    
}
.listing .list .list-item {
    list-style-type: none;
    overflow: auto;
    color: #000;
}
.listing .list .list-item:hover {
    color: var(--primary-color);
    text-decoration: underline;
}



/* About*/
#about {
    padding: 0 4.5rem;
    background-color: var(--bg-color-1);
    justify-content: flex-start;
    position: relative;
}

/*Booking-form*/
.booking-form {
    width: 30%;
    background-color: var(--primary-color);
    padding: 50px 30px 30px 30px;

}

.booking-form span {
    font-size: 30px;
    color: white;
    margin-bottom: 5px;
}

.booking-form h2 {
    font-size: 40px;
    color: white;
    line-height: 0.8;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.booking-form form input,
.booking-form form textarea {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: 1px solid white;
    padding: 12px 10px;
    font-size: 16px;
    color-scheme: dark;
    margin-bottom: 10px;
}

.booking-form form input::placeholder,
.booking-form form textarea::placeholder {
    color: white;
    font-weight: 500;
}

.booking-form form textarea {
    resize: vertical;
    overflow: hidden;
    min-height: 2rem;
}

.btn1 {
    display: inline-block;
    background-color: #fff;
    border: 1px solid white;
    color: black;
    width: 100%;
    font-style: 18px;
    font-weight: 400;
    padding: 20px 30px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}

.btn1:hover {
    background-color: var(--primary-color);
    color: white;
}

/*About Text*/
#about .text-wrapper {
    padding: 10px 60px;
    width: 50%;
}

#about .text-wrapper h1 {
    font-size: 60px;
}

#about .text-wrapper h3 {
    font-size: 28px;
    margin: 20px 0;

}

#about .sign {
    width: 12rem;
    margin-top: 10px;
}

#about .img-wrapper {
    margin-top: auto;
    position: absolute;
    width: 25rem;
    right: 100px;
    bottom: 0;
}

/* Quote*/
#quote {
    padding: 150px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/imgs/11.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;


}

#quote .text-wrapper h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

#quote .text-wrapper h1 {
    color: white;
    font-family: var(--font-family-2);
    font-size: 60px;

}

/*Section Heading*/
.section-heading {
    text-align: center;
    margin: 30px 0;


}

.square-wrapper {
    position: relative;
    margin: 1rem;
}

.square-wrapper::after,
.square-wrapper::before {
    content: "";
    display: inline-block;
    margin: 0 0.5rem;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

.square {
    background-color: var(--primary-color);
    transform: rotate(45deg);
    margin: 0 0.25rem;
}

.square:nth-child(1) {
    width: 6px;
    height: 6px;
}

.square:nth-child(2) {
    width: 10px;
    height: 10px;
}

.square:nth-child(3) {
    width: 6px;
    height: 6px;
}


/* Menu */
.menu-tabs {
    background-image: url(/imgs/two.jpg);

    justify-content: center;
    margin: 20px 0;
    width: 100%;
    padding: 0 1.5rem;
    flex-wrap: nowrap;
    text-align: center;
}

.menu-tab-item {
    color: white;
    font-style: 17px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin: 8px 15px;
    width: 40%;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-color-1);
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    position: relative;
    
}
.mitem {
    color: var(--heading-color);
    right: 0;
    background-color: var(--heading-color);
   
}
.mitem:hover{
    background-color: var(--bg-color-1);
   
}
.mitem h2 {
    color: var(--bg-color-1);
}

.menu-tab-item i {
    font-size: 38px;
    transition: all 0.3s ease-in-out;
    color: var(--primary-color);
    margin-bottom: 10px;
    pointer-events: none;
}

.menu-tab-item span {
    pointer-events: none;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    color: var(--heading-color);
}
.mitem span {
    color: var(--bg-color-1);
}

.menu-tab-item:hover {
    
    background-color: var(--primary-color);
}

.menu-tab-item:hover span,
.menu-tab-item.active span {
    color: white;
}

.menu-tab-item:hover i,
.menu-tab-item.active i {
    color: white;
}

.menu-tab-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
}

.menu-tab-item.active::after {
    opacity: 1;
    visibility: visible;
}

/* menu content */
.menu-tab-content {
    display: none;
    padding: 0 1rem;
}

.menu-tab-content.show {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


.menu-item {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;

}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item .menu-item-inner {
    background-color: var(--bg-color-1);
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-color);
    padding: 20px;
    width: 100%;
}

.menu-item .menu-item-inner .food-img {
    width: 130px;
    display: inline-block;
    margin-right: 15px;
}

.menu-item .menu-item-inner .text {
    width: 100%;
}

.menu-item .menu-item-inner .text .dish-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item .menu-item-inner .text .dish-details h2 {
    white-space: nowrap;
}

.menu-item .menu-item-inner .text .dish-details .line {
    width: 100%;
    margin: 0 10px;
    height: 1px;
    background-color: var(--grey-color);
}

.menu-item .menu-item-inner .text .dish-details .price {
    color: var(--primary-color);
    font-family: var(--font-family-2);
    font-size: 32px;
    
}

.menu-item .menu-item-inner .text .desc {
    columns: var(--text-color);
    font-size: 16px;
}

#menu .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn2 {
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 30px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.btn2:hover {
    color: var(--primary-color);
    background-color: var(--bg-color-1);
}

#events {
    background-image: url();
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/mainitem4.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#events .section-heading h1 {
    font-family: var(--font-family-2);
    font-size: 80px;
    color: white;
}

#events .section-heading .square-wrapper .square,
#events .section-heading .square-wrapper::before,
#events .section-heading .square-wrapper::after {
    background-color: white;
}

#events .events-carousel {
    padding: 0 0.5rem;
}

.event-item {
    display: inline-block;
    padding: 40px;
    background-color: var(--bg-color-2);
    margin: 15px 0;
    position: relative;
}

.event-item .event-name {
    color: var(--heading-color);

    font-size: 24px;
}

.event-item .details {
    color: var(--text-color);
    margin-right: 2px;
    font-size: 15px;
    display: inline-block;
    line-height: 1.3;
}

.event-item .details .icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
    transform: translateY(3px);
}

.event-item .desc {
    font-size: 17px;
    margin-top: 15px;
}

.event-mark {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 35px solid var(--primary-color);
    border-left: 35px solid transparent;
    bottom: 20px;
    right: 20px;
}

#gallery {
    background-color: var(--bg-color-2);
    padding: 70px 0;

}

.gallery-wrapper .gallery-img {
    width: 24rem;
    margin: 10px 5px;
    position: relative;
    overflow: hidden;
}

.gallery-wrapper .gallery-img img {
    transition: all 0.7s ease-in-out;
}

.gallery-wrapper .gallery-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.gallery-wrapper .gallery-img .overlay .icon {
    color: white;
    font-size: 34px;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    text-align: center;
    padding: 0 5rem;
}

.gallery-wrapper .gallery-img:hover img {
    transform: scale(1.05);
}

.gallery-wrapper .gallery-img:hover .overlay {
    opacity: 1;
}

.gallery-wrapper .gallery-img:hover .overlay .icon {
    transform: scale(1);
}

/* Team */
#team {
    background-color: var(--bg-color-1);
}

#team .team-carousel .team-card {
    margin-bottom: 20px;
}

.team-card .text-wrapper {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.team-card .text-wrapper .name {
    font-size: 20px;
}

.team-card .social-links {
    position: absolute;
    top: 25px;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    list-style: none;
}

.team-card:hover .social-links {
    left: 25px;
    opacity: 1;
}

.team-card .social-links .icon {
    background-color: var(--bg-color-1);
    color: var(--heading-color);
    cursor: pointer;
    margin: 2.5px;
    padding: 15px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;

}

.team-card .social-links .icon:hover {
    background-color: var(--primary-color);
    color: white;
}

/*Review */
#reviews {
    background-color: var(--bg-color-2);
}

.review-item {
    padding: 40px;
    background-color: var(--bg-color-1);
    margin: 15px 5px;

}

.review-item .container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;

}

.review-item .container .img-box {
    margin-right: 20px;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.review-item .container .text-holder .desc {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
}

.review-item .container .text-holder .comment {
    font-weight: 400;
}

.review-item .rating {
    margin-top: 10px;
}

.review-item .rating .icon {
    color: rgb(255, 157, 46);
    font-size: 20px;
    transform: translateY(5px);
    margin: 0;
}

/* Blogs*/
#blogs {
    background-color: var(--bg-color-1);
}

#blogs .blog-carousel {
    padding: 0;
}

.blog-post {
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}

.blog-post:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px;
}

.blog-post .img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-post .img-wrapper .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: -100%;
    left: 0;
    transition: all 0.3s ease-in;
}

.blog-post .img-wrapper .overlay .icon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    transition: all 0.8s ease-in-out;
    color: black;
    font-size: 22px;
    padding: 15px;
    border-radius: 50%;
}

.blog-post:hover .img-wrapper .overlay .icon {
    top: 50%;
}

.blog-post:hover .img-wrapper .overlay {
    top: 0;
}

.blog-post .text-wrapper {
    background-color: var(--bg-color-2);
    padding: 1.5rem;

}

.blog-post .text-wrapper .blog-title {
    color: var(--heading-color);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.blog-post .text-wrapper .blog-title:hover {
    color: var(--primary-color);
}

.blog-post .text-wrapper .desc {
    padding-top: 10px;
    line-height: 24px;
}

.blog-post .text-wrapper .time .icon {
    color: var(--primary-color);
    font-size: 25px;
    transform: translateY(5px);
    margin-right: 5px;
}

.blog-post .text-wrapper .time span {
    font-weight: 600;
}

/* Footer Quote */

.footer-quote {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: var(--primary-color);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-quote h1 {
    color: white;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 10px;
}
/* for about footer color change */
.footr {
    background-color: var(--heading-color);
}

.btn3 {
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid white;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;

}

.btn3:hover {
    color: var(--primary-color);
    background-color: white;
}

/*footer*/
footer {
    justify-content: space-between;
    background-color: #101418;

}

/*footer top*/
.footer-top {
    padding: 30px 5rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-top .flex-col {
    width: 15rem;
    margin-bottom: 30px;
}

.footer-top .flex-col .logo-name,
.footer-top .flex-col .heading {
    font-size: 20px;
    color: white;
    margin-top: 10px;
    margin-bottom: 2rem;
    letter-spacing: 3px;

}

.footer-top .flex-col .desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-top .flex-col .social-links {
    margin-top: 10px;
    display: flex;
}

.footer-top .flex-col .social-links li a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-right: 10px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footer-top .flex-col .social-links li a:hover {
    color: white;
    background-color: black;
}

.footer-top .flex-col .timings li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    height: 30px;
}

.footer-top .flex-col .timings li .days {
    color: white;
    font-size: 14px;
}

.footer-top .flex-col .timings li .time {
    color: #858585;
    font-size: 14px;
}

.footer-top .flex-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
}

.footer-top .flex-col a:hover {
    color: var(--primary-color);
}

/* footer bottom */
.footer-bottom {
    background-color: var(--primary-color);
    height: 3.5rem;
    text-align: center;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}



/* Media Queries */
@media (max-width: 1080px) {
    #events .events-carousel {
        padding: 0;
    }

    #about .img-wrapper {
        width: 22rem;
    }

    .gallery-wrapper .gallery-img {
        width: 28vw;
    }
}

@media (max-width: 1030px) {
    #navbar {
        margin: 0 2rem;
    }

    #navbar.fixed {
        padding: 0 1.5rem;
    }

    #team .team-carousel,
    #blogs .blog-carousel {
        padding: 0;
    }

    .booking-form {
        width: 100%;
        margin-bottom: 20px;
    }

    #about .img-wrapper {
        position: static;
        width: 45%;
        margin: 0 auto;
    }

    .footer-top .flex-col {
        width: 20rem;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 980px) {
    .lgo{
        left: 40%;
        height: 70%;
        width: auto;
        opacity: .9;
    }
    h4 {
        font-size: 20px;
    }

    #prenav-text {
        display: none;
    }

    .logo h5 {
        opacity: 0.7;
        font-size: 26px;
        transform: translateY(-1.5px);
        margin-left: 3.75rem;
    }

    .logo h5 span {
        font-size: 26px;
    }

    .menu-btn-wrapper {
        display: block !important;
    }

    #navbar {
        top: 0;
        margin: 0;
    }

    #navbar.fixed {
        padding: 0 25px;
    }

    .nav-items {
        padding: 15px;
        position: absolute;
        flex-direction: column;
        top: 100%;
        overflow: hidden;
        z-index: 999;
        background-color: var(--bg-color-1);
        left: 10px;
        right: 10px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
        transition: all 0.3s ease-in-out;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }
    /* secondary nav items styles come here */
   

    .nav-items li {
        border-bottom: var(--nav-item-border-bottom);
    }

    .nav-items li:last-child {
        border-bottom: none;
    }

    .nav-items .nav-links {
        color: var(--heading-color);
        width: 100%;
        padding: 10px;
        display: block;
    }

    .nav-items.active {
        height: 280px;
        visibility: visible;
        opacity: 1;

    }

    #home .slide .content .heading {
        font-size: 15vw;
        margin: 15px 0;
    }
}

@media (max-width: 850px) {
    #about .text-wrapper h1 {
        font-size: 48px;
    }

    h1 {
        font-size: 40px;
    }

    p,
    .event-item p {
        font-size: 15px !important;
    }

    .menu-tab-item::after,
    .menu-tab-item.active::after {
        display: none;
    }

    .booking-form {
        justify-content: center;
        width: 100%;
        align-items: center;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    .menu-tab-item {
        width: 40%;
    }
}

@media (max-width: 780px) {
    .nav-items .nav-links {
        font-size: 16px;
    }

    section {
        padding: 25px;
    }

    .gallery-wrapper .galler-img {
        width: 45vw;
    }

    .menu-item {
        width: 100%;
    }

    .footer-top {
        padding: 35px 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        margin-left: 0.5rem;
    }

    .logo h5 {
        margin: 0;
    }

    h1 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    #search-form form {
        width: 200px !important;
    }

    #home .slde .content {
        width: 25rem;
        padding: 0 2rem;
    }

    #home .slde .content .sub-heading-2::after,
    #home .slde .content .sub-heading-2::before {
        margin: 0 1rem;
        width: 40px;
    }

    section,
    #menu {
        padding: 35px 10px;
    }

    #about {
        padding: 0 10px;
    }

    .booking-form h2 {
        font-size: 10vw;
    }

    #about .text-wrapper {
        padding: 0;
        width: 100%;
    }

    #about .img-wrapper {
        width: 60%;
    }

    .section-heading {
        margin-bottom: 10px;
    }

    .square-wrapper::after,
    .square-wrapper::before {
        width: 50px;
    }

    #quote .text-wrapper {
        margin: 0 10px;
    }

    #quote .text-wrapper h1 {
        font-size: 48px;
    }

    #quote .text-wrapper h2 {
        font-size: 30px;
    }

    .menu-tab-content {
        padding: 0;
    }

    .menu-tabs {
        padding: 0;
    }

    .menu-tab-item {
        width: 40%;
        margin: 10px;
    }

    .menu-tab-item span {
        font-size: 16px;
    }

    .menu-item {
        padding: 20px 10px;
    }

    .menu-item .menu-item-inner {
        flex-direction: column;
    }

    .menu-item .menu-item-inner .food-img {
        width: 100%;
        margin: 0;
    }

    .menu-item .menu-item-inner .text .dish-details {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 10px;
    }

    .menu-item .text,
    .menu-item .text .price,
    .menu-item .text .dish-details h2,
    .menu-item .text .desc p {
        padding-right: 0 !important;
        width: 100%;
        text-align: center;
    }

    .menu-item .text .desc p {
        font-size: 18px;
    }

    .menu-item .text .dish-details {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .menu-item .text .dish-details .line {
        display: none;
    }

    .gallery-wrapper .gallery-img {
        width: 90vw;
    }

    .review-item .container {
        flex-direction: column;
        text-align: center;
    }

    .review-item .img-box {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .review-item p,
    .review-item .rating {
        text-align: center;
    }

    .footer-top .flex-col {
        width: 100%;
    }

    .footer-quote h1 {
        font-size: 30px;
    }
}

@media (maax-width: 340px) {
    #home .slide .content {
        width: 100%;
    }

    #navbar,
    #navbar.fixed {
        padding: 0 10px;
    }

    .review-item .details {
        font-size: 16px;
    }
}