@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6, p.text-amaranth{
    font-family: 'Amaranth', sans-serif;
}
.rg-20{
    row-gap: 20px;
}
.rg-30{
    row-gap: 30px;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
nav ul{
    column-gap: 40px;
}
header{
    padding: 15px 0px;
    border-bottom: 1px solid #BDBDBD;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}
a{
    width: fit-content;
}
img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
h1{
    font-weight: 400;
    font-size: 64px;
    color: #22798D;
}
a.btn-primary{
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 30px;
    background-color: #F49E35;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border: none;
}
a.btn-primary:hover{
    background-color: #22798D;
    color: #fff;
}
.hero-section{
    background-image: url('../images/home-hero.webp');
    padding-top: 150px;
    padding-bottom: 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slick Slider Styles */

/* Slick Slider Styles */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* Hide slider until initialized to prevent FOUC */
.hero-section .slick-slider:not(.slick-initialized) {
    opacity: 0;
    visibility: hidden;
    max-height: 480px; /* Prevent massive layout shift */
    overflow: hidden;
    display: flex; /* Show items horizontally if visible */
}

.hero-section .slick-slider:not(.slick-initialized) .slide-item {
    min-width: 25%; /* Assume desktop 4 items */
    display: none; /* Hide extra items on mobile via JS if needed, but CSS is safer */
}

/* Mobile responsive pre-init */
@media (max-width: 991px) {
    .hero-section .slick-slider:not(.slick-initialized) .slide-item {
        min-width: 33.33%;
    }
}
@media (max-width: 767px) {
    .hero-section .slick-slider:not(.slick-initialized) .slide-item {
        min-width: 50%;
    }
}
@media (max-width: 479px) {
    .hero-section .slick-slider:not(.slick-initialized) .slide-item {
        min-width: 100%;
    }
}

.hero-section .slick-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in;
}

.slick-slider .slide-item {
    padding: 0 10px;
}
.hero-section .slick-slider .slide-item img, 
.shimmer-card {
    width: 100%;
    height: 380px; /* Mobile base height */
    object-fit: cover;
    border-radius: 10px;
}

/* Tablet */
@media (min-width: 768px) {
    .hero-section .slick-slider .slide-item img,
    .shimmer-card {
        height: 480px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-section .slick-slider .slide-item img,
    .shimmer-card {
        height: 600px;
    }
}
.slick-slider .slick-slide {
    transition: transform 0.3s ease;
}
.slick-slider .slick-track {
    display: flex;
    align-items: center;
}
/* Hide default arrows */
.hero-section .slick-slider .slick-prev,
.hero-section .slick-slider .slick-next {
    display: none !important;
}

/* Top Rated Slider Custom Arrows */
.top-rated-slick-slider .slick-prev,
.top-rated-slick-slider .slick-next {
    width: 24px;
    height: 24px;
    z-index: 10;
}
.top-rated-slick-slider .slick-prev:before,
.top-rated-slick-slider .slick-next:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../images/slider-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}
.top-rated-slick-slider .slick-prev {
    left: -24px;
}
.top-rated-slick-slider .slick-prev:before {
    transform: rotate(180deg);
}
.top-rated-slick-slider .slick-next {
    right: -24px;
}
.top-rated-slick-slider .slick-prev:hover:before,
.top-rated-slick-slider .slick-next:hover:before {
    opacity: 0.7;
}
.hero-section .slick-track .slide-item:nth-child(even){
    margin-top: 100px;
}
.slick-dots{
   position: relative;
}
header.transparent {
    background-color: rgb(255 255 255 / 48%);
    backdrop-filter: blur(8px);
    padding: 10px 0px;
}
header .logo img{
    transition: all 0.3s ease-in-out;
}
.header-logo {
    width: 8rem;
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}
header.transparent .header-logo {
    width: 100px;
}

.footer-logo-img{
    width: 10rem;
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}
@media (max-width: 767px){
    .footer-logo-img{
        width: 6rem;
    }
}

h3{
    font-size: 32px;
    line-height: 120%;
}
h2{
    font-size: 36px;
    line-height: 120%;
}
img.deco-images{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.each-rated-slide{
    position: relative;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
}
.each-rated-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #d9d9d900, #d9d9d900),
linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 9;
}
.each-rated-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.each-rated-slide-content{
    position: absolute;
    bottom: 0px;
    color: #fff;
    z-index: 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    gap: 15px;
    flex-wrap: wrap;
}
.each-rated-slide-content p.text-amaranth{
    font-size: 16px;
    font-weight: 400;
    font-family: 'Amaranth', sans-serif;
}
.each-rated-slide-content .right-side p.text-amaranth{
    font-size: 24px;
}
.each-rated-slide-content p{
    font-size: 14px;
    font-weight: 300;
}
.deco-images-title{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
a.view-hidden-button{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.each-rated-slide:hover img{
    transform: scale(1.05);
}
.special-offer-section{
    background-color: #ECEBEA;
}
.special-offer-item img{
    height: 260px;
    object-fit: cover;
}
.special-offer-item{
    padding: 6px 6px 15px 6px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
p.text-small{
    font-size: 12px;
    font-weight: 300;
}
a.order-now-button{
    font-size: 16px;
    color: #22798D;
    white-space: nowrap;
    padding: 7px 30px;
    border-radius: 30px;
    border: 1px solid #22798D;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}
a.order-now-button:hover{
    background-color: #22798D;
    color: #fff;
}
p.price-tag{
    white-space: nowrap;
}
.top-side p{
    font-size: 18px;
}
.contact-details img{
    height: 24px;
    width: 24px;
    object-fit: contain;
    margin-right: 24px;
}
.contact-details{
    margin-bottom: 25px;
}
.contact-image img{
    border-radius: 0px;
}
.contact-details a{
    color: #000;
    text-decoration: none !important;
}
.contact-details a:hover{
    color: #22798D;
}
footer{
    background: #F3FDFF;
}
.social-links{
    column-gap: 20px;
}
.top-footer{
    border-bottom: 1px solid #ADC8CE;
}
.bottom-footer p{
    color: #22798D
}
nav ul li a{
    color: #393939;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
nav ul li.active a{
    color: #22798D;
    font-weight: 500;   
    text-decoration: underline !important;
}
nav ul li.active a:hover{
    color: #22798D;
}
nav ul li.contact a{
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid #393939;
}
nav ul li.contact a:hover{
    background-color: #22798D;
    color: #fff;
    border-color: #22798D;
}
nav ul li.contact a:hover svg path{
    fill: #fff;
}
.red-text{
    color: #E93842;
    font-size: 22px;
}
.hero-section.menu-bg{
    background-image: url('../images/menu-bg.png');
}
.menu-tabs-section ul li a{
    color: #707070 !important;
    font-size: 18px !important;
    font-family: 'Amaranth', sans-serif;
    border: none !important;
    background-color: transparent !important;
    margin-bottom: 0px !important;
}
#menuTabs{
    gap: 30px;
    border-bottom: none !important;
}
.menu-tabs-section ul li a.active{
    background-color: #FFF7C2 !important;
    border-radius: 0px !important;
    color: #000 !important;
}
.menu-tabs-section .menu-item{
    box-shadow: 1px 1px 6px 1px #0000001A;
    padding: 6px 6px 20px 6px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

/* Search Food Styles */
.menu-search-section{
    position: -webkit-sticky;
    position: sticky;
    top: 98px;
    z-index: 900;
    background: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom : 1px solid #BEBEBE;
}


/* Compact Scrollable Tabs on Mobile */
@media (max-width: 767px) {
    .menu-search-section .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-bottom: none;
        padding-bottom: 5px; /* scrollbar spacing */
        margin-right: -15px; /* pull right edge */
    }
    .menu-search-section .nav-item {
        flex: 0 0 auto;
    }
    /* Hide scrollbar */
    .menu-search-section .nav-tabs::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }
}
.search-input-wrapper {
    position: relative;
    max-width: 400px;
    margin-left: auto;
}
.search-input-wrapper input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.search-input-wrapper input:focus {
    outline: none;
    border-color: #22798D;
    box-shadow: 0 0 0 3px rgba(34, 121, 141, 0.1);
}
.search-input-wrapper .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.search-results {
    margin-top: 20px;
}
#noResults {
    color: #888;
    font-size: 18px;
}
.search-food{
    width: 100%;
}

/* Lazy Loading Styles */
img.lazy-load {
    opacity: 0;
    background-color: #f0f0f0;
    transition: opacity 0.3s ease-in-out;
}

img.lazy-loaded {
    opacity: 1;
}

/* Loading animation for images */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

img.lazy-load {
    background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
}
@media (min-width: 992px){
    .pt-100.pt-5{
        padding-top: 100px !important;
        padding-bottom: 0px !important;
    }
    .py-100.py-5{
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

@media (min-width: 768px){
    .menu-item img{
        max-height: 175px;
        width: 100%;
    }
}

@media (max-width: 992px){
    .hero-section .slick-slider .slick-slide img{
        height: 200px;
    }
}
/* Hamburger Menu Styles */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #393939;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #393939;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.navbar-toggler-icon::before {
    top: -7px;
}
.navbar-toggler-icon::after {
    top: 7px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (max-width: 767.98px) {
    header .d-flex {
        flex-wrap: wrap;
    }
    header nav#navbarMenu {
        width: 100%;
        order: 3;
        display: none !important;
        background: #eeebea;
        position: absolute;
        left: 0px;
        padding: 20px;
        top: 108px;
        z-index: 999;
        height: 100vh;
    }
    header nav#navbarMenu.show {
        display: block !important;
    }
    header.transparent nav#navbarMenu {
        top: 71px;
    }
    header nav#navbarMenu ul {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 0;
        row-gap: 15px;
    }
    header nav#navbarMenu ul li.contact {
        margin-top: 10px;
    }
    header nav#navbarMenu ul li.contact a {
        padding: 8px 20px;
    }
    header .nav-item{
        margin-bottom: 20px;
    }
    header .nav-item:last-child{
        margin-bottom: 0px;
    }
}

