@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(var(--bg-dark), 1);
    color: rgba(var(--white), 1);
}


:root {
    /* imp: Colors with rgb values only */
    --primary-color: 245, 190, 50;
    --secondary-color: 0, 97, 49;
    --black: 30, 30, 30;
    --white: 255, 255, 255;
    --lt-grey: 245, 245, 245;
    --bg-dark: 24, 22, 21;

    /* Fonts */
    --font-primary: 'HelveticaNeue', Arial, sans-serif;
    --font-secondary: 'Inter', sans-serif;
}


/* titles css start ===============================================*/

.title-xxl {
    font-size: 60px;
    letter-spacing: 0px;
}

.title-lg {
    font-size: 32px;
}

.title-md {
    font-size: 22px;
}

.title-sm {
    font-size: 16px;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

/* titles css end ================================================*/

/* button css start ===============================================*/

.button-secondary {
    padding: 10px 24px;
    border-radius: 0px;
    background-color: transparent;
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: .3s all;
    font-family: "Cormorant SC", serif;
}

.button-secondary:hover {
    background-color: rgba(var(--primary-color), .5);
    color: rgba(var(--primary-color), 1);
}

.button-primary {
    padding: 10px 24px;
    border-radius: 0px;
    background-color: rgba(var(--primary-color), 1);
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--black), 1);
    font-weight: 600;
    font-size: 20px;
    font-family: "Cormorant SC", serif;
    box-shadow: 3px 6px 20px rgba(var(--primary-color), .5);
    width: max-content;
}

.button-primary:hover {
    background-color: rgba(var(--primary-color), .75);
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--black), 1);
}


/* button css end  ================================================*/

.banner-logo {
    height: 80px;
    margin-bottom: 40px;
}

.navbar-toggler-icon {
    color: rgba(var(--primary-color), .5);
    z-index: 1000 !important;

}

.navbar-absolute {
    z-index: 1000;
    position: absolute;
    width: 100%;
}

.nav-item {
    padding: 0 8px;
}

@media (max-width: 576px) {
    .nav-item {
        display: flex;
        justify-content: center;
    }

    .nav-btn-cntnr {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.nav-item .nav-link {
    font-weight: 600;
    color: rgba(var(--white), 1) !important;
    font-size: 20px;
    font-family: "Cormorant SC", serif;

}

.nav-item .nav-link:hover {
    color: rgba(var(--primary-color), 1) !important;
}
.navbar-collapse {
    background-color:  rgba(var(--bg-dark), 1);
    border: 1px solid rgba(var(--primary-color), .5);
    padding: 24px;
    transition: .3s all;
    margin-top: 16px;
}
@media (min-width: 1200px) {
    .navbar-collapse {
    background-color:  transparent;
    margin-top: 0px;
    border: none;
}
}
.brr {
    border: 1px solid red;
}

a {
    color: rgba(var(--white), 1);
    text-decoration: none;
}

a:hover {
    color: rgba(var(--primary-color), 1);
}

.banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 81.63px);
    min-height: 800px;
    position: relative;
    isolation: isolate;
    /* IMPORTANT */
}

.banner::before {
    position: absolute;
    content: '';
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(17, 17, 17, .40) 0%,
            rgba(17, 17, 17, .90) 70%);
    z-index: 0;
}

.banner::after {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(to top, rgba(24, 22, 21, 1), rgba(24, 22, 21, 0));
    z-index: 0;
}

.banner-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    color: rgba(var(--white), 1);
    z-index: 2;
}

.banner-content h1 {
    font-family: "Cormorant SC", serif;
    font-size: 72px;
    line-height: 72px;
    color: rgba(var(--primary-color), 1);
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 48px;
        line-height: 48px;
    }
}

.banner-content h5 {
    font-family: "Great Vibes", cursive;
    letter-spacing: 6px;
}

.banner-content p {
    font-size: 18px;
    font-weight: 400;
}

.banner>* {
    position: relative;
    z-index: 1;
}

.txt-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.txt-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);

}


.txt-clr-primary {
    color: rgba(var(--primary-color), 1);
}


.lt-grey {
    background-color: rgba(var(--lt-grey), 1);
}

.lt-green {
    background-color: rgba(var(--lt-green), 1);
}

.title-container {
    text-align: center;
}

.title-container h5 {
    font-family: "Great Vibes", cursive;
    letter-spacing: 6px;
    color: rgba(var(--white), 1);
}

.title-container h2 {

    font-family: "DM Serif Display", serif;
    color: rgba(var(--primary-color), 1);
    font-size: 42px;
}

@media (max-width: 576px) {
    .title-container h2 {
        font-size: 36px;

    }

    .title-container p {
        font-size: 14px !important;
    }
}

.title-container p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: rgba(var(--white), 1);
}

.spcl-wrap .row:nth-child(even) {
    flex-direction: row-reverse;
}

.spcl-item-img-wrap {
    position: relative;
    overflow: hidden;
}

.spcl-wrap .row:nth-child(even) .spcl-item-img-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(to right,
            rgba(24, 22, 21, 1) 0%,
            rgba(255, 0, 0, 0) 100%);
}

.spcl-wrap .row:nth-child(odd) .spcl-item-img-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(to left,
            rgba(24, 22, 21, 1) 0%,
            rgba(255, 0, 0, 0) 100%);
}

