<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
    <title>Garam Bowl: Authentic Indian Soups & Cafe in Pune</title>
    <meta name="description" content="Discover Garam Bowl in Koregaon Park, Pune. Enjoy warm, authentic Indian soups, handmade snacks, and a cozy cafe experience. Dine-in, takeaway, catering, and ready-to-eat packs available. Join our community!">
    <meta name="keywords" content="Garam Bowl, Indian soups, cafe Pune, Koregaon Park cafe, Pune snacks, Indian snacks, best cafe Pune, Pune restaurants, ready to eat soup, catering Pune, Indian food Pune, community cafe Pune">
    <meta property="og:title" content="Garam Bowl: Authentic Indian Soups & Cafe in Pune">
    <meta property="og:description" content="Discover Garam Bowl in Koregaon Park, Pune. Enjoy warm, authentic Indian soups, handmade snacks, and a cozy cafe experience.">
    <meta property="og:type" content="website">
    <meta property="og:url" content="[Your Website URL]">
    <meta property="og:image" content="images/og-image-garam-bowl.jpeg">

    <!-- Tailwind CSS 3.0.3 -->
    <script src="https://cdn.tailwindcss.com?v=3.0.0"></script>

    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">

    <style>
        :root {
            --color-primary: #E55733;
            --color-secondary: #F5EFE6;
            --color-accent: #FFC107;
            --color-text-dark: #333333;
            --color-text-light: #FFFFFF;
            --color-background-light: #FFFFFF;
            --color-background-dark: #4A2E2E;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--color-text-dark);
            line-height: 1.6;
            background-color: var(--color-background-light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--color-text-dark);
            font-weight: 600;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.4rem; }
        h4 { font-size: 1.2rem; }

        @media (min-width: 768px) { /* md breakpoint */
            h1 { font-size: 3.5rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 1.8rem; }
            h4 { font-size: 1.5rem; }
        }
         @media (min-width: 1024px) { /* lg breakpoint */
             h1 { font-size: 4rem; }
         }


        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-text-light);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
            min-width: 44px; /* Ensure touch target size */
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .btn-primary:hover {
            background-color: #c94426; /* Slightly darker primary */
        }

        .btn-ghost {
            border: 2px solid var(--color-secondary);
            color: var(--color-text-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.3s ease, color 0.3s ease;
             min-width: 44px; /* Ensure touch target size */
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
             text-align: center;
        }
         .btn-ghost:hover {
            background-color: var(--color-secondary);
            color: var(--color-text-dark);
        }

         .btn-secondary {
             background-color: var(--color-accent);
             color: var(--color-text-dark);
             padding: 0.75rem 1.5rem;
             border-radius: 0.5rem;
             font-weight: 600;
             transition: background-color 0.3s ease;
              min-width: 44px; /* Ensure touch target size */
             min-height: 44px;
             display: inline-flex;
             align-items: center;
             justify-content: center;
              text-align: center;
         }
         .btn-secondary:hover {
             background-color: #ffb300; /* Slightly darker accent */
         }

        .section-padding {
            padding-top: 3rem; /* py-12 */
            padding-bottom: 3rem; /* py-12 */
            padding-left: 1rem; /* px-4 */
            padding-right: 1rem; /* px-4 */
        }
         @media (min-width: 768px) { /* md breakpoint */
             .section-padding {
                 padding-top: 5rem; /* py-20 */
                 padding-bottom: 5rem; /* py-20 */
                 padding-left: 2rem; /* px-8 */
                 padding-right: 2rem; /* px-8 */
             }
         }

         .bg-primary { background-color: var(--color-primary); }
         .bg-secondary { background-color: var(--color-secondary); }
         .bg-accent { background-color: var(--color-accent); }
         .text-text-dark { color: var(--color-text-dark); }
         .text-text-light { color: var(--color-text-light); }

         /* Custom Styles for Design Principles */

        .diagonal-divider-bottom {
            position: relative;
            padding-bottom: 80px; /* Adjust based on desired height of diagonal */
        }
        .diagonal-divider-bottom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px; /* Height of the diagonal shape */
            background: linear-gradient(150deg, transparent 50%, var(--color-background-light) 50%); /* Adjust colors as needed */
            pointer-events: none; /* Allow clicks through the shape */
        }
        .diagonal-divider-top {
             position: relative;
             padding-top: 80px; /* Adjust based on desired height of diagonal */
         }
         .diagonal-divider-top::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 80px; /* Height of the diagonal shape */
             background: linear-gradient(-150deg, transparent 50%, var(--color-background-light) 50%); /* Adjust colors as needed */
             pointer-events: none; /* Allow clicks through the shape */
         }
        /* Ensure sections following diagonal dividers account for the shape height */
        .section-after-diagonal-bottom {
            margin-top: -80px; /* Offset the padding-bottom from the previous section */
        }
        .section-after-diagonal-top {
             margin-bottom: -80px; /* Offset the padding-top from the next section */
         }


        /* Responsive navigation toggle */
        #mobileMenuButton:checked ~ #mobileMenu {
            display: block;
        }

        .cookie-banner {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            background-color: var(--color-background-dark);
            color: var(--color-text-light);
            padding: 1rem;
            border-radius: 0.5rem;
            display: none; /* Hidden by default */
            z-index: 1000;
            max-width: 500px;
            margin: 0 auto; /* Center horizontally on larger screens */
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .cookie-banner p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .cookie-banner button {
            background-color: var(--color-primary);
            color: var(--color-text-light);
            padding: 0.5rem 1rem;
            border-radius: 0.3rem;
            font-weight: 600;
             min-width: 44px; /* Ensure touch target size */
            min-height: 44px;
             border: none;
             cursor: pointer;
             transition: background-color 0.3s ease;
        }
         .cookie-banner button:hover {
            background-color: #c94426; /* Slightly darker primary */
        }


    </style>
</head>
<body class="relative"> <!-- Add relative for cookie banner positioning context -->

    <!-- Navbar -->
    <header class="bg-secondary text-text-dark sticky top-0 z-50 shadow-md">
        <div class="container mx-auto px-4 md:px-8 py-4 flex justify-between items-center">
            <!-- Logo/Brand Name -->
            <a href="#hero" class="text-2xl font-bold text-text-dark">Garam Bowl</a>

            <!-- Desktop Navigation -->
            <nav class="hidden md:flex space-x-6">
                <a href="#hero" class="hover:text-primary transition duration-300">Home</a>
                <a href="#about" class="hover:text-primary transition duration-300">About Us</a>
                <a href="#menu" class="hover:text-primary transition duration-300">Menu</a>
                <a href="#services" class="hover:text-primary transition duration-300">Services</a>
                <a href="#community" class="hover:text-primary transition duration-300">Community</a>
                <a href="#find-us" class="hover:text-primary transition duration-300">Find Us</a>
                <a href="#contact" class="hover:text-primary transition duration-300">Contact</a>
            </nav>

            <!-- Mobile Menu Button -->
            <div class="md:hidden">
                 <!-- Using a checkbox hack for simplicity without JS -->
                <input type="checkbox" id="mobileMenuButton" class="hidden">
                <label for="mobileMenuButton" class="block cursor-pointer p-2 border border-text-dark rounded hover:bg-background-light transition duration-300" aria-label="Open mobile menu">
                     <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path></svg>
                </label>
            </div>
        </div>

         <!-- Mobile Navigation (hidden by default) -->
        <nav id="mobileMenu" class="md:hidden bg-secondary text-text-dark px-4 pb-4 hidden">
            <a href="#hero" class="block py-2 border-b border-gray-300 hover:bg-background-light">Home</a>
            <a href="#about" class="block py-2 border-b border-gray-300 hover:bg-background-light">About Us</a>
            <a href="#menu" class="block py-2 border-b border-gray-300 hover:bg-background-light">Menu</a>
            <a href="#services" class="block py-2 border-b border-gray-300 hover:bg-background-light">Services</a>
            <a href="#community" class="block py-2 border-b border-gray-300 hover:bg-background-light">Community</a>
             <a href="#find-us" class="block py-2 border-b border-gray-300 hover:bg-background-light">Find Us</a>
            <a href="#contact" class="block py-2 hover:bg-background-light">Contact</a>
        </nav>
    </header>

    <main>
        <!-- Hero Section -->
        <section id="hero" class="relative w-full min-h-screen flex items-center justify-center text-center text-text-light overflow-hidden section-padding" style="background: url('images/garam-bowl-hero-warmth.jpeg') center/cover no-repeat;">
            <div class="absolute inset-0 bg-background-dark opacity-70"></div> <!-- Overlay for text contrast -->
            <div class="relative z-10 container mx-auto px-4 md:px-8">
                <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4 drop-shadow-lg" style="text-shadow: 2px 2px 4px rgba(0,0,0,0.5);">Garam Bowl: Where Warmth Meets Flavor</h1>
                <p class="text-lg md:text-xl mb-8 max-w-3xl mx-auto drop-shadow-md">Experience the soulful taste of authentic Indian soups and snacks in the heart of Pune. Join our community and find your cozy corner.</p>
                <p class="text-xl md:text-2xl font-semibold mb-10 italic drop-shadow-md">Crafting connections that last.</p>
                <div class="flex flex-col sm:flex-row justify-center gap-4">
                    <a href="#menu" class="btn-primary text-center" aria-label="View our delicious menu">View Menu</a>
                    <a href="#find-us" class="btn-ghost text-center" aria-label="Find our cafe location">Find Us</a>
                </div>
            </div>
             <!-- Optional: Simple decorative shapes -->
             <div class="absolute bottom-0 left-0 w-1/4 h-1/4 bg-primary opacity-20 transform -translate-x-1/2 translate-y-1/2 rotate-45"></div>
             <div class="absolute top-0 right-0 w-1/4 h-1/4 bg-accent opacity-20 transform translate-x-1/2 -translate-y-1/2 -rotate-45"></div>
        </section>

        <!-- About Us Section -->
        <section id="about" class="bg-background-light text-text-dark section-padding diagonal-divider-bottom">
            <div class="container mx-auto px-4 md:px-8 grid md:grid-cols-2 gap-8 items-center">
                <div class="order-2 md:order-1">
                    <h2 class="text-4xl font-bold mb-6">Our Story: More Than Just Soup</h2>
                    <p class="mb-4">Garam Bowl isn't just a cafe; it's a culmination of generations of culinary tradition and a deep-seated desire to share authentic Indian comfort food with our community here in Pune. Born from cherished family recipes passed down through grandmothers and mothers, our journey began with a simple idea: to recreate the warmth and nourishment of home-cooked Indian soups and snacks for everyone.</p>
                    <p class="mb-4">We believe that food has a powerful ability to connect people. In the bustling heart of Koregaon Park, we envisioned a serene, welcoming space where friends could gather, families could relax, and individuals could find a moment of peace with a warm bowl and a flavorful bite. It's a place where conversations flow easily and the aroma of spices fills the air, transporting you to cozy Indian kitchens.</p>
                    <p class="mb-4">Our commitment extends beyond the plate. We source the freshest ingredients, supporting local suppliers whenever possible, to ensure the quality and authenticity of every dish. Every soup is slow-simmered to perfection, extracting maximum flavor and nutritional value. Our snacks are handmade with meticulous care, offering that perfect crunch and burst of traditional taste.</p>
                    <p class="mb-4">From the moment you step through our doors, we want you to feel like family. Our team is passionate about providing a friendly and attentive experience, whether you're dining in, grabbing a quick takeaway, or stocking up on our convenient ready-to-eat packs. We are proud to be a part of the vibrant Pune community and strive to contribute positively by offering not just food, but a sense of belonging.</p>
                    <p class="mb-6">This is our passion, our heritage, and our invitation to you. Come, pull up a chair, and experience the Garam Bowl difference. It's more than just soup; it's a warm hug in a bowl, a taste of tradition, and a place to build lasting connections.</p>
                    <h3 class="text-2xl font-semibold mb-4">Our Guiding Principles:</h3>
                    <ul class="list-disc list-inside space-y-2">
                        <li>Authentic Indian Flavors: Recipes rooted in tradition, bringing genuine tastes to your table.</li>
                        <li>Fresh, Quality Ingredients: A commitment to using the best produce for superior taste and nutrition.</li>
                        <li>Handmade with Care: Dedication to the craft of preparing every item by hand, ensuring quality and love in each bite.</li>
                        <li>A Hub for Community Connection: Fostering a warm environment where people feel welcome and connected.</li>
                    </ul>
                </div>
                <div class="order-1 md:order-2 flex justify-center items-center">
                     <img src="images/garam-bowl-story-interior.jpeg" alt="Cozy interior of Garam Bowl cafe with seating and warm lighting" width="640" height="416" loading="lazy" class="rounded-lg shadow-xl w-full h-auto max-w-md md:max-w-full object-cover">
                </div>
            </div>
        </section>

         <!-- Menu Section -->
        <section id="menu" class="bg-secondary text-text-dark section-padding section-after-diagonal-bottom diagonal-divider-top">
            <div class="container mx-auto px-4 md:px-8">
                <h2 class="text-4xl font-bold text-center mb-6">Explore Our Menu</h2>
                <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Discover a curated selection of our most loved items, from signature, soul-warming soups to crispy, handmade snacks and refreshing cafe beverages, crafted with authentic Indian flair.</p>

                <div class="grid md:grid-cols-3 gap-8">
                    <div class="bg-background-light rounded-lg shadow-md overflow-hidden pb-4">
                        <img src="images/menu-soup-highlight.jpeg" alt="Bowl of vibrant Indian lentil soup" width="384" height="256" loading="lazy" class="w-full h-48 object-cover">
                        <div class="p-4">
                            <h3 class="text-2xl font-semibold mb-2">Specialty Soups</h3>
                            <p class="text-gray-700 mb-4">Our heart and soul. Experience the depth of flavor in our traditional Indian soups, perfect for any time of day. From classic Dal Shorba, rich and lentil-based, to invigorating Tomato Dhaniya Soup with its fresh coriander notes, and seasonal specials that capture the essence of local produce. Each bowl is a blend of aromatic spices, fresh vegetables, and wholesome pulses, simmered slowly to bring out truly comforting tastes. Starting from ₹150.</p>
                        </div>
                    </div>

                    <div class="bg-background-light rounded-lg shadow-md overflow-hidden pb-4">
                        <img src="images/menu-snack-highlight.jpeg" alt="Assortment of crispy Indian snacks" width="384" height="256" loading="lazy" class="w-full h-48 object-cover">
                         <div class="p-4">
                            <h3 class="text-2xl font-semibold mb-2">Handmade Snacks</h3>
                            <p class="text-gray-700 mb-4">The perfect companions to our soups or beverages. Each snack is crafted by hand daily, ensuring maximum freshness and authentic texture. Indulge in crispy Samosas filled with spiced potatoes, fluffy Pakoras made with various vegetables, or perhaps our popular adapted Mini Vada Pavs. We use traditional techniques to deliver that satisfying crunch and flavor you expect from quality Indian snacks. Perfectly paired, never pre-made. Starting from ₹80.</p>
                        </div>
                    </div>

                    <div class="bg-background-light rounded-lg shadow-md overflow-hidden pb-4">
                        <img src="images/menu-beverage-highlight.jpeg" alt="Steaming cup of Masala Chai" width="384" height="256" loading="lazy" class="w-full h-48 object-cover">
                        <div class="p-4">
                            <h3 class="text-2xl font-semibold mb-2">Cafe Beverages</h3>
                            <p class="text-gray-700 mb-4">Complement your meal or simply relax with our selection of hot and cold beverages. Our signature, soul-soothing Masala Chai is brewed with fresh ginger and spices, just like home. We also offer rich Indian Filter Coffee, refreshing Fresh Lime Soda, classic Indian-style cold coffee, and a variety of herbal teas. The perfect sip to complete your Garam Bowl experience. Starting from ₹60.</p>
                        </div>
                    </div>
                </div>

                <div class="text-center mt-12">
                    <a href="#find-us" class="btn-primary text-center" aria-label="See the full menu available in our cafe">See Full Menu (In-Cafe)</a>
                </div>
            </div>
        </section>

        <!-- Services Section -->
        <section id="services" class="bg-background-light text-text-dark section-padding diagonal-divider-bottom section-after-diagonal-top">
            <div class="container mx-auto px-4 md:px-8">
                <h2 class="text-4xl font-bold text-center mb-6">Beyond the Bowl: Our Services</h2>
                <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Whether you desire a leisurely meal in our warm ambiance, a quick and delicious bite on the go, the comfort of our flavors at home, or wish to bring the warmth of Garam Bowl to your small gathering, we offer convenient services to meet your needs.</p>

                <div class="grid md:grid-cols-2 gap-8 lg:gap-12">
                     <div class="flex flex-col md:flex-row bg-secondary rounded-lg shadow-md overflow-hidden">
                        <img src="images/service-dine-in.jpeg" alt="Customers dining inside Garam Bowl cafe" width="512" height="320" loading="lazy" class="w-full md:w-1/3 h-48 md:h-auto object-cover">
                        <div class="p-6 flex-1">
                            <h3 class="text-2xl font-semibold mb-3">Dine-in Experience</h3>
                            <p class="text-gray-700">Step into our cozy cafe and leave the world outside. Our thoughtfully designed space in Koregaon Park offers comfortable seating, warm lighting, and a relaxed atmosphere perfect for catching up with friends, having a casual business meeting, or simply enjoying a moment of solitude with your favorite soup and snack. We provide a welcoming environment where you can savor your meal and connect with our community.</p>
                        </div>
                    </div>

                    <div class="flex flex-col md:flex-row bg-secondary rounded-lg shadow-md overflow-hidden">
                        <img src="images/service-takeaway.jpeg" alt="Hand holding a Garam Bowl takeaway bag" width="512" height="320" loading="lazy" class="w-full md:w-1/3 h-48 md:h-auto object-cover">
                         <div class="p-6 flex-1">
                            <h3 class="text-2xl font-semibold mb-3">Quick Takeaway</h3>
                            <p class="text-gray-700">Pressed for time but craving authentic flavor? Our efficient takeaway service ensures you can grab your Garam Bowl favorites quickly and conveniently. Call ahead or place your order at our counter, and we'll pack your hot soups, crispy snacks, and refreshing beverages securely, ready for you to enjoy wherever you are – at the office, at home, or exploring the city. Deliciousness is always within reach.</p>
                        </div>
                    </div>

                     <div class="flex flex-col md:flex-row bg-secondary rounded-lg shadow-md overflow-hidden">
                        <img src="images/service-soup-packs.jpeg" alt="Ready-to-eat Garam Bowl soup packs" width="512" height="320" loading="lazy" class="w-full md:w-1/3 h-48 md:h-auto object-cover">
                         <div class="p-6 flex-1">
                            <h3 class="text-2xl font-semibold mb-3">Ready-to-Eat Soup Packs</h3>
                            <p class="text-gray-700">Bring the comforting taste of Garam Bowl home with our ready-to-eat soup packs. Perfect for busy weeknights, quick lunches, or when you need a nourishing meal without the fuss. Our signature soups are hygienically packed, retaining their fresh taste and nutritional value. Simply heat and serve to enjoy authentic Indian flavors in the comfort of your own kitchen, anytime inspiration strikes. Available for purchase in-cafe.</p>
                        </div>
                    </div>

                    <div class="flex flex-col md:flex-row bg-secondary rounded-lg shadow-md overflow-hidden">
                        <img src="images/service-catering.jpeg" alt="Spread of Garam Bowl food for catering" width="512" height="320" loading="lazy" class="w-full md:w-1/3 h-48 md:h-auto object-cover">
                         <div class="p-6 flex-1">
                            <h3 class="text-2xl font-semibold mb-3">Small Event Catering</h3>
                            <p class="text-gray-700">Planning a small office lunch, a family gathering, or a casual get-together? Let Garam Bowl add a touch of warmth and unique flavor with our small-scale catering options. We can provide selections of our popular soups and handmade snacks, perfect for impressing your guests with authentic, comforting Indian fare. Discuss your needs with us, and we'll help you craft a simple, delicious menu for your event of typically 10-20 people.</p>
                        </div>
                    </div>
                </div>

                <div class="text-center mt-12">
                    <a href="#contact" class="btn-secondary text-center" aria-label="Inquire about small catering services">Learn More about Catering</a>
                </div>
            </div>
        </section>

        <!-- Why Choose Us / USP Section -->
        <section id="why-us" class="bg-secondary text-text-dark section-padding section-after-diagonal-bottom diagonal-divider-top">
            <div class="container mx-auto px-4 md:px-8 grid md:grid-cols-2 gap-10 items-center">
                 <div class="flex justify-center items-center">
                    <img src="images/why-garam-bowl-ingredients.jpeg" alt="Close-up of fresh spices and ingredients" width="640" height="416" loading="lazy" class="rounded-lg shadow-xl w-full h-auto max-w-md md:max-w-full object-cover">
                 </div>
                <div>
                    <h2 class="text-4xl font-bold mb-6">The Garam Bowl Difference</h2>
                    <p class="text-lg mb-8">In a city full of culinary options, what makes Garam Bowl special? It's our unwavering commitment to quality, our respect for tradition, and the genuine care we put into every aspect of our cafe. We don't just serve food; we offer an experience steeped in authenticity and warmth, designed to nourish both body and soul.</p>
                    <div class="space-y-6">
                        <div>
                            <h3 class="text-2xl font-semibold mb-2">Authentic Recipes, Real Flavor</h3>
                            <p class="text-gray-700">Our menu is built on tried-and-true family recipes, passed down through generations. This ensures the flavors are deeply authentic, resonating with the true taste of Indian home cooking. We don't cut corners; we honor the traditional methods that deliver truly memorable dishes.</p>
                        </div>
                        <div>
                            <h3 class="text-2xl font-semibold mb-2">Freshness You Can Taste</h3>
                            <p class="text-gray-700">We prioritize using fresh, high-quality ingredients, sourced responsibly whenever possible. From vibrant spices to fresh vegetables, the quality of our raw materials is paramount. You can taste the difference that fresh, wholesome ingredients make in every spoonful of soup and every bite of our snacks.</p>
                        </div>
                         <div>
                            <h3 class="text-2xl font-semibold mb-2">Handmade with Love</h3>
                            <p class="text-gray-700">In an age of mass production, we stand by the value of handmade goodness. Every snack, every soup base, is prepared with care and attention to detail by our skilled team. This dedication ensures consistent quality and imbues our food with that special touch that only comes from being crafted by hand.</p>
                        </div>
                         <div>
                            <h3 class="text-2xl font-semibold mb-2">A True Community Hub</h3>
                            <p class="text-gray-700">Beyond the food, Garam Bowl is designed to be a space where the community can come together. Whether it's students studying, professionals meeting, or friends catching up, our cafe is a welcoming spot. We aim to foster connections and provide a comfortable, inclusive environment for everyone who walks through our doors.</p>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- Testimonials Section -->
        <section id="testimonials" class="bg-background-light text-text-dark section-padding diagonal-divider-bottom section-after-diagonal-top">
            <div class="container mx-auto px-4 md:px-8">
                <h2 class="text-4xl font-bold text-center mb-6">Hear From Our Community</h2>
                <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Kind words from the wonderful people in Pune and beyond who have experienced the warmth and flavor of Garam Bowl. Their feedback inspires us every day.</p>

                <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8">
                    <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-priya.jpeg" alt="Photo of Priya Sharma" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"Garam Bowl soups are incredibly flavorful and comforting. It feels like a warm hug in a bowl! The quality and taste are truly authentic."</p>
                        <p class="font-semibold">- Priya Sharma, Pune Resident</p>
                    </div>

                    <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-amit.jpeg" alt="Photo of Amit Patel" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"The handmade snacks are simply addictive! Crispy, perfectly spiced, and ideal with their fantastic Masala Chai. Garam Bowl is my go-to."</p>
                        <p class="font-semibold">- Amit Patel, Regular Customer</p>
                    </div>

                    <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-sneha.jpeg" alt="Photo of Sneha Reddy" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"A truly lovely, cozy spot to relax and enjoy authentic Indian flavors in Koregaon Park. The ambiance is perfect and the food is consistently excellent. Highly recommend!"</p>
                        <p class="font-semibold">- Sneha Reddy, Cafe Visitor</p>
                    </div>

                     <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-rajesh.jpeg" alt="Photo of Rajesh Singh" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"I picked up some ready-to-eat soup packs, and they were a lifesaver for my busy week! The quality is amazing, just like fresh from the cafe. Will definitely buy again."</p>
                        <p class="font-semibold">- Rajesh Singh, Satisfied Customer</p>
                    </div>

                     <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-aisha.jpeg" alt="Photo of Aisha Khan" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"We used Garam Bowl for small catering for a family function, and it was a hit! The snacks were fresh and delicious, and the service was incredibly easy to coordinate. Thank you!"</p>
                        <p class="font-semibold">- Aisha Khan, Catering Client</p>
                    </div>

                     <div class="bg-secondary rounded-lg shadow-md p-6 flex flex-col items-center text-center">
                        <img src="images/testimonial-suresh.jpeg" alt="Photo of Suresh Deshmukh" width="96" height="96" loading="lazy" class="rounded-full w-24 h-24 object-cover mb-4">
                        <p class="italic mb-4 text-gray-700">"The ambiance at Garam Bowl is so welcoming. It’s the perfect place for a quiet afternoon with a book and a cup of chai. The staff is friendly and attentive too."</p>
                        <p class="font-semibold">- Suresh Deshmukh, Local Patron</p>
                    </div>
                </div>
            </div>
        </section>

         <!-- Community Section -->
        <section id="community" class="bg-secondary text-text-dark section-padding section-after-diagonal-bottom diagonal-divider-top">
            <div class="container mx-auto px-4 md:px-8">
                <h2 class="text-4xl font-bold text-center mb-6">Join Our Garam Bowl Family</h2>
                <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Garam Bowl is more than just a cafe; it's a vibrant part of the Pune community. We love connecting with our patrons, sharing our passion for food, and hosting events that bring people together. Become a part of our growing family!</p>

                <div class="grid md:grid-cols-2 gap-8 items-center">
                    <div>
                        <h3 class="text-3xl font-semibold mb-4">Upcoming Gatherings & Events</h3>
                        <p class="mb-6 text-gray-700">Stay tuned for special evenings, workshops, and community meetups hosted right here at Garam Bowl. We're always looking for new ways to connect with you and celebrate our shared love for authentic flavors and good company.</p>

                        <div class="bg-background-light rounded-lg shadow-md overflow-hidden mb-6">
                             <img src="images/community-soup-tasting.jpeg" alt="People tasting soup" width="384" height="256" loading="lazy" class="w-full h-48 object-cover">
                             <div class="p-4">
                                <h4 class="text-xl font-semibold mb-2">Soup Tasting Evening</h4>
                                <p class="text-gray-700 mb-2">Every Last Friday</p>
                                <p class="text-gray-700">Join us on the last Friday of each month to sample our newest seasonal soup creations and beloved classics. It's a fantastic opportunity to explore different flavors, provide feedback, and mingle with fellow soup enthusiasts in a relaxed setting.</p>
                             </div>
                        </div>

                        <p class="text-lg font-semibold mb-4">Want to be the first to know about events, daily specials, and behind-the-scenes glimpses?</p>
                        <p class="mb-6">Follow us on social media to join the conversation, see daily specials, and share your Garam Bowl moments! Links are available in the footer below.</p>

                         <div class="flex flex-col sm:flex-row gap-4">
                            <!-- Newsletter Signup Button (placeholder for modal/form below) -->
                             <button id="newsletterSignupBtn" class="btn-primary text-center" aria-label="Sign up for our newsletter">Sign Up for Newsletter</button>
                             <a href="#footer" class="btn-ghost text-center" aria-label="Follow us on social media (links in footer)">Follow Us</a>
                         </div>
                    </div>

                     <div class="bg-background-light rounded-lg shadow-md p-6">
                        <h3 class="text-2xl font-semibold mb-4 text-center">Stay Connected!</h3>
                        <p class="text-gray-700 mb-6 text-center">Sign up for our newsletter to receive updates, special offers, and event invitations directly in your inbox.</p>
                        <form class="space-y-4">
                            <div>
                                <label for="newsletterName" class="block text-gray-700 font-semibold mb-2">Name</label>
                                <input type="text" id="newsletterName" name="name" placeholder="Your Name" required class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary">
                            </div>
                             <div>
                                <label for="newsletterEmail" class="block text-gray-700 font-semibold mb-2">Email Address</label>
                                <input type="email" id="newsletterEmail" name="email" placeholder="Your Email" required class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary">
                            </div>
                             <div class="text-center">
                                <button type="submit" class="btn-primary">Subscribe</button>
                             </div>
                        </form>
                         <p class="text-xs text-center text-gray-500 mt-4">We respect your privacy. Your email will not be shared with third parties.</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Gallery Section -->
         <section id="gallery" class="bg-background-light text-text-dark section-padding diagonal-divider-bottom section-after-diagonal-top">
             <div class="container mx-auto px-4 md:px-8">
                 <h2 class="text-4xl font-bold text-center mb-6">A Taste of Garam Bowl</h2>
                 <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Get a visual feel for the warmth and flavor that awaits you at Garam Bowl. Browse through photos of our delicious food, the inviting interiors of our cafe, and some moments captured from our community.</p>

                 <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-4">
                    <div class="overflow-hidden rounded-lg shadow-md">
                        <img src="images/gallery-soup-dish.jpeg" alt="Close-up of a soup bowl with garnish" width="448" height="320" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                    </div>
                    <div class="overflow-hidden rounded-lg shadow-md">
                        <img src="images/gallery-snacks-platter.jpeg" alt="Platter of assorted Indian snacks" width="512" height="384" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                    </div>
                    <div class="overflow-hidden rounded-lg shadow-md">
                        <img src="images/gallery-cafe-scene.jpeg" alt="Busy but cozy scene inside Garam Bowl cafe" width="640" height="448" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                    </div>
                    <div class="overflow-hidden rounded-lg shadow-md">
                        <img src="images/gallery-chai-cup.jpeg" alt="Hand holding a cup of chai" width="384" height="256" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                    </div>
                    <div class="overflow-hidden rounded-lg shadow-md col-span-2 sm:col-span-1">
                         <img src="images/gallery-exterior.jpeg" alt="Exterior view of Garam Bowl cafe" width="416" height="288" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                    </div>
                     <!-- Add more images as needed following the pattern -->
                     <div class="overflow-hidden rounded-lg shadow-md">
                         <img src="images/gallery-table-setting.jpeg" alt="A table setting at Garam Bowl with food" width="448" height="320" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                     </div>
                      <div class="overflow-hidden rounded-lg shadow-md">
                         <img src="images/gallery-soup-closeup.jpeg" alt="Close up detail of a bowl of soup" width="384" height="256" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                     </div>
                     <div class="overflow-hidden rounded-lg shadow-md">
                         <img src="images/gallery-snack-closeup.jpeg" alt="Close up detail of a single snack item" width="384" height="256" loading="lazy" class="w-full h-full object-cover transform hover:scale-105 transition duration-300 ease-in-out">
                     </div>
                 </div>
             </div>
         </section>


        <!-- Find Us Section -->
        <section id="find-us" class="bg-secondary text-text-dark section-padding section-after-diagonal-bottom diagonal-divider-top">
            <div class="container mx-auto px-4 md:px-8">
                <h2 class="text-4xl font-bold text-center mb-6">Visit Us</h2>
                <p class="text-center text-lg mb-10 max-w-2xl mx-auto">Find our cozy spot nestled in the welcoming lanes of Koregaon Park, Pune. We are easy to reach and look forward to welcoming you for a warm bowl, a tasty snack, and a friendly chat.</p>

                <div class="grid md:grid-cols-2 gap-8 lg:gap-12">
                    <div>
                        <h3 class="text-3xl font-semibold mb-4">Our Location</h3>
                        <p class="mb-4 text-gray-700">Come visit us at:</p>
                        <address class="text-lg font-semibold mb-6 not-italic">
                            Plot 18, Lane 6, <br>
                            Koregaon Park, <br>
                            Pune, Maharashtra, 411001 <br>
                            India
                        </address>

                        <h3 class="text-3xl font-semibold mb-4">Contact Details</h3>
                        <p class="mb-2 text-gray-700">Phone: <a href="tel:+919876543210" class="text-primary hover:underline transition duration-300">+91 98765 43210</a></p>
                        <p class="mb-6 text-gray-700">Email: <a href="mailto:info@garambowl.com" class="text-primary hover:underline transition duration-300">info@garambowl.com</a></p>

                        <h3 class="text-3xl font-semibold mb-4">Opening Hours</h3>
                        <dl class="text-gray-700">
                            <dt class="font-semibold">Monday - Friday:</dt>
                            <dd class="mb-2">11:00 AM - 9:00 PM</dd>
                            <dt class="font-semibold">Saturday - Sunday:</dt>
                            <dd>10:00 AM - 10:00 PM</dd>
                        </dl>
                        <p class="text-sm text-gray-600 mt-4">*Hours subject to change. Please call ahead for public holidays.</p>
                    </div>
                    <div class="rounded-lg overflow-hidden shadow-xl">
                        <!-- Google Maps Embed -->
                        <iframe
                           src="https://maps.google.com/maps?q=Pune%2C%20India&t=m&z=13&ie=UTF8&iwloc=&output=embed"
                           width="100%"
                           height="450"
                           style="border:0;"
                           allowfullscreen=""
                           loading="lazy"
                           referrerpolicy="no-referrer-when-downgrade"
                           title="Map of Pune, India showing Garam Bowl location">
                        </iframe>
                    </div>
                </div>
            </div>
        </section>

        <!-- Contact Us Section -->
         <section id="contact" class="bg-background-dark text-text-light section-padding">
             <div class="container mx-auto px-4 md:px-8 grid md:grid-cols-2 gap-8 lg:gap-12 items-center">
                 <div class="order-2 md:order-1">
                    <h2 class="text-4xl font-bold mb-6 text-center md:text-left">Get In Touch</h2>
                    <p class="text-lg mb-8 max-w-2xl mx-auto md:mx-0 text-center md:text-left">Have questions about our menu? Want to share feedback about your experience? Interested in our small catering options? We'd love to hear from you. Please fill out the form below or use the contact details provided in the "Find Us" section.</p>

                    <form class="space-y-6 bg-background-light text-text-dark p-6 rounded-lg shadow-md">
                        <div>
                            <label for="contactName" class="block font-semibold mb-2">Name</label>
                            <input type="text" id="contactName" name="name" placeholder="Your Name" required class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary">
                        </div>
                         <div>
                            <label for="contactEmail" class="block font-semibold mb-2">Email</label>
                            <input type="email" id="contactEmail" name="email" placeholder="Your Email" required class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary">
                        </div>
                         <div>
                            <label for="contactMessage" class="block font-semibold mb-2">Message</label>
                            <textarea id="contactMessage" name="message" rows="6" placeholder="Your Message" required class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
                        </div>
                         <div class="text-center md:text-left">
                            <button type="submit" class="btn-primary">Send Message</button>
                         </div>
                    </form>
                 </div>
                 <div class="order-1 md:order-2 flex justify-center items-center">
                     <img src="images/contact-us-image-garam.jpeg" alt="Hand writing a message, representing contact" width="512" height="320" loading="lazy" class="rounded-lg shadow-xl w-full h-auto max-w-sm md:max-w-full object-cover">
                 </div>
             </div>
         </section>

    </main>

    <!-- Footer -->
    <footer id="footer" class="bg-background-dark text-text-light section-padding pt-12 pb-6">
        <div class="container mx-auto px-4 md:px-8 grid grid-cols-1 md:grid-cols-4 gap-8 text-center md:text-left">
            <div>
                <h4 class="text-xl font-bold mb-4">Garam Bowl</h4>
                <p class="text-gray-400 mb-4">Where warmth meets flavor in the heart of Pune. Authentic Indian soups and snacks in a cozy community setting.</p>
                 <div class="flex justify-center md:justify-start space-x-4">
                    <a href="#" aria-label="Follow us on Facebook" class="block w-8 h-8 overflow-hidden rounded-full hover:opacity-80 transition duration-300">
                        <img src="images/social-facebook.jpeg" alt="Facebook icon" width="32" height="32" class="w-full h-full object-cover">
                    </a>
                     <a href="#" aria-label="Follow us on Instagram" class="block w-8 h-8 overflow-hidden rounded-full hover:opacity-80 transition duration-300">
                        <img src="images/social-instagram.jpeg" alt="Instagram icon" width="32" height="32" class="w-full h-full object-cover">
                    </a>
                     <a href="#" aria-label="Follow us on X (formerly Twitter)" class="block w-8 h-8 overflow-hidden rounded-full hover:opacity-80 transition duration-300">
                        <img src="images/social-twitter.jpeg" alt="X (Twitter) icon" width="32" height="32" class="w-full h-full object-cover">
                    </a>
                 </div>
            </div>
            <div>
                <h4 class="text-xl font-bold mb-4">Explore</h4>
                <ul class="space-y-2">
                    <li><a href="#about" class="text-gray-400 hover:text-text-light transition duration-300">About Us</a></li>
                    <li><a href="#menu" class="text-gray-400 hover:text-text-light transition duration-300">Menu Highlights</a></li>
                    <li><a href="#services" class="text-gray-400 hover:text-text-light transition duration-300">Our Services</a></li>
                    <li><a href="#community" class="text-gray-400 hover:text-text-light transition duration-300">Community & Events</a></li>
                    <li><a href="#contact" class="text-gray-400 hover:text-text-light transition duration-300">Contact Us</a></li>
                </ul>
            </div>
            <div>
                <h4 class="text-xl font-bold mb-4">Contact</h4>
                <p class="text-gray-400 mb-2">Phone: <a href="tel:+919876543210" class="text-gray-400 hover:text-text-light transition duration-300">+91 98765 43210</a></p>
                <p class="text-gray-400 mb-2">Email: <a href="mailto:info@garambowl.com" class="text-gray-400 hover:text-text-light transition duration-300">info@garambowl.com</a></p>
                <address class="text-gray-400 not-italic">
                    Plot 18, Lane 6, <br>
                    Koregaon Park, Pune, 411001
                </address>
            </div>
            <div>
                 <h4 class="text-xl font-bold mb-4">Legal</h4>
                <ul class="space-y-2">
                    <li><a href="./privacy.html" class="text-gray-400 hover:text-text-light transition duration-300">Privacy Policy</a></li>
                    <li><a href="./tos.html" class="text-gray-400 hover:text-text-light transition duration-300">Terms of Service</a></li>
                </ul>
            </div>
        </div>
        <div class="text-center text-gray-500 mt-10 pt-6 border-t border-gray-700">
            <p>© 2024 Garam Bowl. All rights reserved.</p>
        </div>
    </footer>

    <!-- Cookie Consent Banner -->
    <div id="cookieConsentBanner" class="cookie-banner" data-cookie-name="">
        <p>We use cookies to ensure you get the best experience on our website. By clicking "Accept", you consent to the use of cookies.</p>
        <button id="acceptCookieConsent">Accept</button>
    </div>

    <!-- Cookie Consent JavaScript -->
    <script>
    document.addEventListener('DOMContentLoaded', function() {
        // Generate a random cookie name (combination of prefix and random string)
        const cookiePrefix = "consent_garambowl_"; // Added specific prefix
        const randomString = Math.random().toString(36).substring(2, 10);
        const cookieName = cookiePrefix + randomString;

        // Store the random cookie name in a data attribute for future reference
        const banner = document.getElementById('cookieConsentBanner');
        if (banner) { // Check if banner element exists
             banner.setAttribute('data-cookie-name', cookieName);

            // Check if the consent cookie exists by looking for any cookie starting with the prefix
            const hasConsent = document.cookie.split(';').some((item) => {
                const trimmedItem = item.trim();
                return trimmedItem.startsWith(cookiePrefix);
            });

            if (!hasConsent) {
                // Show the cookie banner if no consent cookie exists
                banner.style.display = 'block';
            }

            // Set up event listener for the accept button
            const acceptButton = document.getElementById('acceptCookieConsent');
            if (acceptButton) { // Check if button element exists
                acceptButton.addEventListener('click', function() {
                    // Retrieve the generated cookie name
                    const currentCookieName = banner.getAttribute('data-cookie-name');
                    if (currentCookieName) {
                        // Set the cookie with 1-year expiration
                        const date = new Date();
                        date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000));
                        document.cookie = currentCookieName + "=accepted; expires=" + date.toUTCString() + "; path=/; SameSite=Strict";

                        // Hide the banner
                        banner.style.display = 'none';
                    }
                });
            }
        }
    });
    </script>

</body>
</html>