delight / index.html
learncode's picture
Add 3 files
de5c015 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divine Delights - Authentic South Indian Tiffin Service</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.logo-text {
font-family: 'Poppins', sans-serif;
font-weight: 700;
background: linear-gradient(45deg, #f59e0b, #ef4444);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-section {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.menu-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.gallery-item {
transition: all 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.05);
}
.form-input:focus {
outline: none;
box-shadow: 0 0 0 2px #f59e0b;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-utensils text-3xl mr-2 text-amber-500"></i>
<span class="text-xl font-bold logo-text">Divine Delights</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#home" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="#menu" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Menu</a>
<a href="#gallery" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Gallery</a>
<a href="#book" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Book a Table</a>
<a href="#about" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">About Us</a>
<a href="#testimonials" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Testimonials</a>
<a href="#contact" class="text-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-sm font-medium">Contact</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-amber-500">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="#menu" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Menu</a>
<a href="#gallery" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Gallery</a>
<a href="#book" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Book a Table</a>
<a href="#about" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">About Us</a>
<a href="#testimonials" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Testimonials</a>
<a href="#contact" class="text-gray-900 hover:text-amber-500 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-section text-white py-20 md:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Authentic South Indian Tiffin Service</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Experience the divine taste of homemade South Indian breakfast delivered fresh to your doorstep</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#menu" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">View Menu</a>
<a href="#book" class="bg-transparent hover:bg-white hover:text-gray-900 text-white font-bold py-3 px-6 border-2 border-white rounded-lg transition duration-300">Book a Table</a>
</div>
</div>
</div>
</section>
<!-- USP Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Why Choose Divine Delights?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center p-6 rounded-lg bg-gray-50 hover:bg-amber-50 transition duration-300">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-amber-100 text-amber-600 mb-4">
<i class="fas fa-home text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Homemade Taste</h3>
<p class="text-gray-600">Our tiffins are prepared with traditional recipes passed down through generations, ensuring authentic homemade flavors.</p>
</div>
<div class="text-center p-6 rounded-lg bg-gray-50 hover:bg-amber-50 transition duration-300">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-amber-100 text-amber-600 mb-4">
<i class="fas fa-heart text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Healthy Options</h3>
<p class="text-gray-600">We use fresh, high-quality ingredients and prepare our dishes with minimal oil, offering nutritious breakfast options.</p>
</div>
<div class="text-center p-6 rounded-lg bg-gray-50 hover:bg-amber-50 transition duration-300">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-amber-100 text-amber-600 mb-4">
<i class="fas fa-truck text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Timely Delivery</h3>
<p class="text-gray-600">Enjoy hot, fresh tiffins delivered to your home or office at your preferred time, every morning.</p>
</div>
</div>
</div>
</section>
<!-- Menu Section -->
<section id="menu" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Our Tiffin Menu</h2>
<div class="mb-12">
<h3 class="text-2xl font-semibold mb-6 text-amber-600 border-b pb-2">Idli Varieties</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1630911428991-27f5e5359a9e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Idli" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Idli</h4>
<p class="text-gray-600 mb-4">Steamed rice cakes with sambar and chutney</p>
<p class="text-amber-600 font-bold">₹60</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Rava Idli" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Rava Idli</h4>
<p class="text-gray-600 mb-4">Semolina idli with sambar and chutney</p>
<p class="text-amber-600 font-bold">₹70</p>
</div>
</div>
</div>
</div>
<div class="mb-12">
<h3 class="text-2xl font-semibold mb-6 text-amber-600 border-b pb-2">Dosa Varieties</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274309-2c16f9687f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Plain Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Plain Dosa</h4>
<p class="text-gray-600 mb-4">Classic fermented crepe made from rice and lentil batter</p>
<p class="text-amber-600 font-bold">₹80</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1583575128735-c508b5f5b2c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Masala Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Masala Dosa</h4>
<p class="text-gray-600 mb-4">Spiced potato filling inside a dosa</p>
<p class="text-amber-600 font-bold">₹100</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274409-1c3f1a2e2c4d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Rava Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Rava Dosa</h4>
<p class="text-gray-600 mb-4">Semolina dosa with a crispy texture</p>
<p class="text-amber-600 font-bold">₹90</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274410-1c3f1a2e2c4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Egg Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Egg Dosa</h4>
<p class="text-gray-600 mb-4">Yummy dosa with egg and spices</p>
<p class="text-amber-600 font-bold">₹110</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274411-1c3f1a2e2c4f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Pesara Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Pesara Dosa</h4>
<p class="text-gray-600 mb-4">Green gram dosa with ginger chutney</p>
<p class="text-amber-600 font-bold">₹95</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274412-1c3f1a2e2c50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Onion Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Onion Dosa</h4>
<p class="text-gray-600 mb-4">Dosa with caramelized onions and spices</p>
<p class="text-amber-600 font-bold">₹95</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274413-1c3f1a2e2c51?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Paneer Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Paneer Dosa</h4>
<p class="text-gray-600 mb-4">Dosa filled with paneer (Indian cheese) and spices</p>
<p class="text-amber-600 font-bold">₹120</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274414-1c3f1a2e2c52?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Paper Dosa" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Paper Dosa</h4>
<p class="text-gray-600 mb-4">Thin, crispy dosa that's often served with sambar and chutney</p>
<p class="text-amber-600 font-bold">₹90</p>
</div>
</div>
</div>
</div>
<div class="mb-12">
<h3 class="text-2xl font-semibold mb-6 text-amber-600 border-b pb-2">Other Specialties</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274415-1c3f1a2e2c53?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Vada" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Vada</h4>
<p class="text-gray-600 mb-4">Fried lentil doughnut with sambar and chutney</p>
<p class="text-amber-600 font-bold">₹60</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274416-1c3f1a2e2c54?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Pongal" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Pongal</h4>
<p class="text-gray-600 mb-4">Sweet or savory rice porridge</p>
<p class="text-amber-600 font-bold">₹70</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274417-1c3f1a2e2c55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Upma" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Upma</h4>
<p class="text-gray-600 mb-4">Semolina porridge with vegetables and spices</p>
<p class="text-amber-600 font-bold">₹65</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274418-1c3f1a2e2c56?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Poha" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Poha</h4>
<p class="text-gray-600 mb-4">Flattened rice flakes with peanuts, onions, and spices</p>
<p class="text-amber-600 font-bold">₹65</p>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md menu-item transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633945274419-1c3f1a2e2c57?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Uttapam" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h4 class="text-xl font-semibold mb-2">Uttapam</h4>
<p class="text-gray-600 mb-4">Thick pancake with vegetables and spices</p>
<p class="text-amber-600 font-bold">₹85</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Tiffin Gallery</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1633945274309-2c16f9687f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Plain Dosa" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1583575128735-c508b5f5b2c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Masala Dosa" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1630911428991-27f5e5359a9e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Idli" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Rava Idli" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1633945274410-1c3f1a2e2c4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Egg Dosa" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1633945274411-1c3f1a2e2c4f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Pesara Dosa" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1633945274412-1c3f1a2e2c50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Onion Dosa" class="w-full h-64 object-cover">
</div>
<div class="gallery-item rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1633945274413-1c3f1a2e2c51?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Paneer Dosa" class="w-full h-64 object-cover">
</div>
</div>
</div>
</section>
<!-- Book a Table Section -->
<section id="book" class="py-16 bg-gray-50">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Book a Table</h2>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-amber-500 p-8 text-white">
<h3 class="text-2xl font-bold mb-4">Reservation Details</h3>
<p class="mb-6">Book your table in advance to enjoy our delicious tiffins in our cozy dining area.</p>
<div class="flex items-center mb-4">
<i class="fas fa-clock text-xl mr-3"></i>
<div>
<h4 class="font-semibold">Opening Hours</h4>
<p>Monday - Sunday: 7:00 AM - 11:00 AM</p>
</div>
</div>
<div class="flex items-center mb-4">
<i class="fas fa-phone-alt text-xl mr-3"></i>
<div>
<h4 class="font-semibold">Phone</h4>
<p>+91 98765 43210</p>
</div>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-xl mr-3"></i>
<div>
<h4 class="font-semibold">Location</h4>
<p>123 Tiffin Street, Bangalore, Karnataka</p>
</div>
</div>
</div>
<div class="md:w-1/2 p-8">
<form id="bookingForm" class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
<input type="text" id="name" name="name" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" name="email" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label>
<input type="tel" id="phone" name="phone" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div class="grid grid-cols-2 gap-4">
<div>
<label for="date" class="block text-sm font-medium text-gray-700 mb-1">Date</label>
<input type="date" id="date" name="date" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="time" class="block text-sm font-medium text-gray-700 mb-1">Time</label>
<input type="time" id="time" name="time" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
</div>
<div>
<label for="guests" class="block text-sm font-medium text-gray-700 mb-1">Number of Guests</label>
<select id="guests" name="guests" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
<option value="1">1 Person</option>
<option value="2">2 People</option>
<option value="3">3 People</option>
<option value="4">4 People</option>
<option value="5">5 People</option>
<option value="6">6+ People</option>
</select>
</div>
<div>
<label for="special-requests" class="block text-sm font-medium text-gray-700 mb-1">Special Requests</label>
<textarea id="special-requests" name="special-requests" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500"></textarea>
</div>
<button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-4 rounded-md transition duration-300">Book Now</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- About Us Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">About Divine Delights</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="About Us" class="rounded-lg shadow-lg w-full">
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold mb-4 text-amber-600">Our Story</h3>
<p class="text-gray-600 mb-4">Divine Delights was born out of a passion for authentic South Indian breakfast cuisine. Our founder, Mrs. Lakshmi, grew up in a small village in Tamil Nadu where she learned traditional recipes from her grandmother.</p>
<p class="text-gray-600 mb-4">After moving to Bangalore, she noticed the lack of truly homemade-style tiffins in the city. What started as a small home kitchen serving neighbors has now grown into a beloved tiffin service with hundreds of satisfied customers.</p>
<h3 class="text-2xl font-semibold mb-4 text-amber-600">Our Mission</h3>
<p class="text-gray-600 mb-4">We are committed to preserving the authentic flavors of South Indian breakfast while making them accessible to busy urban dwellers. Our mission is to bring the warmth and comfort of homemade food to your table every morning.</p>
<h3 class="text-2xl font-semibold mb-4 text-amber-600">Our Values</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check-circle text-amber-500 mt-1 mr-2"></i>
<span>Authenticity - We stay true to traditional recipes and cooking methods</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-amber-500 mt-1 mr-2"></i>
<span>Quality - Only the freshest ingredients make it to your plate</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-amber-500 mt-1 mr-2"></i>
<span>Hygiene - Our kitchen maintains the highest standards of cleanliness</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-amber-500 mt-1 mr-2"></i>
<span>Sustainability - We minimize waste and use eco-friendly packaging</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">What Our Customers Say</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Customer">
</div>
<div class="ml-3">
<h4 class="text-sm font-medium text-gray-900">Priya Sharma</h4>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"The masala dosa from Divine Delights reminds me of my grandmother's cooking. Perfectly crisp with just the right amount of spicing in the potato filling. I order it at least twice a week!"</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Customer">
</div>
<div class="ml-3">
<h4 class="text-sm font-medium text-gray-900">Rahul Patel</h4>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"As a busy IT professional, I don't have time to cook breakfast. Divine Delights has been a lifesaver with their timely deliveries and delicious food. The rava idli is my favorite!"</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Customer">
</div>
<div class="ml-3">
<h4 class="text-sm font-medium text-gray-900">Ananya Reddy</h4>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600">"I've tried almost everything on their menu and haven't been disappointed yet. The vada is perfectly crispy outside and soft inside, just like how they make it in Chennai. Highly recommend!"</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Contact Us</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-semibold mb-6 text-amber-600">Get in Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-amber-100 flex items-center justify-center text-amber-600">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Address</h4>
<p class="text-gray-600">123 Tiffin Street, Bangalore, Karnataka 560001</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-amber-100 flex items-center justify-center text-amber-600">
<i class="fas fa-phone-alt"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Phone</h4>
<p class="text-gray-600">+91 98765 43210</p>
<p class="text-gray-600">+91 80 2345 6789</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-amber-100 flex items-center justify-center text-amber-600">
<i class="fas fa-envelope"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Email</h4>
<p class="text-gray-600">info@divinedelights.com</p>
<p class="text-gray-600">orders@divinedelights.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-amber-100 flex items-center justify-center text-amber-600">
<i class="fas fa-clock"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Opening Hours</h4>
<p class="text-gray-600">Monday - Sunday: 7:00 AM - 11:00 AM</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="text-lg font-medium text-gray-900 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-amber-500 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-amber-500 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-amber-500 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-amber-500 hover:text-white transition duration-300">
<i class="fab fa-zomato"></i>
</a>
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-semibold mb-6 text-amber-600">Send Us a Message</h3>
<form id="contactForm" class="space-y-4">
<div>
<label for="contact-name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
<input type="text" id="contact-name" name="contact-name" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="contact-email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="contact-email" name="contact-email" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="contact-phone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label>
<input type="tel" id="contact-phone" name="contact-phone" class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="contact-subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="contact-subject" name="contact-subject" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500">
</div>
<div>
<label for="contact-message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="contact-message" name="contact-message" rows="4" required class="w-full px-4 py-2 border border-gray-300 rounded-md form-input focus:border-amber-500"></textarea>
</div>
<button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-4 rounded-md transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 logo-text">Divine Delights</h3>
<p class="text-gray-400">Bringing authentic South Indian breakfast flavors to your table since 2010.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-amber-500 transition duration-300">Home</a></li>
<li><a href="#menu" class="text-gray-400 hover:text-amber-500 transition duration-300">Menu</a></li>
<li><a href="#gallery" class="text-gray-400 hover:text-amber-500 transition duration-300">Gallery</a></li>
<li><a href="#book" class="text-gray-400 hover:text-amber-500 transition duration-300">Book a Table</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Information</h4>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-amber-500 transition duration-300">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-amber-500 transition duration-300">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-amber-500 transition duration-300">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Privacy Policy</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for updates and special offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-md focus:outline-none text-gray-900">
<button type="submit" class="bg-amber-500 hover:bg-amber-600 px-4 py-2 rounded-r-md transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 Divine Delights. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
<i class="fab fa-zomato"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-8 right-8 bg-amber-500 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg hover:bg-amber-600 transition duration-300 hidden">
<i class="fas fa-arrow-up"></i>
</button>
<!-- Success Modal -->
<div id="successModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg p-8 max-w-md w-full mx-4">
<div class="text-center">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-green-100 mb-4">
<i class="fas fa-check text-green-600 text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2" id="modalTitle">Success!</h3>
<p class="text-gray-600 mb-6" id="modalMessage">Your message has been sent successfully.</p>
<button id="modalClose" class="px-4 py-2 bg-amber-500 text-white rounded-md hover:bg-amber-600 transition duration-300">
Close
</button>
</div>
</div>
</div>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Back to top button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
} else {
backToTopButton.classList.add('hidden');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
// Form submission for booking
const bookingForm = document.getElementById('bookingForm');
const contactForm = document.getElementById('contactForm');
const successModal = document.getElementById('successModal');
const modalTitle = document.getElementById('modalTitle');
const modalMessage = document.getElementById('modalMessage');
const modalClose = document.getElementById('modalClose');
bookingForm.addEventListener('submit', (e) => {
e.preventDefault();
// Get form data
const formData = new FormData(bookingForm);
const data = Object.fromEntries(formData);
// Here you would typically send this data to your server
// For demo purposes, we'll just show a success message
modalTitle.textContent = 'Booking Confirmed!';
modalMessage.textContent = `Thank you, ${data.name}! Your table booking for ${data.date} at ${data.time} for ${data.guests} people has been received. We'll contact you shortly to confirm.`;
// Send email (simulated)
sendEmail('redabc1234@proton.me', 'New Table Booking', `
Name: ${data.name}
Email: ${data.email}
Phone: ${data.phone}
Date: ${data.date}
Time: ${data.time}
Guests: ${data.guests}
Special Requests: ${data['special-requests'] || 'None'}
`);
// Show success modal
successModal.classList.remove('hidden');
// Reset form
bookingForm.reset();
});
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
// Get form data
const formData = new FormData(contactForm);
const data = Object.fromEntries(formData);
// Here you would typically send this data to your server
// For demo purposes, we'll just show a success message
modalTitle.textContent = 'Message Sent!';
modalMessage.textContent = `Thank you, ${data['contact-name']}! Your message has been received. We'll get back to you soon.`;
// Send email (simulated)
sendEmail('redabc1234@proton.me', 'New Contact Message', `
Name: ${data['contact-name']}
Email: ${data['contact-email']}
Phone: ${data['contact-phone'] || 'Not provided'}
Subject: ${data['contact-subject']}
Message: ${data['contact-message']}
`);
// Show success modal
successModal.classList.remove('hidden');
// Reset form
contactForm.reset();
});
modalClose.addEventListener('click', () => {
successModal.classList.add('hidden');
});
// Function to simulate sending email
function sendEmail(to, subject, body) {
// In a real application, you would use a server-side script or service to send emails
console.log(`Email sent to: ${to}`);
console.log(`Subject: ${subject}`);
console.log(`Body: ${body}`);
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=learncode/delight" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>