File size: 18,344 Bytes
149e452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Home - PurrHope</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></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-gradient-to-br from-blue-50 to-purple-50">
    <!-- Navigation -->
    <nav class="fixed w-full bg-white/95 backdrop-blur-sm shadow-sm z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between items-center h-16">
                <div class="flex items-center">
                    <i data-feather="heart" class="h-8 w-8 text-purple-400 mr-2"></i>
                    <span class="text-2xl font-bold text-gray-800">PurrHope</span>
                </div>
                <div class="hidden md:block">
                    <div class="ml-10 flex items-baseline space-x-8">
                        <a href="index.html" class="text-purple-600 px-3 py-2 rounded-md text-sm font-medium">Home</a>
                        <a href="about.html" class="text-gray-700 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition-colors">About</a>
                        <a href="cats.html" class="text-gray-700 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition-colors">Our Cats</a>
                        <a href="donate.html" class="bg-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-purple-600 transition-colors">Donate</a>
                    </div>
                </div>
                <button class="md:hidden" onclick="toggleMenu()">
                    <i data-feather="menu" class="h-6 w-6 text-gray-700"></i>
                </button>
            </div>
        </div>
        <div id="mobile-menu" class="hidden md:hidden bg-white border-t">
            <div class="px-2 pt-2 pb-3 space-y-1">
                <a href="index.html" class="block px-3 py-2 text-purple-600">Home</a>
                <a href="about.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">About</a>
                <a href="cats.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">Our Cats</a>
                <a href="donate.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">Donate</a>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="pt-16 min-h-screen flex items-center">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
            <div class="grid lg:grid-cols-2 gap-12 items-center">
                <div data-aos="fade-right">
                    <h1 class="text-5xl lg:text-6xl font-bold text-gray-800 mb-6">
                        Giving Every Cat a <span class="text-purple-600">Chance</span> at Love
                    </h1>
                    <p class="text-xl text-gray-600 mb-8 leading-relaxed">
                        PurrHope is a non-profit organization dedicated to rescuing, rehabilitating, and rehoming cats in need. 
                        Together, we can create a world where no feline is left behind.
                    </p>
                    <div class="flex flex-col sm:flex-row gap-4">
                        <a href="cats.html" class="bg-purple-500 text-white px-8 py-3 rounded-full font-semibold hover:bg-purple-600 transition-colors text-center">
                            Meet Our Cats
                        </a>
                        <a href="donate.html" class="bg-white text-purple-600 px-8 py-3 rounded-full border-2 border-purple-500 font-semibold hover:bg-purple-50 transition-colors text-center">
                            Donate Now
                        </a>
                    </div>
                </div>
                <div data-aos="fade-left" class="relative">
                    <img src="http://static.photos/nature/640x360/1" alt="Happy cat" class="rounded-3xl shadow-2xl w-full">
                    <div class="absolute -bottom-6 -left-6 bg-white rounded-2xl p-6 shadow-lg">
                        <div class="flex items-center space-x-3">
                            <div class="bg-green-100 p-2 rounded-full">
                                <i data-feather="heart" class="h-6 w-6 text-green-600"></i>
                            </div>
                            <div>
                                <p class="text-gray-800 font-bold">500+</p>
                                <p class="text-gray-600 text-sm">Cats Rescued</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Stats Section -->
    <section class="py-20 bg-white/50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-4 gap-8">
                <div class="text-center" data-aos="fade-up" data-aos-delay="100">
                    <div class="text-4xl font-bold text-purple-600 mb-2">500+</div>
                    <p class="text-gray-600">Cats Rescued</p>
                </div>
                <div class="text-center" data-aos="fade-up" data-aos-delay="200">
                    <div class="text-4xl font-bold text-purple-600 mb-2">350+</div>
                    <p class="text-gray-600">Forever Homes Found</p>
                </div>
                <div class="text-center" data-aos="fade-up" data-aos-delay="300">
                    <div class="text-4xl font-bold text-purple-600 mb-2">50+</div>
                    <p class="text-gray-600">Active Volunteers</p>
                </div>
                <div class="text-center" data-aos="fade-up" data-aos-delay="400">
                    <div class="text-4xl font-bold text-purple-600 mb-2">15</div>
                    <p class="text-gray-600">Years of Service</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Featured Cats -->
    <section class="py-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16" data-aos="fade-up">
                <h2 class="text-4xl font-bold text-gray-800 mb-4">Ready for Adoption</h2>
                <p class="text-xl text-gray-600 max-w-2xl mx-auto">
                    Meet some of our wonderful cats looking for their forever homes
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="100">
                    <img src="http://static.photos/nature/640x360/20" alt="Luna" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-gray-800 mb-2">Luna</h3>
                        <p class="text-gray-600 mb-4">Sweet and gentle, perfect for a quiet home</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-gray-500">2 years old</span>
                            <a href="cats.html" class="text-purple-600 hover:text-purple-700 font-medium">Meet Luna β†’</a>
                        </div>
                    </div>
                </div>
                <div class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="200">
                    <img src="http://static.photos/nature/640x360/21" alt="Milo" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-gray-800 mb-2">Milo</h3>
                        <p class="text-gray-600 mb-4">Playful and energetic, loves children</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-gray-500">1 year old</span>
                            <a href="cats.html" class="text-purple-600 hover:text-purple-700 font-medium">Meet Milo β†’</a>
                        </div>
                    </div>
                </div>
                <div class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="300">
                    <img src="http://static.photos/nature/640x360/22" alt="Sophie" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-gray-800 mb-2">Sophie</h3>
                        <p class="text-gray-600 mb-4">Independent but affectionate</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-gray-500">3 years old</span>
                            <a href="cats.html" class="text-purple-600 hover:text-purple-700 font-medium">Meet Sophie β†’</a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="text-center mt-12" data-aos="fade-up">
                <a href="cats.html" class="bg-purple-500 text-white px-8 py-3 rounded-full font-semibold hover:bg-purple-600 transition-colors inline-block">
                    View All Cats
                </a>
            </div>
        </div>
    </section>

    <!-- Mission Section -->
    <section class="py-20 bg-white/50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid lg:grid-cols-2 gap-12 items-center">
                <div data-aos="fade-right">
                    <h2 class="text-4xl font-bold text-gray-800 mb-6">Our Mission</h2>
                    <p class="text-lg text-gray-600 mb-8 leading-relaxed">
                        We rescue cats from high-kill shelters, provide them with medical care, 
                        and work tirelessly to find them loving forever homes. Every cat deserves a chance at happiness.
                    </p>
                    <div class="space-y-4">
                        <div class="flex items-center space-x-3">
                            <i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
                            <span class="text-gray-700">Rescue cats from shelters and streets</span>
                        </div>
                        <div class="flex items-center space-x-3">
                            <i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
                            <span class="text-gray-700">Provide veterinary care and rehabilitation</span>
                        </div>
                        <div class="flex items-center space-x-3">
                            <i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
                            <span class="text-gray-700">Find loving forever homes</span>
                        </div>
                    </div>
                </div>
                <div data-aos="fade-left">
                    <img src="http://static.photos/nature/640x360/23" alt="Cat rescue" class="rounded-3xl shadow-2xl w-full">
                </div>
            </div>
        </div>
    </section>

    <!-- How You Can Help -->
    <section class="py-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16" data-aos="fade-up">
                <h2 class="text-4xl font-bold text-gray-800 mb-4">How You Can Help</h2>
                <p class="text-xl text-gray-600 max-w-2xl mx-auto">
                    There are many ways to support our mission and help cats in need
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow text-center" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i data-feather="heart" class="h-8 w-8 text-purple-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-800 mb-4">Donate</h3>
                    <p class="text-gray-600 mb-6">
                        Your donation helps provide food, medical care, and shelter for cats in need.
                    </p>
                    <a href="donate.html" class="text-purple-600 hover:text-purple-700 font-medium">
                        Donate Now β†’
                    </a>
                </div>
                <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow text-center" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i data-feather="users" class="h-8 w-8 text-purple-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-800 mb-4">Volunteer</h3>
                    <p class="text-gray-600 mb-6">
                        Join our team and help care for cats, assist with adoptions, and more.
                    </p>
                    <a href="#" class="text-purple-600 hover:text-purple-700 font-medium">
                        Join Us β†’
                    </a>
                </div>
                <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow text-center" data-aos="fade-up" data-aos-delay="300">
                    <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i data-feather="home" class="h-8 w-8 text-purple-600"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-800 mb-4">Adopt</h3>
                    <p class="text-gray-600 mb-6">
                        Give a cat the loving forever home they deserve.
                    </p>
                    <a href="cats.html" class="text-purple-600 hover:text-purple-700 font-medium">
                        Meet Our Cats β†’
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- Newsletter -->
    <section class="py-20 bg-gradient-to-r from-purple-100 to-pink-100">
        <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center" data-aos="fade-up">
            <h2 class="text-4xl font-bold text-gray-800 mb-4">Stay Connected</h2>
            <p class="text-xl text-gray-600 mb-8">
                Get updates on our cats, success stories, and ways you can help.
            </p>
            <form class="max-w-md mx-auto flex gap-4">
                <input type="email" placeholder="Your email address" class="flex-1 px-4 py-3 rounded-full border-0 focus:outline-none focus:ring-2 focus:ring-purple-500">
                <button type="submit" class="bg-purple-500 text-white px-8 py-3 rounded-full font-semibold hover:bg-purple-600 transition-colors">
                    Subscribe
                </button>
            </form>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center mb-4">
                        <i data-feather="heart" class="h-8 w-8 text-purple-400 mr-2"></i>
                        <span class="text-2xl font-bold">PurrHope</span>
                    </div>
                    <p class="text-gray-400">
                        Giving every cat a chance at a loving home.
                    </p>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Quick Links</h4>
                    <ul class="space-y-2 text-gray-400">
                        <li><a href="index.html" class="text-white">Home</a></li>
                        <li><a href="about.html" class="hover:text-white transition-colors">About Us</a></li>
                        <li><a href="cats.html" class="hover:text-white transition-colors">Our Cats</a></li>
                        <li><a href="donate.html" class="hover:text-white transition-colors">Donate</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Contact</h4>
                    <ul class="space-y-2 text-gray-400">
                        <li>123 Cat Street</li>
                        <li>Meow City, MC 12345</li>
                        <li>(555) 123-MEOW</li>
                        <li>info@purrhope.org</li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Follow Us</h4>
                    <div class="flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white transition-colors">
                            <i data-feather="facebook" class="h-6 w-6"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white transition-colors">
                            <i data-feather="twitter" class="h-6 w-6"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white transition-colors">
                            <i data-feather="instagram" class="h-6 w-6"></i>
                        </a>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>&copy; 2024 PurrHope. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        function toggleMenu() {
            const menu = document.getElementById('mobile-menu');
            menu.classList.toggle('hidden');
        }

        // Initialize AOS
        AOS.init({
            duration: 800,
            once: true
        });

        // Initialize Feather Icons
        feather.replace();
    </script>
</body>
</html>