-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
686 lines (596 loc) · 21.1 KB
/
contact.html
File metadata and controls
686 lines (596 loc) · 21.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Efoy Vocal</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
color: #333;
line-height: 1.6;
background-color: #f8f9fa;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header and Navigation */
header {
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
padding: 20px 0;
position: relative;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 28px;
font-weight: 700;
letter-spacing: 1px;
}
.logo span {
color: #ffcc00;
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ffcc00;
}
.nav-links a.active {
border-bottom: 2px solid #ffcc00;
padding-bottom: 5px;
}
.menu-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}
/* Page Header */
.page-header {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
color: white;
text-align: center;
padding: 80px 20px;
}
.page-header h1 {
font-size: 2.8rem;
margin-bottom: 20px;
}
.breadcrumb {
display: flex;
justify-content: center;
list-style: none;
}
.breadcrumb li {
margin: 0 10px;
}
.breadcrumb a {
color: #ffcc00;
text-decoration: none;
}
.breadcrumb li:after {
content: ">";
margin-left: 15px;
color: #ccc;
}
.breadcrumb li:last-child:after {
content: "";
}
/* Contact Section */
.contact {
padding: 80px 0;
}
.section-title {
text-align: center;
margin-bottom: 50px;
color: #333;
position: relative;
}
.section-title:after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(to right, #6a11cb, #2575fc);
margin: 15px auto;
border-radius: 2px;
}
.contact-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.contact-info {
flex: 1;
min-width: 300px;
}
.contact-form {
flex: 1;
min-width: 300px;
}
.info-item {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
}
.info-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
color: white;
font-size: 1.5rem;
}
.info-details h3 {
margin-bottom: 10px;
color: #333;
}
.info-details p {
color: #666;
margin-bottom: 5px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #333;
}
.form-control {
width: 100%;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
transition: border-color 0.3s;
}
.form-control:focus {
outline: none;
border-color: #6a11cb;
box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.2);
}
textarea.form-control {
min-height: 150px;
resize: vertical;
}
.btn {
display: inline-block;
padding: 15px 30px;
background-color: #6a11cb;
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
text-align: center;
}
.btn:hover {
background-color: #2575fc;
transform: translateY(-3px);
}
.btn-block {
width: 100%;
}
/* Map Section */
.map {
padding: 0 0 80px;
}
.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
height: 400px;
}
.map-container iframe {
width: 100%;
height: 100%;
border: none;
}
/* FAQ Section */
.faq {
padding: 80px 0;
background-color: #f0f4ff;
}
.accordion {
margin-top: 30px;
}
.accordion-item {
background: white;
border-radius: 5px;
margin-bottom: 15px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.accordion-header {
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
}
.accordion-content {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.accordion-content.active {
max-height: 300px;
padding: 0 20px 20px;
}
.accordion-icon {
transition: transform 0.3s ease;
}
.accordion-icon.active {
transform: rotate(180deg);
}
/* CTA Section */
.cta {
padding: 80px 0;
text-align: center;
background: white;
}
.cta h2 {
margin-bottom: 30px;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.btn-light {
background-color: white;
color: #6a11cb;
border: 2px solid #6a11cb;
}
.btn-light:hover {
background-color: #f0f4ff;
}
/* Footer */
footer {
background-color: #1a1a1a;
color: #ccc;
padding: 60px 0 30px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
gap: 40px;
justify-content: space-between;
margin-bottom: 40px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-section h3 {
color: white;
margin-bottom: 20px;
font-size: 1.3rem;
}
.footer-section p {
margin-bottom: 15px;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
}
/* Responsive Design */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-links {
position: absolute;
top: 100%;
left: 200px;
width: 50%;
background-color: #6a11cb;
flex-direction: column;
align-items: center;
padding: 20px 0;
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
transition: clip-path 0.4s ease;
}
.nav-links.active {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nav-links li {
margin: 15px 0;
}
.page-header h1 {
font-size: 2.2rem;
}
.contact-container {
flex-direction: column;
}
.info-item {
flex-direction: column;
text-align: center;
}
.info-icon {
margin-right: 0;
margin-bottom: 15px;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
}
@media (max-width: 480px) {
.page-header h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 1.8rem;
}
.btn {
padding: 12px 25px;
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<!-- Header & Navigation -->
<header>
<div class="container">
<nav>
<div class="logo">Efoy<span>Vocal</span></div>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Page Header -->
<section class="page-header">
<div class="container">
<h1>Contact Us</h1>
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li>Contact</li>
</ul>
</div>
</section>
<!-- Contact Section -->
<section class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-container">
<div class="contact-info">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info-details">
<h3>Visit Us</h3>
<p>Choramo Plazz</p>
<p>Hossana City, Street 123</p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-phone"></i>
</div>
<div class="info-details">
<h3>Call Us</h3>
<p>Main: +251 928832383</p>
<p>Fax: (555) 123-4568</p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="info-details">
<h3>Email Us</h3>
<p>assefahenok33@gmail.com</p>
<p></p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-clock"></i>
</div>
<div class="info-details">
<h3>Opening Hours</h3>
<p>Monday-Friday: 9am - 8pm</p>
<p>Saturday: 10am - 6pm</p>
<p>Sunday: Closed</p>
</div>
</div>
</div>
<div class="contact-form">
<form id="contactForm">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" class="form-control" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" class="form-control" placeholder="Your Email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" class="form-control" placeholder="Your Phone">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<select id="subject" class="form-control" required>
<option value="">Select a subject</option>
<option value="general">General Inquiry</option>
<option value="lessons">Vocal Lessons</option>
<option value="instrument">Instrument Training</option>
<option value="online">Online Classes</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" class="form-control" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="btn btn-block">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<section class="map">
<div class="container">
<h2 class="section-title">Our Location</h2>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.1840523766425!2d-73.98761458459386!3d40.748243979327325!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sus!4v1629999405295!5m2!1sen!2sus" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-header">
<span>How do I schedule a trial lesson?</span>
<i class="fas fa-chevron-down accordion-icon"></i>
</div>
<div class="accordion-content">
<p>You can schedule a trial lesson by filling out the contact form above, calling us at (555) 123-4567, or emailing us at info@elsyvocal.com. We'll get back to you within 24 hours to arrange a convenient time for your trial session.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header">
<span>What age groups do you teach?</span>
<i class="fas fa-chevron-down accordion-icon"></i>
</div>
<div class="accordion-content">
<p>We offer lessons for all age groups, from children as young as 6 years old to adults. Our instructors tailor their teaching methods to suit the age and experience level of each student.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header">
<span>Do I need any prior experience to start?</span>
<i class="fas fa-chevron-down accordion-icon"></i>
</div>
<div class="accordion-content">
<p>No prior experience is necessary! We welcome complete beginners and offer foundational courses designed to help you build your skills from the ground up.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header">
<span>What safety measures are in place for in-person lessons?</span>
<i class="fas fa-chevron-down accordion-icon"></i>
</div>
<div class="accordion-content">
<p>We follow all recommended health guidelines, including regular sanitization of equipment and teaching spaces, providing hand sanitizer stations, and maintaining appropriate distancing during lessons. Our studios are also equipped with proper ventilation systems.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<h2 class="section-title">Ready to Start Your Musical Journey?</h2>
<p>Book a free trial lesson today and discover your potential</p>
<div class="cta-buttons">
<a href="contact.html" class="btn">Book a Free Trial</a>
<a href="course.html" class="btn btn-light">View Programs</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Efoy Vocal</h3>
<p>Professional vocal and musical training for all ages and skill levels.</p>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p><i class="fas fa-map-marker-alt"></i> Alebrt Academy, Sinedos village <br> Jossy studio, Choramo Plazz.</p>
<p><i class="fas fa-phone"></i> +251 928832383</p>
<p><i class="fas fa-envelope"></i> info@efoyvocal.com</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<p><a href="about.html">About Us</a></p>
<p><a href="programs.html">Programs</a></p>
<p><a href="pricing.html">Pricing</a></p>
<p><a href="contact.html">Contact</a></p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Efoy Vocal. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('.menu-toggle').addEventListener('click', function() {
document.querySelector('.nav-links').classList.toggle('active');
});
// FAQ Accordion
const accordionHeaders = document.querySelectorAll('.accordion-header');
accordionHeaders.forEach(header => {
header.addEventListener('click', function() {
const content = this.nextElementSibling;
const icon = this.querySelector('.accordion-icon');
// Toggle active class
content.classList.toggle('active');
icon.classList.toggle('active');
});
});
// Form submission
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
</script>
</body>
</html>