File size: 4,374 Bytes
72d324f
 
 
 
 
b750700
 
72d324f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b750700
 
 
72d324f
b750700
72d324f
 
 
 
 
 
 
 
 
 
b750700
 
 
72d324f
 
 
b750700
72d324f
 
 
b750700
 
 
 
72d324f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b750700
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Italias Romanos Too – Local Pizza & More</title>
<link rel="icon" type="image/x-icon" href="http://static.photos/food/64x64/42">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-gray-100 transition-colors">
    <custom-header></custom-header>

    <main>
        <!-- HERO -->
        <section class="relative h-[62vh] flex items-center justify-center text-center overflow-hidden">
            <div class="absolute inset-0 z-0">
                <img src="http://static.photos/restaurant/1200x630/7" alt="Cozy restaurant interior" class="w-full h-full object-cover">
                <div class="absolute inset-0 bg-gradient-to-t from-black/60 via-black/30 to-transparent"></div>
            </div>
            <div class="relative z-10 px-4">
                <h1 class="text-4xl md:text-6xl font-extrabold text-white drop-shadow-lg">Italias Romanos Too</h1>
                <p class="mt-4 text-lg md:text-xl text-white/90 max-w-xl mx-auto">Your local spot for pizza and more in Kellner & Wisconsin Rapids, WI.</p>
                <a href="#menu" class="mt-6 inline-block px-6 py-3 rounded-full bg-orange-500 hover:bg-orange-600 text-white font-semibold shadow-lg hover:shadow-xl transform hover:-translate-y-0.5 transition">See Menu</a>
            </div>
</section>

        <!-- LIVE SEARCH & FILTERS -->
        <section class="sticky top-0 z-20 bg-white/80 dark:bg-gray-900/80 backdrop-blur-lg border-b border-gray-200 dark:border-gray-700">
            <div class="max-w-7xl mx-auto px-4 py-4 flex flex-col md:flex-row gap-4 items-center">
                <div class="relative w-full md:w-1/3">
                    <i data-feather="search" class="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-400"></i>
                    <input id="searchInput" type="text" placeholder="Search dishes, ingredients..." class="w-full pl-10 pr-4 py-2 rounded-full border border-gray-300 dark:border-gray-600 bg-gray-100 dark:bg-gray-800 focus:ring-2 focus:ring-orange-400 outline-none">
                </div>
                <div class="flex gap-2 flex-wrap">
                    <button class="filter-btn active" data-filter="all">All</button>
                    <button class="filter-btn" data-filter="pizza">Pizza</button>
                    <button class="filter-btn" data-filter="pasta">Pasta</button>
                    <button class="filter-btn" data-filter="sandwiches">Sandwiches</button>
                    <button class="filter-btn" data-filter="breakfast">Breakfast</button>
                    <button class="filter-btn" data-filter="dessert">Dessert</button>
                </div>
<div class="ml-auto flex items-center gap-2">
                    <button id="themeToggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700 transition" aria-label="Toggle theme">
                        <i data-feather="moon" class="w-5 h-5"></i>
                    </button>
                <a href="contact.html" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700 transition" aria-label="Contact">
                    <i data-feather="phone" class="w-5 h-5"></i>
                </a>
</div>
            </div>
        </section>

        <!-- MENU GRID -->
        <section id="menu" class="max-w-7xl mx-auto px-4 py-10">
            <div id="menuGrid" class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
                <!-- Cards injected by JS -->
            </div>
            <div id="emptyState" class="hidden text-center py-16">
                <i data-feather="coffee" class="w-16 h-16 mx-auto text-gray-300"></i>
                <p class="mt-4 text-gray-500">No items match your search. Try something else?</p>
            </div>
        </section>
    </main>
    <custom-footer></custom-footer>

    <script src="components/header.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>feather.replace();</script>
</body>
</html>