-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmunnar.html
More file actions
97 lines (89 loc) · 3.92 KB
/
munnar.html
File metadata and controls
97 lines (89 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Munnar & Ooty Escape - Triptastic Edventures</title>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.itinerary-hero {
height: 60vh;
background: linear-gradient(rgba(7, 6, 6, 0.6), rgba(7, 6, 6, 0.8)), url('images/696224756_18123226597568167_4855909260866105205_n.webp') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.itinerary-content {
padding: 80px 20px;
max-width: 800px;
margin: 0 auto;
}
.day-card {
background: rgba(92, 110, 113, 0.1);
border-left: 4px solid var(--primary-green);
padding: 20px 30px;
margin-bottom: 20px;
border-radius: 0 10px 10px 0;
}
.day-card h3 {
color: var(--primary-green);
margin-bottom: 10px;
}
.day-card p {
color: #dcdcdc;
line-height: 1.6;
}
</style>
</head>
<body>
<nav>
<div class="logo">
<a href="index.html" style="display:flex; align-items:center; gap:15px; text-decoration:none;">
<img src="logo.jpg" alt="Triptastic Edventures">
</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Back to Home</a></li>
<li><a href="index.html#contact" class="btn-outline" style="padding: 8px 20px;">Book Now</a></li>
</ul>
</nav>
<header class="itinerary-hero">
<div class="hero-content">
<h1>Munnar & Ooty Escape</h1>
<p>4 Days, 3 Nights</p>
</div>
</header>
<section class="itinerary-content">
<h2 class="section-title">Full Itinerary</h2>
<div class="day-card">
<h3>Day 1: Departure & Arrival</h3>
<p>Depart from Kannur/Kasaragod in our luxurious, fully air-conditioned Komban Bus. Enjoy the scenic drive through the Western Ghats. Arrive in Munnar, check in to your premium resort, and spend the evening enjoying a guided walk through the lush green tea plantations.</p>
</div>
<div class="day-card">
<h3>Day 2: Exploring Munnar</h3>
<p>After breakfast, visit the famous Eravikulam National Park, home to the endangered Nilgiri Tahr. In the afternoon, head to Mattupetty Dam for a speed boat ride. We depart for Ooty in the evening.</p>
</div>
<div class="day-card">
<h3>Day 3: The Queen of Hills - Ooty</h3>
<p>Wake up to the chill breeze of Ooty. Visit the mesmerizing Botanical Gardens and Doddabetta Peak. In the afternoon, experience the heritage Nilgiri Mountain Railway (Toy Train) ride.</p>
</div>
<div class="day-card">
<h3>Day 4: Boating & Departure</h3>
<p>Morning boating experience at Ooty Lake. After a local shopping tour for homemade chocolates and eucalyptus oil, we begin our comfortable return journey via Komban Bus back to Kannur/Kasaragod.</p>
</div>
<div style="text-align: center; margin-top: 50px;">
<a href="index.html#contact" class="btn">Book This Package</a>
</div>
</section>
<footer>
<div class="container">
<img src="logo.jpg" alt="Triptastic" class="footer-logo">
<p>Triptastic Edventures - Your Trusted Travel Partner in Kerala.</p>
<p>A Golden Opportunity for Kannur & Kasaragod!</p>
</div>
</footer>
</body>
</html>