@media (max-width: 768px){
    h1{
        font-size: 48px;
    }
    h2{
        font-size: 36px;
    }
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-card {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 1000px 100%;
    animation: shimmer 1s linear infinite forwards;
    border-radius: 10px;
    margin: 0 10px; 
    display: inline-block;
}

.shimmer-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    position: relative;
    /* Match slider margin if needed */
}

.shimmer-container .shimmer-card {
    flex: 0 0 calc(25% - 20px); /* Desktop: 4 items */
}

@media (max-width: 1199px) {
    .shimmer-container .shimmer-card {
        flex: 0 0 calc(33.33% - 20px); /* 3 items */
    }
}

@media (max-width: 991px) {
    .shimmer-container .shimmer-card {
        flex: 0 0 calc(50% - 20px); /* 2 items */
    }
}

@media (max-width: 767px) {
    .shimmer-container .shimmer-card {
        flex: 0 0 calc(100% - 20px); /* 1 item */
    }
}

@media (max-width: 479px){
    .hero-section .slick-slider .slick-slide img{
        height: 150px;
    }
    .header-logo {
        width: 6rem;
    }
    header.transparent .header-logo {
        width: 70px;
    }
}

/* Hours of Operation Responsive Styles */
.hours-day {
    display: inline-block;
    width: 100px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .hours-day {
        width: 85px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .hours-day {
        width: 75px;
        font-size: 13px;
    }
}