:root{
    --font-roboto: "Roboto", sans-serif;
    --font-playfair: "Playfair Display", serif;
    --color-menu-orange: #fb923c;
    --color-orange-dark: #c2410c;
    --color-orange: #ea580c;
}

html, body{
    height: 100%;
    background: #fff;
    color: #374151;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

p span{
    font-weight: 700;
}

.topbar-fluid{
    position: fixed;
    z-index: 9;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    transition: all 0.3s ease;
}

.topbar-scroll{
    background: #000000f2;
    box-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
}

.topbar-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-logo-container{
    height: 60px;
}

.topbar-logo-container img{
    height: 100%;
}

.topbar-menu-container{
    display: flex;
    gap: 2rem;
}

.topbar-menu-item{
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    font-weight: 500;
}

.topbar-menu-item:hover{
    text-decoration: none;
    color: var(--color-menu-orange);
}

.hero-fluid{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg-container{
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.hero-container{
    position: relative;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}

.hero-inner{
    width: 100%;
    max-width: 56rem;
    margin: auto;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-logo-wrap{
    height: 100px;
}

.hero-logo-wrap img{
    height: 100%;
}

.hero-title{
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle{
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-intro{
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.intro-button{
    padding: 0.75rem 2.5rem;
    background: var(--color-orange);
    color: #fff;
    font-size: 1.125rem;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.intro-button:hover{
    background: var(--color-orange-dark);
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.about-fluid{
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(#fffbeb, #fff);
}

.about-row{
    max-width: 72rem;
    margin: auto;
}

.about-photo{
    width: 100%;
}

.about-photo img{
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px #00000040;
}

h2{
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

h2 span{
    color: #1a1a1a;
}

.about-intro{
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-orange);
}

.about-divider{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-orange);
    font-size: 1.5rem;
}

.about-divider-line{
    flex: 1;
}

.about-divider-line:first-child{
    height: 1px;
    background: linear-gradient(to right, #ea580c, transparent);
}

.about-divider-line:last-child{
    height: 1px;
    background: linear-gradient(to left, #ea580c, transparent);
}

.delicacies-fluid{
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
}

.section-intro{
    font-size: 1.125rem;
}

.deli-row, .blogs-row, .review-row{
    margin-top: 4rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.deli-col{
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;
    height: 100%;
}

.deli-header{
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.deli-header-photo{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.deli-header-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deli-header-over{
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    background: linear-gradient(to top, #000000b3, transparent);
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}

.deli-title{
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.deli-body{
    padding: 1rem;
    font-size: 0.875rem;
}

.deli-body ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.deli-body li{
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.deli-body li:first-child{
    margin-top: 0;
}

.deli-body li span{
    width: 3px;
    height: 3px;
    border-radius: 5px;
    background: var(--color-orange);
}

.deli-col:hover{
    box-shadow: 0 25px 50px -12px #00000040
}

.deli-col:hover .deli-header-photo{
    transform: scale(1.2);
}

.main-button{
    border: none;
    background: var(--color-orange);
    color: #fff;
    font-size: 1.1rem;
    padding: 0.7rem 2.5rem;
    border-radius: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
    display: block;
    text-decoration: none;
    margin: auto;
    width: max-content;
}

.main-button:hover{
    transform: scale(1.05);
    background: var(--color-orange-dark);
    color: #fff;
    text-decoration: none;
}

.order-fluid{
    padding: 0;
    position: relative;
}

.order-bg-container{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.order-bg-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-bg-over{
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    background: rgba(0,0,0,0.6);
}

.order-container{
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-title{
    color: #fff;
}

.order-title span{
    color: #fb923c;
}

.order-logo-wrap{
    height: 60px;
    margin-bottom: 4rem;
}

.order-logo-wrap img{
    height: 100%;
}

.order-button-container{
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.order-button-swiggy, .order-button-zomato{
    font-weight: 700;
    text-transform: none;
}

.order-button-zomato{
    background: #dc2626;
}

.order-button-zomato:hover{
    background: #b91c1c;
}

.order-p{
    font-size: 0.875rem;
    margin-bottom: 0;
}

.order-phone{
    color: #fb923c;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.order-phone:hover{
    color: #fdba74;
    text-decoration: none;
}

.blogs-fluid{
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #fff, #fffbeb);
}

.blogs-col{
    box-shadow: 0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;
    transition: all 0.4s ease;
    background: #fff;
    border-radius: 0.75rem;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.blogs-photo-wrap{
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blogs-photo-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blogs-photo-over{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(to top, #0009, #0000);
    z-index: 1;
}

.blogs-body-wrap{
    padding: 1.3rem;
}

.blogs-date{
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogs-date i{
    font-size: 1.1rem;
}

.blogs-title{
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
    transition: all 0.4s ease;
    font-weight: 700;
    line-height: 1.75rem;
}

.blogs-p{
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.25rem;
}

.blogs-link{
    display: flex;
    align-items: center;
    color: var(--color-orange);
    gap: 4px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.blogs-link i{
    font-size: 1.2rem;
}

.blogs-link:hover{
    text-decoration: none;
    color: var(--color-orange);
}

.blogs-col:hover{
    box-shadow: 0 25px 50px -12px #00000040;
}

.blogs-col:hover .blogs-link{
    gap: 12px;
}

.blogs-col:hover .blogs-photo-wrap img{
    transform: scale(1.1);
}

.blogs-col:hover .blogs-title{
    color: var(--color-orange);
}

.review-fluid{
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
}

.review-intro{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    align-items: center;
    gap: 6px;
}

.review-intro-stars{
    color: #facc15;
    font-size: 22px;
    display: flex;
    line-height: 1;
}

.review-intro span{
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 4px;
    color: #111827;
}

.review-col{
    box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    padding: 1.2rem;
    transition: all 0.4s ease;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.review-header{
    display: flex;
    gap: 1rem;
}

.review-avatar{
    background: #ffedd5;
    color: var(--color-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
}

.review-name{
    font-weight: 700;
    color: #111827;
}

.review-stars{
    display: flex;
    color: #fbcb15;
    line-height: 1;
    margin-top: 0.25rem;
}

.review-time{
    font-size: 0.75rem;
}

.review-p{
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #374151;
    margin-top: 1rem;
}

.review-col:hover{
    box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
}

.review-location-container{
    background: linear-gradient(to right, #fff7ed, #fffbeb);
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.review-location-container i{
    font-size: 3rem;
    color: var(--color-orange);
}

.review-location-title{
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.review-location-container .section-p{
    color: #4b5563;
}

.social-fluid{
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #fffbeb , #fff);
}

.social-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.insta-button{
    display: flex;
    align-items: center;
    height: 40px;
    background: linear-gradient(to right, #9333ea , #db2777);
    border-radius: 40px;
    color: #fff;
    gap: 10px;
    width: max-content;
    padding: 0 24px;
    margin: auto;
    margin-top: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.insta-button i{
    font-size: 1.1rem;
}

.insta-button:hover{
    box-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
    background: linear-gradient(to right, #7e22ce , #be185d);
    text-decoration: none;
    color: #fff;
}

.insta-grid-wrap{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.insta-grid-item{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-radius: 0.75rem;
    cursor: pointer;
}

.insta-grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.insta-grid-over{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(to top, #000000b3 ,#0000004d , #0000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    padding-top: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.insta-grid-over i{
    font-size: 1.3rem;
}

.insta-grid-item:hover img{
    transform: scale(1.1);
}

.insta-grid-item:hover .insta-grid-over{
    opacity: 1;
    padding-top: 0.5rem;
}

.footer-fluid{
    padding: 0;
    padding-top: 4rem;
    padding-bottom: 3rem;
    background: #111827;
    color: #9ca3af;
    line-height: 1.625;
}

.footer-logo-wrap{
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-logo-wrap img{
    height: 100%;
}

.footer-insta{
    margin-top: 1.5rem;
    color: #fb923c;
    display: flex;
    gap: 6px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    width: max-content;
}

.footer-insta i{
    font-size: 1.2rem;
}

.footer-insta:hover{
    color: #fdba74;
    text-decoration: none;
}

.footer-menu-title{
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-menu-item{
    color: #9ca3af;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-menu-item:hover{
    text-decoration: none;
    color: #fdba74;
}

.footer-contact-item{
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
}

.footer-contact-item i{
    font-size: 1.6rem;
    color: #fb923c;
    margin-top: 4px;
}

.contact-menu-item{
    color: #9ca3af;
    display: block;
}

.contact-menu-item:hover{
    text-decoration: none;
    color: #fdba74;
}

.footer-hours-title{
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.footer-copy{
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
}

.mobile-menu-btn{
    display: none;
}

.mobile-menu-fluid{
    display: none;
}










@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}

@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}

@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}

@media (max-width: 786px){
    .topbar-menu-container{
        display: none;
    }
    
    .mobile-menu-btn{
        display: flex;
        color: #fff;
        font-size: 28px;
        width: 40px;
        justify-content: center;
    }
    
    h2{
        font-size: 2rem;
    }
    
    .social-title{
        flex-direction: column;
    }
    
    .order-button-container{
        flex-direction: column;
    }
    
    .footer-copy{
        flex-direction: column;
    }
    
    .insta-grid-wrap{
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-logo-wrap{
        height: 80px;
    }
    
    .footer-menu-title{
        margin-top: 1.5rem;
    }
    
    .review-row .col-md-3{
        margin-top: 1rem;
    }
    
    .review-row .col-md-3:first-child{
        margin-top: 0;
    }
    
    .blogs-row .col-md-4{
        margin-top: 1rem;
    }
    
    .blogs-row .col-md-4:first-child{
        margin-top: 0;
    }
    
    .deli-row .col-md-3{
        margin-top: 1rem;
    }
    
    .deli-row .col-md-3:first-child{
        margin-top: 0;
    }
    
    .about-row .col-md-6:nth-child(2){
        margin-top: 2rem;
    }
    
    .mobile-menu-fluid{
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 8;
        padding: 1rem;
        padding-top: 100px;
        overflow: hidden;
    }
    
    .mobile-menu-container .topbar-menu-item{
        display: block;
        padding: 10px;
    }
}