       :root {
            --primary-color: #3a5939;
            --secondary-color: #587c57;
            --dark-color: #0e160e;
            --light-color: #f0f8f6;
            --accent-color: #7aaf78;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color) !important;            
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }

        .btn-order {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-order:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            background: linear-gradient(135deg, #7ea2611a 0%, #7ea2611a 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1.2s ease;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
        }

        /* About Section */
        .about-section {
            padding: 150px 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }

        .icon-box {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .icon-box:hover {
            transform: translateY(-10px);
        }

        .icon-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .icon-box h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 150px 0;
            background: var(--light-color);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 30px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 111, 71, 0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 3rem;
        }

         /* Menu Cards */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .menu-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .menu-card-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

        .menu-card-body {
            padding: 2rem;
            text-align: center;
        }

        .menu-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .menu-card-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Menu Section */
        .menu-section {
            padding: 150px 0px 100px 0px;
            background: white;
        }

        .menu-card {
            background: var(--light-color);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .menu-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .menu-card-body {
            padding: 1.5rem;
        }

        .menu-card h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Locations Section */
        .locations-section {
            padding: 100px 0;
            background: var(--light-color);
        }

        .location-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
        }

        .location-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .location-card p {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .location-card i {
            color: var(--accent-color);
            margin-right: 10px;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer h5 {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }
        
        /* .hero-subtitle {
            font-size: 1.2rem;
            margin-top: 10px;
        } */
        .location-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .location-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .location-card:hover .location-image {
            transform: scale(1.05);
        }
        .location-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgb(58 89 57 / 38%);
            color: #fff;
            padding: 15px;
            text-align: center;
        }

        .dine-section {
            background-color: #f9f9f9;      
            padding: 40px 0;
        }
        .dine-subtitle {
            font-size: 1.1rem;          
            margin-bottom: 30px;
            text-align: center; 


        }        .reservation-section {
            text-align: center;     
            padding: 40px 0;
        }
        .btn btn-order {
            background-color: #d2691e;      
            color: #fff;
            border-radius: 20px;      
            padding: 10px 20px; 
            text-decoration: none;
            margin-top: 15px;
        }
        .btn btn-order:hover {
            background-color: #a0522d;      
        }
        .catering-image {           
            width: 100%;      
            height: 300px;      
            object-fit: cover;
            border-radius: 10px;
            margin-top: 20px;


        }
        .btn-catering {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;



            border-radius: 20px;


            background-color: #d2691e;
        }
        .btn-catering:hover {

            background-color: #a0522d;
        }
        .language-btn{

    background: transparent;
    border: 2px dotted var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
        }
        .language-btn:hover {
    background: var(--primary-color);
    color: white;
}