<!DOCTYPE html>
<html lang="hi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tasty Recipes - स्वादिष्ट रेसिपीज</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background-color: #fdfbf9;
color: #333;
}
header {
background: #ffffff;
padding: 25px 20px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
header h1 {
color: #ff5e14;
font-size: 32px;
font-weight: 700;
}
header p {
font-size: 15px;
color: #666;
margin-top: 5px;
}
.hero {
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?q=80&w=1200') center/cover no-repeat;
padding: 90px 20px;
text-align: center;
color: white;
}
.hero h2 {
font-size: 36px;
margin-bottom: 12px;
font-weight: 600;
}
.hero p {
font-size: 18px;
color: #f0f0f0;
}
.container {
max-width: 1100px;
margin: 50px auto;
padding: 0 20px;
}
.section-title {
text-align: center;
font-size: 28px;
margin-bottom: 40px;
color: #2c3e50;
font-weight: 700;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.card {
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.3s ease;
text-align: center;
padding-bottom: 25px;
width: 320px;
border: 1px solid #f0f0f0;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(255, 94, 20, 0.15);
}
.card img {
width: 100%;
height: 220px;
object-fit: cover;
}
.card h3 {
font-size: 22px;
margin: 15px 0 8px;
color: #222;
font-weight: 600;
}
.card .tag {
display: inline-block;
background: #ffebe1;
color: #ff5e14;
padding: 4px 14px;
border-radius: 50px;
font-size: 12px;
font-weight: 700;
}
.card .time {
font-size: 14px;
color: #666;
margin: 15px 0;
}
.card .btn-recipe {
display: inline-block;
padding: 10px 28px;
background: #ff5e14;
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}
.order-box {
background: linear-gradient(135deg, #2c3e50, #1a252f);
color: white;
text-align: center;
padding: 45px 30px;
border-radius: 16px;
margin-top: 60px;
}
.order-box h3 {
font-size: 26px;
margin-bottom: 12px;
}
.order-box p {
font-size: 16px;
color: #bdc3c7;
margin-bottom: 25px;
}
.btn-call {
display: inline-block;
background: #25d366;
color: white;
padding: 14px 35px;
text-decoration: none;
font-size: 16px;
font-weight: 700;
border-radius: 50px;
box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}
footer {
background: #111;
color: #888;
text-align: center;
padding: 25px;
font-size: 14px;
margin-top: 60px;
}
</style>
</head>
<body>
<header>
<h1>Tasty Recipes 🍳</h1>
<p>घर पर बनाएं रेस्टोरेंट जैसा स्वादिष्ट खाना</p>
</header>
<div class="hero">
<h2>Discover Latest Trending Recipes</h2>
<p>हजारों बेहतरीन पकवानों की रेसिपीज यहाँ उपलब्ध हैं</p>
</div>
<div class="container">
<h2 class="section-title">हमारी मुख्य रेसिपीज</h2>
<div class="grid">
<div class="card">
<img src="https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?q=80&w=500" alt="Egg Manchurian">
<h3>Egg Manchurian</h3>
<span class="tag">Appetizer</span>
<p class="time">⏱️ समय: 30 मिनट</p>
<a href="#" class="btn-recipe">रेसिपी देखें</a>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1512621776951-a57141f2eefd?q=80&w=500" alt="Vegetable Bowl">
<h3>Pure Vegetable Bowl</h3>
<span class="tag">Healthy Diet</span>
<p class="time">⏱️ समय: 20 मिनट</p>
<a href="#" class="btn-recipe">रेसिपी देखें</a>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1569718212165-3a8278d5f624?q=80&w=500" alt="Egg Masala Ramen">
<h3>Egg Masala Ramen</h3>
<span class="tag">Noodles</span>
<p class="time">⏱️ समय: 25 मिनट</p>
<a href="#" class="btn-recipe">रेसिपी देखें</a>
</div>
</div>
<div class="order-box">
<h3>Birthday Catering & Special Orders</h3>
<p>क्या आप अपने घर के किसी कार्यक्रम के लिए बेहतरीन खाना आर्डर करना चाहते हैं?</p>
<a href="tel:+919892602035" class="btn-call">📞 कॉल करके आर्डर करें</a>
</div>
</div>
<footer>
<p>© 2026 Tasty Recipes | All Rights Reserved</p>
</footer>
</body>
</html>