@charset "UTF-8";
@use "sass:math";

.indicator {
	position: absolute;
	top: var(--pos-y);
	left: var(--pos-x);
	height: var(--height-set);
	width: var(--width-set);
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}
        :root {
	--theme-color: red;
	--title-color: #1f1f1f;
	--body-color: #5c6574;
	--smoke-color: #f8f8f8;
	--smoke-color2: #f4efe3;
	--black-color: #000;
	--black-color2: #101018;
	--gray-color: #bdbdbd;
	--white-color: #fff;
	--body-bg: #fff;
	--light-color: #8e97a6;
	--yellow-color: #ffb539;
	--success-color: #28a745;
	--error-color: #dc3545;
	--th-border-color: red;
	--title-font: "ZCOOL XiaoWei", sans-serif;
	--body-font: "Open Sans", sans-serif;
	--style-font: "Great Vibes", cursive;
	--icon-font: "Font Awesome 6 Pro";
	--main-container: 1290px;
	--container-gutters: 30px;
	--section-space: 20px;
	--section-space-mobile: 10px;
	--section-title-space: 60px;
	--ripple-ani-duration: 5s
}

.theme-golden {
	--theme-color: #c59d5f;
	--body-bg: #f4efe3
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--body-color);
	background-color: var(--body-bg);
	line-height: 26px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	cursor: url("../img/theme-img/cursor.webp"), auto
}

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Navigation Styles */
        .navbar {
            background: #b50f19;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
			max-height: 85px;
        }
        @media (max-width: 767px) {
    .navbar {
        padding: 0;
    }
}

        .navbar-brand img {
            height: 180px;
			margin-top: 75px;
        }
        
        /* ========================================
   MOBILE: Navbar Brand Logo
   ======================================== */

@media (max-width: 767px) {
    .navbar-brand img {
        height: 57px !important;
        margin-top: 0 !important;
        width: auto;
        max-width: 180px; /* Optional: prevent logo from being too wide */
        object-fit: contain;
    }
}

