-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
730 lines (638 loc) · 24.1 KB
/
contact.html
File metadata and controls
730 lines (638 loc) · 24.1 KB
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Contact Lumipuchi - Get in touch with us for questions, custom orders, or support.">
<title>Contact Us | Lumipuchi Premium Keychains</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<style>
.contact-page {
padding: 8rem 1.5rem 4rem;
min-height: 100vh;
}
.contact-header {
text-align: center;
margin-bottom: 4rem;
}
.contact-title {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 5vw, 3rem);
color: var(--text);
margin-bottom: 0.75rem;
}
.contact-subtitle {
color: var(--muted);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
.contact-layout {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
max-width: 1200px;
margin: 0 auto;
}
/* Contact Info Section */
.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}
.info-card {
background: var(--gradient-glass);
border: 1px solid var(--border-light);
border-radius: var(--radius-xl);
padding: 2rem;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.info-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-glow);
border-color: var(--primary);
}
.info-card-icon {
width: 60px;
height: 60px;
background: var(--gradient-primary);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.75rem;
margin-bottom: 1.25rem;
}
.info-card h3 {
font-size: 1.15rem;
font-weight: 600;
color: var(--text);
margin-bottom: 0.5rem;
}
.info-card p {
color: var(--muted);
line-height: 1.7;
}
.info-card a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
transition: all 0.2s ease;
}
.info-card a:hover {
text-decoration: underline;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-link {
width: 45px;
height: 45px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
text-decoration: none;
transition: all 0.3s ease;
}
.social-link:hover {
background: var(--gradient-primary);
transform: translateY(-3px);
}
/* Contact Form Section */
.contact-form-wrapper {
background: var(--gradient-glass);
border: 1px solid var(--border-light);
border-radius: var(--radius-xl);
padding: 3rem;
backdrop-filter: blur(10px);
}
.form-header {
margin-bottom: 2rem;
}
.form-header h2 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: var(--text);
margin-bottom: 0.5rem;
}
.form-header p {
color: var(--muted);
font-size: 0.95rem;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-size: 0.9rem;
font-weight: 500;
color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 1rem 1.25rem;
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
background: var(--surface);
color: var(--text);
font-family: inherit;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(192, 81, 138, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--muted);
}
.form-group textarea {
resize: vertical;
min-height: 150px;
}
.submit-btn {
padding: 1.15rem 2.5rem;
background: var(--gradient-primary);
border: none;
border-radius: 999px;
color: white;
font-size: 1.05rem;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
transition: all 0.3s ease;
align-self: flex-start;
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(192, 81, 138, 0.4);
}
/* FAQ Section */
.faq-section {
max-width: 900px;
margin: 6rem auto 0;
}
.faq-header {
text-align: center;
margin-bottom: 3rem;
}
.faq-header h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--text);
margin-bottom: 0.5rem;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.faq-item {
background: var(--gradient-glass);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
backdrop-filter: blur(10px);
}
.faq-question {
width: 100%;
padding: 1.5rem;
background: none;
border: none;
text-align: left;
font-size: 1.05rem;
font-weight: 600;
color: var(--text);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.faq-question:hover {
color: var(--primary);
}
.faq-icon {
font-size: 1.5rem;
transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item.open .faq-answer {
max-height: 200px;
}
.faq-answer p {
padding: 0 1.5rem 1.5rem;
color: var(--muted);
line-height: 1.7;
}
/* Map Section */
.map-section {
max-width: 1200px;
margin: 6rem auto 0;
}
.map-header {
text-align: center;
margin-bottom: 2rem;
}
.map-header h2 {
font-family: 'Playfair Display', serif;
font-size: 1.75rem;
color: var(--text);
}
.map-wrapper {
height: 400px;
border-radius: var(--radius-xl);
overflow: hidden;
background: var(--accent);
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-light);
}
.map-placeholder {
text-align: center;
color: var(--muted);
}
.map-placeholder-icon {
font-size: 4rem;
margin-bottom: 1rem;
}
@media (max-width: 1024px) {
.contact-layout {
grid-template-columns: 1fr;
gap: 3rem;
}
}
@media (max-width: 768px) {
.contact-page {
padding: 6rem 1rem 3rem;
}
.form-row {
grid-template-columns: 1fr;
gap: 1rem;
}
.contact-form-wrapper {
padding: 2rem 1.5rem;
}
.submit-btn {
width: 100%;
}
}
</style>
</head>
<body>
<!-- Cosmic Canvas -->
<canvas id="cosmic-canvas"></canvas>
<!-- Header -->
<header class="site-header">
<nav>
<a href="index.html" class="logo-wrapper">
<span class="logo">Lumipuchi</span>
<span class="logo-tagline">ILLUMINATE YOUR STYLE</span>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
<div class="nav-actions">
<button class="nav-btn" id="cart-btn" aria-label="Cart">
<svg class="nav-icon" viewBox="0 0 24 24">
<circle cx="9" cy="21" r="1" />
<circle cx="20" cy="21" r="1" />
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
</svg>
<span class="cart-badge" id="cart-count">0</span>
</button>
<a href="account.html" class="nav-btn" aria-label="Account">
<svg class="nav-icon" viewBox="0 0 24 24">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" />
<circle cx="12" cy="7" r="4" />
</svg>
</a>
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme">
<svg id="theme-icon" viewBox="0 0 24 24" fill="currentColor">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
</svg>
</button>
</div>
<button class="mobile-menu-btn" id="mobile-menu-btn" aria-label="Menu">
<span></span><span></span><span></span>
</button>
</nav>
</header>
<!-- Contact Page -->
<section class="contact-page">
<div class="contact-header">
<span class="section-badge">Get in Touch</span>
<h1 class="contact-title">Contact Us 💌</h1>
<p class="contact-subtitle">Have a question, feedback, or a custom request? We'd love to hear from you!</p>
</div>
<div class="contact-layout">
<!-- Contact Info -->
<div class="contact-info">
<div class="info-card">
<div class="info-card-icon">📧</div>
<h3>Email Us</h3>
<p>For general inquiries and support:</p>
<a href="mailto:hello@lumipuchi.com">hello@lumipuchi.com</a>
</div>
<div class="info-card">
<div class="info-card-icon">📞</div>
<h3>Call Us</h3>
<p>Available Mon-Sat, 10AM - 6PM IST:</p>
<a href="tel:+919339492537">+91 93394 92537</a>
</div>
<div class="info-card">
<div class="info-card-icon">📍</div>
<h3>Visit Us</h3>
<p>
Amrita Bhandar <br>
1, Adhata Paschim Road, Adhata, <br>
Amdanga, North 24 Paraganas<br>
West Bengal, India - 743221
</p>
</div>
<div class="info-card">
<div class="info-card-icon">🌐</div>
<h3>Follow Us</h3>
<p>Stay connected for updates and behind-the-scenes:</p>
<div class="social-links">
<a href="#" class="social-link" aria-label="Instagram">📸</a>
<a href="#" class="social-link" aria-label="Facebook">👤</a>
<a href="#" class="social-link" aria-label="Twitter">🐦</a>
<a href="#" class="social-link" aria-label="Pinterest">📌</a>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="contact-form-wrapper">
<div class="form-header">
<h2>Send a Message ✉️</h2>
<p>Fill out the form below and we'll get back to you within 24 hours.</p>
</div>
<form class="contact-form" id="contact-form">
<div class="form-row">
<div class="form-group">
<label for="name">Your Name *</label>
<input type="text" id="name" placeholder="John Doe" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" placeholder="john@example.com" required>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" placeholder="+91 98765 43210">
</div>
<div class="form-group">
<label for="subject">Subject *</label>
<select id="subject" required>
<option value="">Select a topic</option>
<option value="general">General Inquiry</option>
<option value="order">Order Status</option>
<option value="custom">Custom Order Request</option>
<option value="wholesale">Wholesale/Bulk Orders</option>
<option value="feedback">Feedback</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="form-group">
<label for="message">Your Message *</label>
<textarea id="message" placeholder="Tell us how we can help you..." required></textarea>
</div>
<button type="submit" class="submit-btn">
Send Message
<svg viewBox="0 0 24 24" width="20" height="20">
<path d="M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z" stroke="currentColor" stroke-width="2"
fill="none" />
</svg>
</button>
</form>
</div>
</div>
<!-- FAQ Section -->
<div class="faq-section">
<div class="faq-header">
<span class="section-badge">FAQ</span>
<h2>Frequently Asked Questions</h2>
</div>
<div class="faq-list">
<div class="faq-item">
<button class="faq-question">
How long does shipping take?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p><strong>India:</strong> Standard shipping takes 5-7 business days. Express shipping (2-3
days) is also available.</p>
<p><strong>International:</strong> We ship worldwide! International orders typically take 10-15
business days. Express international shipping (5-7 days) is available for select countries.
</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Can I request a custom design?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Absolutely! We love creating custom keychains. Simply fill out the contact form above with
your idea, and our design team will get in touch with you to discuss details and pricing.
</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
What is your return policy?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>We offer hassle-free 7-day returns. If you're not satisfied, contact us within 7 days of
delivery for a full refund or exchange. Items must be unused and in original packaging.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Do you offer wholesale pricing?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Yes! We offer special pricing for bulk and wholesale orders. Select "Wholesale/Bulk Orders"
in the contact form subject, and our sales team will reach out with a custom quote.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Are your keychains waterproof?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Our keychains are water-resistant and can handle everyday moisture. However, we recommend
avoiding prolonged submersion in water to preserve the finish and colors.</p>
</div>
</div>
</div>
</div>
<!-- Map Section -->
<div class="map-section">
<div class="map-header">
<h2>Find Our Studio 📍</h2>
</div>
<div class="map-wrapper">
<div class="map-placeholder">
<div class="map-placeholder-icon">🗺️</div>
<p>Interactive map would be displayed here</p>
<p><strong>Lumipuchi</strong> - Adhata, Amdanga, West Bengal</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-grid">
<div class="footer-section">
<a href="index.html" class="footer-logo">Lumipuchi</a>
<p>Illuminating your everyday with handcrafted cosmic keychains.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Categories</h3>
<ul class="footer-links">
<li><a href="shop.html?category=kawaii">Kawaii Plush</a></li>
<li><a href="shop.html?category=food">Food & Bakery</a></li>
<li><a href="shop.html?category=limited">Limited Edition</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul class="footer-links">
<li><a href="#">FAQ</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Returns</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Lumipuchi. Made with 💖 in India</p>
</div>
</footer>
<!-- Cart Modal -->
<div class="cart-modal" id="cart-modal">
<div class="cart-overlay" id="cart-overlay"></div>
<div class="cart-panel">
<div class="cart-header">
<h2>Your Cart ✨</h2>
<button class="close-cart" id="close-cart">
<svg class="nav-icon" viewBox="0 0 24 24">
<path d="M18 6L6 18M6 6l12 12" stroke="currentColor" stroke-width="2" />
</svg>
</button>
</div>
<div class="cart-items" id="cart-items"></div>
<div class="cart-footer">
<div class="cart-subtotal">
<span>Subtotal:</span>
<span class="cart-total" id="cart-total">₹0</span>
</div>
</div>
<div class="cart-actions">
<button class="clear-btn" id="clear-cart">Clear All</button>
<a href="checkout.html" class="checkout-btn">Checkout</a>
</div>
</div>
</div>
<!-- Toast -->
<div class="toast" id="toast">
<span class="toast-icon">✓</span>
<span class="toast-message" id="toast-message">Message sent!</span>
</div>
<!-- Scripts -->
<script src="assets/js/theme.js"></script>
<script src="assets/js/cart.js"></script>
<script src="assets/js/three-scene.js"></script>
<script src="assets/js/main.js"></script>
<script>
// FAQ Toggle
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', () => {
const item = question.parentElement;
const wasOpen = item.classList.contains('open');
// Close all
document.querySelectorAll('.faq-item').forEach(i => i.classList.remove('open'));
// Open clicked if it wasn't open
if (!wasOpen) {
item.classList.add('open');
}
});
});
// Contact Form Submit
document.getElementById('contact-form').addEventListener('submit', (e) => {
e.preventDefault();
// Show toast
const toast = document.getElementById('toast');
const toastMessage = document.getElementById('toast-message');
toastMessage.textContent = 'Message sent! We\'ll get back to you soon.';
toast.classList.add('show');
setTimeout(() => {
toast.classList.remove('show');
}, 3000);
// Reset form
e.target.reset();
});
</script>
</body>
</html>