-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout us.html
723 lines (635 loc) · 23.2 KB
/
about us.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mafoy africa Safaris | Luxury Safari Experience</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f8f8;
color: #333;
line-height: 1.6;
}
/* Header Section */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
color: #ffffff; /* White text */
background-color: #007bff; /* Blue background for the header */
width: 100%; /* Ensure the blue color covers the entire width */
position: relative; /* Positioning for menu button inside header */
}
/* Logo */
.logo {
display: flex;
align-items: center;
color: #333; /* Black color for logo text */
background-color: #ffffff; /* White background for logo in mobile view */
padding: 10px 20px;
border-radius: 5px;
}
.logo img {
width: 50px;
margin-right: 10px;
}
.logo span {
font-size: 1.4rem;
font-weight: bold;
}
/* Mobile Menu Button */
.menu-btn {
display: flex;
cursor: pointer;
flex-direction: column;
gap: 5px;
position: absolute; /* Position absolutely inside the header */
right: 20px; /* Align the button to the right inside the header */
background-color: transparent; /* No background for the button itself */
padding: 10px; /* Add padding to make button area clickable */
}
.menu-btn div {
width: 30px;
height: 4px;
background-color: #ffffff; /* White color for mobile menu lines */
}
/* Menu Text */
.menu-text {
color: white;
font-size: 1.4rem;
font-weight: bold;
margin-left: 10px; /* Add some space between the button and the text */
}
/* Mobile Navigation */
.mobile-nav {
display: none;
flex-direction: column;
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
display: flex;
}
.mobile-nav ul {
list-style: none;
width: 100%;
}
.mobile-nav ul li {
width: 100%;
}
.mobile-nav ul li a {
display: block;
text-align: center;
text-decoration: none;
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
color: #333;
padding: 15px;
border-bottom: 1px solid #ddd;
transition: background-color 0.3s, color 0.3s;
}
.mobile-nav ul li a:hover {
background-color: #f4f4f4;
color: #007bff; /* Blue color on hover */
}
/* Desktop View */
@media (min-width: 769px) {
header {
padding: 10px 5%;
display: flex;
justify-content: space-between; /* Align logo and menu at opposite ends */
align-items: center;
}
.menu-btn {
display: none;
}
/* Hide Menu Text in desktop view */
.menu-text {
display: none;
}
/* Align the navigation to the right */
header nav {
margin-left: auto; /* Push navigation to the right */
}
header nav ul {
display: flex;
list-style: none;
gap: 20px;
}
header nav ul li {
position: relative;
}
header nav ul li a {
text-decoration: none;
color: #ffffff; /* White text for navigation items */
font-weight: 600;
transition: color 0.3s;
}
header nav ul li a:hover {
color: #e6a400; /* Gold color on hover */
}
/* Dropdown Styling */
.dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: white;
min-width: 200px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
/* Show the dropdown when hovering over the parent */
header nav ul li:hover .dropdown {
display: block;
}
.dropdown li {
width: 100%;
}
.dropdown a {
display: block;
padding: 10px 15px;
color: #333;
}
.dropdown a:hover {
background-color: #f4f4f4;
}
/* Update logo background to blue for desktop view */
.logo {
background-color: #007bff; /* Blue background for logo on desktop */
color: white; /* White text color for logo text */
}
.logo img {
width: 50px; /* Adjust logo size */
margin-right: 10px;
}
.logo span {
font-size: 1.6rem; /* Increase font size for better visibility */
font-weight: bold;
}
}
/* Mobile Specific Adjustments */
@media (max-width: 768px) {
/* Make the entire header section blue on mobile */
header {
display: block;
padding: 0; /* Remove default padding */
background-color: #007bff; /* Blue background for the entire header */
width: 100%; /* Make the blue background cover the entire width */
}
/* Logo on top of the header in mobile view with full-width blue background */
.logo {
display: flex;
justify-content: center;
align-items: center;
width: 100%; /* Full-width */
background-color: #ffffff; /* White background for logo part */
padding: 30px 0; /* Increased padding for larger header */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}
.logo img {
width: 60px; /* Adjust logo size */
margin-right: 10px;
}
.logo span {
font-size: 1.6rem; /* Increase font size for better visibility */
font-weight: bold;
}
/* Header section with mobile menu icon */
header nav {
display: none; /* Hidden by default */
}
/* Mobile Navigation visible when active */
.mobile-nav.active {
display: flex;
}
/* "Menu" Text */
.menu-text {
color: white;
font-size: 1.4rem;
font-weight: bold;
margin-left: 20px;
}
/* Dropdown menu visibility when "Tours" is clicked */
.mobile-nav ul li .dropdown {
display: none;
}
.mobile-nav ul li.active .dropdown {
display: block;
}
}
</style>
</head>
<body>
<!-- Header with Navigation -->
<header>
<!-- Logo (Visible in both mobile and desktop but different positioning) -->
<div class="logo">
<img src="mafoy2.jpg.png" alt="Mafoy africa Safaris">
<span>Mafoy africa Safaris</span>
</div>
<!-- Mobile Menu Button and "Menu" Text -->
<div class="menu-btn" onclick="toggleMobileMenu()">
<div></div>
<div></div>
<div></div>
</div>
<span class="menu-text">Menu</span> <!-- Menu Text added here -->
<!-- Desktop Navigation -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li class="tour-item">
<a href="tours.html" onclick="toggleDropdown(event)">Tours</a>
<ul class="dropdown">
<li><a href="day-trips.html">Day Trip Packages</a></li>
<li><a href="budget-tours.html">Budget Tour Packages</a></li>
<li><a href="midrange-tours.html">Midrange Tour Packages</a></li>
<li><a href="luxury-tours.html">Luxury Tour Packages</a></li>
<li><a href="hiking.html">Hiking Packages</a></li>
<li><a href="zanzibar-holidays.html">Zanzibar Holidays Packages</a></li>
</ul>
</li>
<li><a href="about us.html">about us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Mobile Navigation -->
<nav class="mobile-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li class="tour-item">
<a href="tours.html" onclick="toggleDropdown(event)">Tours</a>
<ul class="dropdown">
<li><a href="day-trips.html">Day Trip Packages</a></li>
<li><a href="budget-tours.html">Budget Tour Packages</a></li>
<li><a href="midrange-tours.html">Midrange Tour Packages</a></li>
<li><a href="luxury-tours.html">Luxury Tour Packages</a></li>
<li><a href="hiking.html">Hiking Packages</a></li>
<li><a href="zanzibar-holidays.html">Zanzibar Holidays Packages</a></li>
</ul>
</li>
<li><a href="about us.html">About us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<script>
// Toggle Mobile Menu
function toggleMobileMenu() {
document.querySelector('.mobile-nav').classList.toggle('active');
}
// Toggle Dropdown for "Tours"
function toggleDropdown(event) {
event.preventDefault();
const parentLi = event.target.parentElement;
parentLi.classList.toggle('active');
}
// Close dropdown when clicking outside
document.addEventListener('click', function(event) {
const dropdowns = document.querySelectorAll('.dropdown');
dropdowns.forEach(function(dropdown) {
if (dropdown.classList.contains('show') &&
!dropdown.previousElementSibling.contains(event.target)) {
dropdown.classList.remove('show');
}
});
});
</script><!DOCTYPE html>
<!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="Discover who we are, our mission, and the team behind Mafoy Africa Safaris.">
<title>About Us - Mafoy Africa Safaris</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
/* General reset and styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f3f3f3;
color: #333;
line-height: 1.6;
}
.about-container {
max-width: 1200px;
margin: 50px auto;
padding: 40px;
background-color: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
animation: fadeIn 1.5s ease-in-out;
text-align: center;
position: relative;
overflow: hidden;
border-top: 5px solid #2980b9; /* Decorative border */
}
.about-container h1 {
font-size: 3.5rem;
margin-bottom: 20px;
color: #071c2a;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
animation: slideInFromTop 1s ease-out;
}
.about-container p {
font-size: 1.2rem;
margin-bottom: 20px;
line-height: 1.8;
color: #555;
animation: fadeIn 2s ease-in-out;
}
.about-container p.highlight {
font-weight: bold;
color: #2980b9;
text-transform: uppercase;
}
/* Animating text slide-in from the top */
@keyframes slideInFromTop {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* Excellence Section Styling */
.excellence-section {
background: linear-gradient(to right, #2980b9, #8e44ad);
padding: 50px 20px;
margin: 40px 0;
border-radius: 15px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
color: #fff;
text-align: center;
position: relative;
animation: fadeInUp 1.2s ease-out;
}
.excellence-section::before {
content: '';
background: url('excellence-background.jpg') no-repeat center center/cover;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.2;
z-index: -1;
border-radius: 15px;
}
.excellence-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #fff;
text-transform: uppercase;
letter-spacing: 1.5px;
text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}
.excellence-point {
margin-bottom: 30px;
display: inline-block;
width: 200px;
text-align: center;
}
.excellence-point i {
font-size: 50px;
color: #fff;
background-color: #2980b9;
padding: 20px;
border-radius: 50%;
margin-bottom: 15px;
transition: transform 0.3s ease;
}
.excellence-point i:hover {
transform: scale(1.1);
}
.excellence-point h3 {
font-size: 1.4rem;
margin-top: 10px;
color: #fff;
text-transform: uppercase;
}
.excellence-point p {
font-size: 1.1rem;
color: #fff;
line-height: 1.6;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* CEO Section Styling */
.ceo-section {
background-color: #f9f9f9;
padding: 40px 20px;
margin: 50px 0;
border-radius: 15px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
text-align: center;
animation: fadeInUp 1.5s ease-out;
}
.ceo-section img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
border: 5px solid #2980b9;
margin-bottom: 20px;
transition: transform 0.3s ease;
}
.ceo-section img:hover {
transform: scale(1.05);
}
.ceo-section h3 {
font-size: 2rem;
color: #071c2a;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
.ceo-section p {
font-size: 1.2rem;
color: #555;
line-height: 1.6;
}
/* Offering Card Hover Effect */
.offering-card:hover {
transform: translateY(-15px);
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
background-color: #f1f1f1;
}
/* Grid Layout for Offerings */
.offerings {
margin-top: 40px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
justify-items: center;
animation: fadeInUp 2s ease-out;
}
.offering-card {
background-color: #ffffff;
border-radius: 15px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
text-align: center;
padding: 20px;
position: relative;
border-bottom: 5px solid #2980b9; /* Bottom border for decoration */
}
.offering-card img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 12px;
transition: transform 0.3s ease-in-out;
}
.offering-card:hover img {
transform: scale(1.1);
}
.offering-card .content {
padding: 15px;
}
.offering-card .content h3 {
font-size: 1.6rem;
margin-bottom: 10px;
color: #071c2a;
text-transform: uppercase;
letter-spacing: 1px;
}
.offering-card .content p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
.about-container {
padding: 20px;
}
.offerings {
grid-template-columns: 1fr;
}
.excellence-point {
width: 100%;
}
}
</style>
</head>
<body>
<div class="about-container">
<h1>About Us</h1>
<p>
Welcome to <span class="highlight">Mafoy Africa Safaris</span>, where we bring the best of Tanzania to the world! Since our founding in 2024, we have been dedicated to providing our clients with personalized and unforgettable safari experiences.
</p>
<p>
From wildlife adventures in Serengeti to cultural immersion in Maasai villages, we are committed to offering you the most diverse and exciting tours in Tanzania.
</p>
<!-- What We Offer Section -->
<div class="section-title" style="font-size: 2.5rem; margin: 40px 0; color: #2980b9; font-weight: bold; text-transform: uppercase;">
What We Offer
</div>
<div class="offerings">
<!-- Wildlife Safari -->
<div class="offering-card">
<img src="jozani 2.jpg" alt="Wildlife Safari">
<div class="content">
<h3>Wildlife Safaris</h3>
<p>Explore Tanzania's world-famous parks, including Serengeti and Ngorongoro Crater, with expert guides.</p>
</div>
</div>
<!-- Mountain Climbing -->
<div class="offering-card">
<img src="jozani 2.jpg" alt="Mountain Climbing">
<div class="content">
<h3>Mountain Climbing</h3>
<p>Reach the summit of Mount Kilimanjaro and other incredible peaks with our experienced trekking guides.</p>
</div>
</div>
<!-- Cultural Tours -->
<div class="offering-card">
<img src="jozani 2.jpg" alt="Cultural Tours">
<div class="content">
<h3>Cultural Tours</h3>
<p>Experience the traditions and customs of Tanzania's indigenous tribes with authentic cultural experiences.</p>
</div>
</div>
<!-- Beach Holidays -->
<div class="offering-card">
<img src="jozani 2.jpg" alt="Beach Holidays">
<div class="content">
<h3>Beach Holidays</h3>
<p>Relax on the pristine beaches of Zanzibar, with crystal-clear waters and vibrant marine life.</p>
</div>
</div>
</div>
<section>
<!-- Our Excellence Section -->
<div class="excellence-section">
<h2>Our Excellence</h2>
<div class="excellence-point">
<i class="material-icons">local_offer</i>
<h3>Affordable Packages</h3>
<p>We offer the best rates while maintaining the highest standards in quality service.</p>
</div>
<div class="excellence-point">
<i class="material-icons">thumb_up</i>
<h3>Expert Guides</h3>
<p>Our knowledgeable guides bring you closer to Tanzania’s wild side.</p>
</div>
<div class="excellence-point">
<i class="material-icons">business_center</i>
<h3>Tailored Experiences</h3>
<p>We offer custom safaris that are personalized to your unique preferences and interests.</p>
</div>
</div>
<!-- CEO Section -->
<div class="ceo-section">
<img src="jozani 2.jpg" alt="CEO of Mafoy Africa Safaris">
<h3>John Doe</h3>
<p>Founder and CEO, Mafoy Africa Safaris</p>
</div>
<p>
Our team is passionate about making your Tanzanian safari dream a reality. Join us for an experience that will last a lifetime!
</p>
</div></section>
</body>
</html>