@media (max-width: 576px) {
    .spcl-wrap .row {
        padding-bottom: 16px;
        margin-bottom: 24px;
        position: relative;
        border-bottom: none;
    }

    .spcl-wrap .row::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right,
                transparent,
                #717171,
                transparent);
    }



    .spcl-wrap .row:nth-child(even) .spcl-item-img-wrap::before {

        background: linear-gradient(to right,
                rgba(24, 22, 21, 0) 0%,
                rgba(255, 0, 0, 0) 100%);
    }

    .spcl-wrap .row:nth-child(odd) .spcl-item-img-wrap::before {
        background: linear-gradient(to left,
                rgba(24, 22, 21, 0) 0%,
                rgba(255, 0, 0, 0) 100%);
    }

    .spcl-wrap .content {
        justify-content: start !important;
        height: max-content !important;
    }
}

.spcl-wrap .spcl-item-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.spcl-wrap .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 340px;
}

.spcl-wrap .content h3,
.spcl-wrap .content h2 {
    font-family: "Cormorant SC", serif;
    color: rgba(var(--primary-color), 1);
}




.spcl-wrap .content p {
    font-family: "DM Sans", sans-serif;
    color: rgba(var(--white), .75);
    font-size: 20px;
}

@media (max-width: 576px) {
    .spcl-wrap .spcl-item-img-wrap img {
        height: 150px;
        margin-top: 12px;
    }



    .spcl-wrap .content p {
        font-size: 14px;
    }
}


.menu-slide-item {
    padding: 12px 24px;
    border: 1px solid rgba(var(--white), .75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(var(--white), .75);
    height: 80px;
}

.menu-slide-item.selected-menu {
    border: 1px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
}

.menu-price {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-slider .item {
    padding: 16px;
}

.menu-slide-item p,
.menu-slide-item h6 {
    margin-bottom: 0;
}
.menu-slide-item h6 {
text-transform: uppercase;}

.menu-card {
    font-family: "DM Sans", sans-serif;
    color: rgba(var(--white), 1);
    margin-bottom: 48px;
}
.menu-subheading {
        color: rgba(var(--primary-color), 1);

}
@media (max-width: 576px) {
    .menu-card {
        margin-bottom: 28px;
    }

    .menu-slider .item {
        padding: 8px;
    }
}

.menu-card img {
    width: 100%;

    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
}

.menu-card h6 {
    font-size: 18px;
}

.menu-card p {
    font-size: 14px;
    color: rgba(var(--white), .75);
    margin-bottom: 0;

}

.menu-card .details {
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.menu-card .price {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.brr {
    border: 1px solid red;
}

.brrr {
    border: 3px solid red;
}

.divider {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin: 60px 0;
}

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

.divider .image-slider {
    height: 100% !important;
}

.divider .image-slider img {
    height: 380px;
    object-fit: cover !important;
}

@media (max-width: 576px) {
    .divider {
        height: 250px;
    }

    .divider .image-slider img {
        height: 250px;
    }
}

.footer-content h2 {
    font-family: "Cormorant SC", serif;
    font-size: 56px;
    line-height: 56px;
    color: rgba(var(--primary-color), 1);
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;

}

@media (max-width: 576px) {
    .footer-content h2 {
        font-size: 42px;
        line-height: 42px;

    }
}

.footer-content .footer-info {
    display: flex;
    align-items: start;
    gap: 6px;
    color: rgba(var(--white), 1);
}

.footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-logo img {
    height: 80px;
}

.socials {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-family: "Cormorant SC", serif;
    color: rgba(var(--white), 1);
    margin-top: 40px;
    margin-bottom: 16px;
}

.social-links {
    position: relative;
}

.social-links:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(var(--primary-color), 1);
}
.copyright span {
    color: rgba(var(--primary-color), 1);

}

.copyright {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
        font-size: 14px;
}
.copyright a {
        display: flex;
    align-items: center;
}
.copyright a svg{
    height: 12px;
    margin-top: 5px;
}


.copyright a svg path,
.copyright a svg g {
    fill: #ffffff;
}


.about-content p {
    color: rgba(var(--white), .75);
}

.about-content p strong {
    color: rgba(var(--primary-color), 1);
}

.about-imgs .img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-imgs .img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-imgs .img-3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-col-1 {
    height: 400px;
}

.img-col-2 {
    width: 100%;
    height: 200px;
}

.img-col-3 {
    width: 100%;
    height: 200px;
}

@media (max-width:576px) {
    .img-col-1 {
        height: 250px;
    }

    .img-col-2 {
        width: 100%;
        height: 125px;
    }

    .img-col-3 {
        width: 100%;
        height: 125px;
    }
}

section {
    padding: 60px 0;
}

.menu-slider {
    cursor: grab;
}

.menu-slider .slick-prev.slick-arrow {
    display: none !important;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.slick-prev {
    left: 15px;
}

@media (max-width: 576px) {
    .image-slider .slick-next {
    right: 15px !important;
}
}

.custom-arrow:hover {
    background: rgba(0, 0, 0, 0.85);
}

/* .slick-next.slick-arrow {
    display: none !important;
} */

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    color: rgba(var(--primary-color), 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width:576px) {
    .menu-slider .slick-next {
        right: -14px !important;
    }
}



.whatsapp-float {
    position: fixed;
    z-index: 1000;
    
}

@media (max-width: 576px) {
    .whatsapp-float {
        top: 8px;
        right: 12px;
        bottom: auto;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        top: auto;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        top: auto;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        top: auto;
    }
}

@media (min-width: 1201px) {
    .whatsapp-float {
        bottom: 40px;
        right: 40px;
        top: auto;
    }
}


.time-list-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid;
    border-image: linear-gradient(
        to right,
        rgba(var(--bg-dark), 1),
        #464646,
        rgba(var(--bg-dark), 1)
    ) 1;
}
.time-list-item .fw-bold {
  color: rgba(var(--primary-color), 1);
}
