-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmission.html
373 lines (326 loc) · 11.3 KB
/
mission.html
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KindNests - Our Mission</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav {
background: white;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
color: rgb(69, 123, 157);
font-size: 1.5rem;
font-weight: bold;
text-decoration: none;
}
.nav-links {
display: flex;
gap: 20px;
}
.btn {
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-primary {
background: rgb(69, 123, 157);
color: white;
}
.btn-outline {
background: transparent;
border: 1px solid rgb(69, 123, 157);
color: rgb(69, 123, 157);
}
.btn:hover {
opacity: 0.9;
transform: translateY(-1px);
}
.hero {
background: linear-gradient(rgba(69, 123, 157, 0.05), rgba(69, 123, 157, 0.1));
padding: 4rem 1rem;
text-align: center;
}
.hero h1 {
font-size: 2.5rem;
color: #333;
margin-bottom: 1rem;
}
.hero p {
max-width: 800px;
margin: 0 auto;
color: #666;
font-size: 1.2rem;
line-height: 1.6;
}
.mission-content {
max-width: 1200px;
margin: 4rem auto;
padding: 0 1rem;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.value-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
}
.value-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.impact-section {
background: #f8f9fa;
padding: 4rem 1rem;
margin: 4rem 0;
}
.impact-content {
max-width: 1200px;
margin: 0 auto;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.stat-card {
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: rgb(69, 123, 157);
margin-bottom: 0.5rem;
}
.team-section {
max-width: 1200px;
margin: 4rem auto;
padding: 0 1rem;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.team-card {
text-align: center;
}
.team-image {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 1rem;
background: #f0f0f0;
}
.section-title {
text-align: center;
font-size: 2rem;
color: #333;
margin-bottom: 1rem;
}
.section-subtitle {
text-align: center;
color: #666;
max-width: 800px;
margin: 0 auto 2rem;
line-height: 1.6;
}
.cta-section {
background: linear-gradient(rgba(69, 123, 157, 0.9), rgba(69, 123, 157, 1));
color: white;
text-align: center;
padding: 4rem 1rem;
margin-top: 4rem;
}
.cta-content {
max-width: 800px;
margin: 0 auto;
}
.cta-section h2 {
margin-bottom: 1rem;
}
.cta-section p {
margin-bottom: 2rem;
}
.btn-white {
background: white;
color: rgb(69, 123, 157);
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.value-card, .stat-card, .team-card {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="index.html" class="logo">
<span>♥</span>
<span>KindNests</span>
</a>
<div class="nav-links">
<a href="hiw.html" class="btn btn-outline" style="text-decoration: none;">How It Works</a>
<a href="browse.html" class="btn btn-outline" style="text-decoration: none;">Browse</a>
<!-- <a href="signin.html" class="btn btn-outline" style="text-decoration: none;">Sign In</a> -->
<a href="donation.html" class="btn btn-primary donation" style="text-decoration: none;">Get Started</a>
</div>
</div>
</nav>
<section class="hero">
<h1>Our Mission</h1>
<p>At KindNests, we're bridging the gap between generous donors and organizations in need, making in-kind donations simpler, more efficient, and more impactful for everyone involved.</p>
</section>
<section class="mission-content">
<h2 class="section-title">Our Core Values</h2>
<p class="section-subtitle">These principles guide everything we do at KindNests</p>
<div class="values-grid">
<div class="value-card">
<div class="value-icon">🤝</div>
<h3>Community First</h3>
<p>We believe in the power of community and creating meaningful connections between donors and organizations.</p>
</div>
<div class="value-card">
<div class="value-icon">💡</div>
<h3>Innovation</h3>
<p>We continuously improve our platform to make in-kind donations more efficient and accessible.</p>
</div>
<div class="value-card">
<div class="value-icon">🎯</div>
<h3>Impact Focused</h3>
<p>Every feature and decision is guided by our goal to maximize the impact of donations.</p>
</div>
<div class="value-card">
<div class="value-icon">🤲</div>
<h3>Transparency</h3>
<p>We maintain open communication and clear tracking of all donations from start to finish.</p>
</div>
</div>
</section>
<section class="impact-section">
<div class="impact-content">
<h2 class="section-title">Our Impact</h2>
<p class="section-subtitle">Together with our community, we're making a real difference</p>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">50K+</div>
<p>Items Donated</p>
</div>
<div class="stat-card">
<div class="stat-number">1000+</div>
<p>Organizations Helped</p>
</div>
<div class="stat-card">
<div class="stat-number">25K+</div>
<p>Active Donors</p>
</div>
<div class="stat-card">
<div class="stat-number">100+</div>
<p>Communities Served</p>
</div>
</div>
</div>
</section>
<section class="team-section">
<h2 class="section-title">Our Leadership Team</h2>
<p class="section-subtitle">Meet the passionate individuals driving our mission forward</p>
<div class="team-grid">
<div class="team-card">
<img src="/api/placeholder/150/150" alt="Team member" class="team-image">
<h3>Sarah Johnson</h3>
<p>Founder & CEO</p>
</div>
<div class="team-card">
<img src="/api/placeholder/150/150" alt="Team member" class="team-image">
<h3>Michael Chen</h3>
<p>Chief Operations Officer</p>
</div>
<div class="team-card">
<img src="/api/placeholder/150/150" alt="Team member" class="team-image">
<h3>Lisa Rodriguez</h3>
<p>Community Relations Director</p>
</div>
</div>
</section>
<section class="cta-section">
<div class="cta-content">
<h2>Join Our Mission</h2>
<p>Whether you're looking to donate or are an organization in need, we'd love to have you join our community.</p>
<button class="btn btn-white donation">Get Started Today</button>
</div>
</section>
<script>
// Add smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
document.querySelectorAll('.donation').forEach(button => {
button.addEventListener('click', function(e) {
e.preventDefault();
window.location.href = 'donation.html';
});
});
// Animate stats when they come into view
const stats = document.querySelectorAll('.stat-number');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
});
stats.forEach(stat => {
stat.style.opacity = 0;
stat.style.transform = 'translateY(20px)';
stat.style.transition = 'all 0.6s ease';
observer.observe(stat);
});
</script>
</body>
</html>