/* Extra small devices (optional finer control) */
@media (max-width: 480px) {
    .navbar-brand img {
        height: 50px !important; /* Slightly smaller for very small screens */
        max-width: 150px;
    }
    .about-image-area {
    position: relative;
    padding-right: 0px!important;
    }
    .about-content {
        padding-left: 0;
        margin-top: 0px!important;
    }
    .about-subtitle{font-weight:400!important;}
}

        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: #FFD700 !important;
        }

        .navbar-nav .nav-link.active {
            color: #FFD700 !important;
        }

        /*.navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #FFD700;
        }*/

        .navbar-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .navbar-icons a {
            color: #fff;
            font-size: 1.2rem;
            transition: color 0.3s;
            background: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .navbar-icons a:hover {
            background: #FFD700;
            color: #1e3c72;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FF6B35;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 50%;
        }

        /* Hero Slider Styles */
        .hero-slider-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 80px;
        }
        @media (max-width: 767px) {
    .hero-slider-section {
        margin-top: 60px;
    }
}

        /* .hero-slider-section .carousel-item {
            height: 100vh;
            min-height: 600px;
        } */

        .hero-slider-section .carousel-item img {
                height: 100%;
                object-fit: cover;
                object-position: center;
                max-height: 980px;
            }
            
            @media (max-width: 767px) {
                .hero-slider-section .carousel-item img {
                    max-height: 230px;
                }
            }
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            z-index: 1;
        }

        .custom-caption {
            position: absolute;
            top: 70%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 100%;
            padding: 20px;
        }
        @media (max-width: 767px) {
                    .custom-caption {
                        top: 60%;
                    }
                }

        .restaurant-brand {
            margin-bottom: 20px;
        }

        .brand-logo {
            max-width: 150px;
            height: auto;
            margin-bottom: 15px;
        }

        .brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin: 0;
            font-weight: 700;
        }

        .signature-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #FFD700;
            letter-spacing: 8px;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .dish-name {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: #fff;
            font-style: italic;
            margin-bottom: 40px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            line-height: 1.2;
        }

        .btn-explore {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: #fff;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .btn-explore1 {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: #fff;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        @media (max-width: 767px) {
                .btn-explore {
                    padding: 6px 18px;
                }
            }

        .btn-explore:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
            color: #fff;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            padding: 10px;
        }
        @media (max-width: 767px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
                    width: 25px;
                    height: 25px;
                }
            }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            line-height: 60px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: #fff;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Promotional Banner Section */
        .theme-1-banner1 {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .slider-small .item {
            padding: 10px;
        }

        .slider-small img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .slider-small img:hover {
            transform: scale(1.05);
        }

        .slider-small .owl-dots {
            margin-top: 30px;
        }

        .slider-small .owl-dot {
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background: #ddd;
            border-radius: 50%;
            display: inline-block;
            transition: background 0.3s;
        }

        /*.slider-small .owl-dot.active {*/
        /*    background: #FF6B35;*/
        /*}*/

        .slider-small .owl-dot:hover {
            background: #FF6B35;
        }

        /* Menu/Trending Section Styles */
        .menu {
            padding: 10px 0;
            background: #fff;
            position: relative;
        }

        .menu-heading h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
            margin: 0;
        }

        .menu-heading .sub-lables {
            font-size: 1.1rem;
            color: #666;
        }

        .color-changer {
            color: #000;
        }

        .menu .card {
            border: 1px solid #eee;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .menu .card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .menu .card-image {
            overflow: hidden;
        }

        .menu .card-image img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .menu .card:hover .card-image img {
            transform: scale(1.05);
        }

        .image-disclaimer {
            font-size: 0.75rem;
        }

        .menu .cat-name {
            background: #FFF3E0;
            border-radius: 5px;
            font-size: 0.85rem;
            color: #FF6B35;
            font-weight: 500;
        }

        .menu .item-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            margin: 0;
        }

        .menu .item-card-title a {
            text-decoration: none;
            color: inherit;
        }

        .menu .item-card-footer {
            padding: 15px;
            background: #fff;
        }
        .img3{
            padding:80px 100px;
        }

        .menu .btn-secondary {
            background: #000;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .menu .btn-secondary:hover {
            background: #FF6B35;
            color: #fff;
        }

        .menu .loader {
            width: 16px;
            height: 16px;
            border: 2px solid #fff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .fs-9 {
            font-size: 0.75rem;
        }

        .fs-8 {
            font-size: 0.85rem;
        }

        .fs-7 {
            font-size: 0.95rem;
        }

        .fs-6 {
            font-size: 1rem;
        }

        .line-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .fw-500 {
            font-weight: 500;
        }

        /* Dining Experience Section */
        .dining-experience-section {
            padding: 80px 0;
            background: #fff;
        }

        .experience-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .experience-card:hover {
            transform: translateY(-10px);
        }

        .experience-card img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .experience-card:hover img {
            transform: scale(1.05);
        }

        .experience-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 40px 30px;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .experience-card:hover .experience-overlay {
            opacity: 1;
        }

        .experience-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 10px;
            color: #FFD700;
        }

        .experience-content p {
            font-size: 1.1rem;
            margin: 0;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .dish-name {
                font-size: 3.5rem;
            }
            
            .brand-title {
                font-size: 2.5rem;
            }
            
            .signature-text {
                font-size: 1.5rem;
                letter-spacing: 5px;
            }

            .navbar-collapse {
                background:#333;
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }

            .slider-small img {
                height: 350px;
            }

            .menu-heading h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-slider-section .carousel-item {
                height: 28vh;
                min-height: 180px;
            }
            
            .dish-name {
                font-size: 2.5rem;
            }
            
            .brand-title {
                font-size: 2rem;
            }
            
            .signature-text {
                font-size: 1.2rem;
                letter-spacing: 3px;
            }
            
            .experience-card img {
                height: 350px;
            }

            .navbar-icons {
                margin-top: 15px;
            }

            .slider-small img {
                height: 300px;
            }

            .menu .card-image img {
                height: 200px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .animate__fadeInUp {
            animation: fadeInUp 0.8s ease;
        }

        .sec-padding {
            padding: 80px 0;
        }
         @keyframes moveShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10px, 10px) rotate(5deg); }
            50% { transform: translate(0, 20px) rotate(0deg); }
            75% { transform: translate(-10px, 10px) rotate(-5deg); }
        }
        
        @keyframes spinShape {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Hover effect for button */
        .about-cta a:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
        }
        
        .about-cta a:hover div {
            left: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .about-content-wrapper {
                padding-left: 30px !important;
            }
            .sec-title {
                font-size: 40px !important;
            }
        }
        
        @media (max-width: 991px) {
            .about-content-wrapper {
                padding-left: 0 !important;
                padding-top: 30px;
                text-align: center;
            }
            .about-subtitle-wrapper > div {
                flex-direction: column;
                gap: 10px;
            }
            .about-subtitle-wrapper .shape-line {
                display: none;
            }
            .sec-title {
                font-size: 36px !important;
            }
        }
        
        @media (max-width: 767px) {
            .chefs-special-badge {
                width: 80px !important;
                height: 80px !important;
                top: 10px !important;
                right: 10px !important;
            }
            .chefs-special-badge div div {
                font-size: 9px !important;
            }
            .sec-title {
                font-size: 28px !important;
            }
        }

          .signature-images-section {
            position: relative;
        }
        
        /* Image Card */
        .image-card {
            margin: 15px;
            padding: 0;
            border-radius: 15px;
            overflow: hidden;
            
        }
        
        .signature-img {
            width: 100%;
            
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .image-card:hover .signature-img {
            transform: scale(1.05);
        }
        
        /* Owl Carousel Navigation */
        .signature-images-carousel .owl-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
        }
        
        .signature-images-carousel .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
           
            color: #1a1a1a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        .signature-images-carousel .owl-nav button:hover {
          
            transform: translateY(-50%) scale(1.1);
        }
        
        .signature-images-carousel .owl-nav .owl-prev {
            left: 20px;
        }
        
        .signature-images-carousel .owl-nav .owl-next {
            right: 20px;
        }
        
        /* Dots */
        .signature-images-carousel .owl-dots {
            margin-top: 30px;
            text-align: center;
        }
        
        .signature-images-carousel .owl-dot {
            display: inline-block;
            margin: 0 6px;
            padding: 0;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .signature-images-carousel .owl-dot span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: block;
            transition: all 0.3s ease;
            margin: 0;
        }
        
        .signature-images-carousel .owl-dot.active span {
         
            width: 30px;
            border-radius: 6px;
        }
        
        .signature-images-carousel .owl-dot:hover span {
            background: #fff;
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .signature-img {
                height: 450px;
            }
        }
        
        @media (max-width: 991px) {
            .signature-images-section {
                padding: 60px 0;
            }
            
            .signature-img {
                height: 400px;
            }
            
            .image-card {
                margin: 10px;
            }
        }
        
        @media (max-width: 767px) {
            .signature-images-section {
                padding: 40px 0;
            }
            
            .signature-img {
                height: 350px;
            }
            
            .signature-images-carousel .owl-nav {
                display: none;
            }
        }
        
        @media (max-width: 575px) {
            .signature-img {
                height: 300px;
            }
            
            .image-card {
                margin: 8px;
                border-radius: 10px;
            }
        }

        .kns-testimonials {
    padding: 50px 0;
    background: linear-gradient(180deg, #008080 0%, #0a1420 100%);
    position: relative;
    overflow: hidden;
}

.kns-testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 200, 57, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.kns-testimonials .section-title-wrap {
    margin-bottom: 60px;
}

.kns-testimonials .section-title {
    font-size: 2.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.kns-testimonials .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.5px;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(247, 200, 57, 0.15);
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f7c839, #008080);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(247, 200, 57, 0.3);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 28px;
    color: #f7c839;
    opacity: 0.6;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating li {
    color: #f7c839;
    font-size: 16px;
}

.card-body {
    flex: 1;
    margin-bottom: 25px;
}

.card-body p {
   
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7c839, #008080);
    color: #0e1927;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.reviewer-info h5 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviewer-info span {
    color: #f7c839;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.3px;
}

/* Swiper Customization */
.kns-testimonial-swiper {
    padding-bottom: 30px;
}

.kns-testimonial-swiper .swiper-pagination {
    bottom: 0;
}

.kns-testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.kns-testimonial-swiper .swiper-pagination-bullet-active {
    background: #f7c839;
    width: 24px;
    border-radius: 5px;
}

.kns-testimonial-swiper .swiper-button-next,
.kns-testimonial-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(247, 200, 57, 0.2);
    color: #f7c839;
    transition: all 0.3s ease;
}

.kns-testimonial-swiper .swiper-button-next:hover,
.kns-testimonial-swiper .swiper-button-prev:hover {
    background: #f7c839;
    color: #0e1927;
    transform: scale(1.1);
}

.kns-testimonial-swiper .swiper-button-next::after,
.kns-testimonial-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .kns-testimonials { padding: 30px 0; }
    .kns-testimonials .section-title { font-size: 2.2rem; }
    .testimonial-card { padding: 28px 24px; }
}

@media (max-width: 767px) {
    .kns-testimonials { padding: 20px 0; }
    .kns-testimonials .section-title { font-size: 1.8rem; }
    .testimonial-card { padding: 24px 20px; }
    .card-body p { font-size: 14px; }
    .reviewer-avatar { width: 44px; height: 44px; font-size: 14px; }
    .reviewer-info h5 { font-size: 15px; }
    .kns-testimonial-swiper .swiper-button-next,
    .kns-testimonial-swiper .swiper-button-prev { display: none; }
}
/* =============================== */
/* ==========================================
MODERN ABOUT SECTION
WITH SCROLL ANIMATIONS
========================================== */

.about-modern-section{
    padding: 30px 0;
    background: #fffaf3;
    overflow: hidden;
    position: relative;
}

/* ==========================================
SCROLL REVEAL ANIMATION
========================================== */

.reveal{
    opacity: 0;
    transform: translateY(70px);
    transition: all 1s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.reveal-left{
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.reveal-left.active{
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.reveal-right{
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.reveal-right.active{
    opacity: 1;
    transform: translateX(0);
}

/* Delay Classes */
.delay-1{
    transition-delay: 0.2s;
}

.delay-2{
    transition-delay: 0.4s;
}

.delay-3{
    transition-delay: 0.6s;
}

.delay-4{
    transition-delay: 0.8s;
}

.delay-5{
    transition-delay: 1s;
}

/* ==========================================
IMAGE AREA
========================================== */

.about-image-area{
    position: relative;
    padding-right: 40px;
}

.main-about-img{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.main-about-img img{
    width: 100%;
    /* height: 650px; */
    object-fit: cover;
    transition: 0.6s ease;
    border-radius: 25px;
}

.main-about-img:hover img{
    transform: scale(1.05);
}

/* EXPERIENCE CARD */
.experience-card{
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #ff6b35;
    color: #fff;
    width: 180px;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: floatY 4s ease-in-out infinite;
    z-index: 2;
}

.experience-card h2{
    font-size: 48px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.experience-card p{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* FLOATING CARD */
.floating-food-card{
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff;
    padding: 18px 22px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: floatY 5s ease-in-out infinite;
    z-index: 2;
}

.floating-food-card i{
    width: 45px;
    height: 45px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
}

.floating-food-card span{
    font-weight: 600;
    color: #232323;
    font-size: 15px;
}

/* ==========================================
CONTENT AREA
========================================== */

.about-content{
    padding-left: 30px;
}

.about-subtitle{
    color: #ff6b35;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-title{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #232323;
    margin-bottom: 25px;
}

.about-description{
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* ==========================================
FEATURE BOXES
========================================== */

.about-features{
    margin-top: 40px;
}

.feature-box{
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon{
    min-width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 15px;
    text-align: center;
    line-height: 60px;
    margin-right: 18px;
}

.feature-icon i{
    color: #fff;
    font-size: 24px;
}

.feature-content h5{
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #232323;
}

.feature-content p{
    margin: 0;
    color: #777;
    line-height: 1.7;
    font-size: 15px;
}

/* BUTTON */
.about-btn-area{
    margin-top: 40px;
}

.about-btn{
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.about-btn:hover{
    background: #232323;
    color: #fff;
    transform: translateY(-3px);
}

/* FLOAT */
@keyframes floatY{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 1199px){

    .about-title{
        font-size: 40px;
    }

    .main-about-img img{
        height: 580px;
    }

}

@media (max-width: 991px){

    .about-modern-section{
        padding: 80px 0;
    }

    .about-content{
        padding-left: 0;
        margin-top: 40px;
    }

    .about-title{
        font-size: 36px;
    }

    .main-about-img img{
        height: auto;
    }

    .experience-card{
        left: 20px;
        bottom: 20px;
        width: 150px;
    }

    .floating-food-card{
        right: 20px;
    }

}

@media (max-width: 767px){

    .about-modern-section{
        padding: 30px 0;
    }

    .about-title{
        font-size: 30px;
    }

    .about-subtitle{
        font-size: 15px;
    }

    .feature-box{
        flex-direction: column;
    }

    .feature-icon{
        margin-bottom: 15px;
    }

    .experience-card{
        width: 130px;
        padding: 18px 15px;
    }

    .experience-card h2{
        font-size: 34px;
    }

    .floating-food-card{
        padding: 12px 15px;
        gap: 10px;
    }

    .floating-food-card span{
        font-size: 13px;
    }

}

@media (max-width: 575px){

    .about-title{
        font-size: 26px;
    }

    .about-description{
        font-size: 15px;
    }

    .experience-card{
        display:none;
        /*position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;*/
    }

    .floating-food-card{
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        width: fit-content;
    }

}

/* --------------------------------------------------------------
MODERN BLOG SECTION STYLES
---------------------------------------------------------------*/

.blog-section-modern {
    padding:20px 0;
}

/* Modern Card Container */
.modern-blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

/* Media/Image Area */
.card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modern-blog-card:hover .card-media img {
    transform: scale(1.1); /* Zoom Effect */
}

/* Date Badge Overlay */
.card-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ff6b35;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Content Area */
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.card-title a {
    color: #232323;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #ff6b35;
}

.card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes read more to bottom */
    text-align:justify;
}

/* Read More Link Animation */
.read-more-link {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #232323;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------------------------
ANIMATIONS (Fade In Up & Right)
---------------------------------------------------------------*/

/* Base State for Animated Elements */
.animate-fade-in-up,
.animate-fade-in-right {
    opacity: 0;
    animation-fill-mode: forwards; /* Keeps state after animation */
}

/* Fade In Up Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Right Keyframes */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply Animations via Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .blog-section-modern {
        padding: 50px 0;
    }
    
    .card-media {
        height: 200px;
    }
    
    .card-title {
        font-size: 18px;
    }
}
/* ===============================================product========== */
/* --------------------------------------------------------------
MODERN MENU SECTION STYLES
---------------------------------------------------------------*/

.menu-section-modern {
    padding: 20px 0;
}

/* Modern Menu Card */
.menu-card-modern {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.menu-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

/* Image Area */
.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.menu-card-modern:hover .menu-card-image img {
    transform: scale(1.1); /* Zoom Effect */
}

/* Badges */
.menu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.menu-badge.veg {
    background: #28a745;
}

.menu-badge.dessert {
    background: #ff6b6b;
}

/* Content Area */
.menu-card-content {
    padding: 15px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title and Price Row */
.menu-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

/* Dotted Line Leader */
.menu-header-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 2px dotted #e0e0e0;
    z-index: 1;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin: 0;
    background: #fff;
    padding-right: 10px;
    z-index: 2;
    position: relative;
    line-height: 1.3;
}

.menu-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    background: #fff;
    padding-left: 10px;
    z-index: 2;
    position: relative;
    white-space: nowrap;
}

/* Description */
.menu-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
    flex-grow: 1;
}

/* Order Button */
.order-btn {
    color: #232323;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.order-btn i {
    transition: transform 0.3s ease;
}

.order-btn:hover {
    color: #ff6b35;
}

.order-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .menu-section-modern {
        padding: 15px 0;
    }
}

@media (max-width: 767px) {
    .menu-card-image {
        height: 240px;
    }
    
    .menu-title {
        font-size: 16px;
    }
    
    .menu-price {
        font-size: 16px;
    }
}

/*=============================================*/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px!important;
    }
}
    /* ========================================
       Button Styles
       ======================================== */
    .btn-explore1 {
        display: none;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        color: #fff;
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        text-decoration: none;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    
    

    @media (max-width: 767px) {
        .btn-explore1 {
            display: inline-flex;
            padding: 6px 18px;
            font-size: 0.9rem;
        }
    }

    /* ========================================
       Navigation Styles
       ======================================== */
    .navbar {
        background: #b50f19;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        max-height: 85px;
    }

    @media (max-width: 767px) {
        .navbar {
            padding: 0px 0;
            max-height: none;
        }
    }

    .navbar-brand img {
        margin-top: 75px;
        transition: all 0.3s ease;
    }
    
    /* MOBILE: Navbar Brand Logo */
    @media (max-width: 767px) {
        .navbar-brand img {
            height: 57px !important;
            margin-top: 0 !important;
            width: auto;
            max-width: 180px;
            object-fit: contain;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        .navbar-brand img {
            height: 50px !important;
            max-width: 150px;
        }
        .navbar-nav .nav-link {
        color: #fff !important;
        font-weight: 300!important;
        margin: 10px 10px;
        transition: color 0.3s;
        position: relative;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               px;
    }
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        font-weight: 500;
        margin: 10px 10px;
        transition: color 0.3s;
        position: relative;
        font-size: 20px; 
    }

    .navbar-nav .nav-link:hover {
        color: #FFD700 !important;
    }

    .navbar-nav .nav-link.active {
        color: #FFD700 !important;
    }
    .navbar-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .navbar-icons a {
        color: #fff;
        font-size: 1.2rem;
        transition: color 0.3s;
        background: rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        text-decoration: none;
    }

    .navbar-icons a:hover {
        background: #FFD700;
        color: #1e3c72;
    }

    .cart-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #FF6B35;
        color: #fff;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 50%;
    }

    /* ========================================
       Hero Slider Styles
       ======================================== */
    .hero-slider-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-top: 80px;
    }

    @media (max-width: 767px) {
        .hero-slider-section {
            margin-top: 60px;
        }
    }
    
    .btn-explore3 {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: #fff;
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        @media (max-width: 767px) {
                .btn-explore3 {
                    padding: 6px 18px;
                }
            }

        .btn-explore3:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
            color: #fff;
        }