-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
356 lines (331 loc) · 9.85 KB
/
aboutus.html
File metadata and controls
356 lines (331 loc) · 9.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us - Kalash Marriage Lawn</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Italiana&display=swap" rel="stylesheet">
<style>
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Playfair Display', serif;
background: #f4e1d2;
color: #383838;
line-height: 1.6;
}
/* Header */
header {
background: #fff;
display: flex;
align-items: center;
justify-content: center;
position: relative;
height: 120px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.logo {
max-height: 100px;
transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.menu-icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 48px;
cursor: pointer;
background: none;
border: none;
color: #974200;
}
/* Side Menu */
.side-menu {
height: 100%;
width: 100%;
position: fixed;
top: 0; left: 0;
background: #fff;
transform: translateX(-100%);
transition: transform 0.4s ease;
padding-top: 80px;
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.side-menu.open { transform: translateX(0); }
.side-menu a {
margin: 15px 0;
font-size: 28px;
text-decoration: none;
color: #000;
font-weight: 600;
}
.side-menu a:hover { color: #BF7D3A; }
.closebtn {
position: absolute;
top: 20px;
right: 25px;
font-size: 40px;
background: none;
border: none;
cursor: pointer;
}
/* Hero */
.about-hero {
text-align: center;
padding: 60px 20px;
background: #683518;
color: #fff;
}
.about-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.about-hero p { font-size: 1.2rem; }
/* Timeline */
.about-timeline {
padding: 40px 20px;
text-align: center;
}
.timeline-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.timeline-item {
background: #fff;
border: 2px solid #d4af37;
border-radius: 8px;
padding: 15px;
width: 140px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.timeline-item h3 { color: #B22222; }
/* Story Blocks */
.about-story {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 40px 20px;
justify-content: center;
}
.story-block {
flex: 1 1 300px;
max-width: 400px;
position: relative;
}
.story-image img {
width: 100%;
border-radius: 8px;
}
.story-overlay {
position: absolute;
bottom: 0;
left: 0; right: 0;
background: rgba(0,0,0,0.5);
color: #fff;
padding: 10px;
text-align: center;
border-radius: 0 0 8px 8px;
}
/* Values */
.about-values {
text-align: center;
padding: 40px 20px;
}
.values-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.value-card {
background: #fff;
border: 2px solid #d4af37;
border-radius: 8px;
padding: 15px 25px;
font-size: 1.2rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Testimonials */
.about-testimonials {
padding: 40px 20px;
text-align: center;
}
.testimonial-cards {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.testimonial-card {
background: #fff;
border-radius: 8px;
padding: 20px;
width: 280px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.review-header { font-weight: bold; margin-bottom: 10px; }
.reviewer { margin-left: 10px; font-style: italic; }
/* CTA */
.about-cta {
text-align: center;
padding: 40px 20px;
}
.btn {
display: inline-block;
margin: 10px;
padding: 12px 20px;
background: #974200;
color: #fff;
text-decoration: none;
border-radius: 6px;
font-size: 1.1rem;
transition: background 0.3s ease;
}
.btn:hover { background: #BF7D3A; }
/* Footer */
.luxury-footer {
background: #111;
color: #fff;
text-align: center;
padding: 20px;
font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 768px) {
header { height: 100px; }
.logo { max-height: 80px; }
.menu-icon { font-size: 36px; }
.about-hero h1 { font-size: 2rem; }
.about-hero p { font-size: 1rem; }
.timeline-item { width: 120px; }
}
@media (max-width: 480px) {
header { height: 80px; }
.logo { max-height: 60px; }
.menu-icon { font-size: 28px; }
.about-hero { padding: 40px 15px; }
.about-hero h1 { font-size: 1.6rem; }
.about-hero p { font-size: 0.9rem; }
.timeline-container { flex-direction: column; align-items: center; }
.timeline-item { width: 90%; }
.about-story { flex-direction: column; align-items: center; }
.values-container { flex-direction: column; align-items: center; }
.testimonial-cards { flex-direction: column; align-items: center; }
.testimonial-card { width: 90%; }
.btn { width: 90%; font-size: 1rem; }
}
</style>
</head>
<body>
<!-- Header -->
<header>
<button class="menu-icon" id="menuToggle">☰</button>
<a href="index.html" class="logo-link">
<img src="images/logo3.png" alt="Kalash Marriage Lawn Logo" class="logo">
</a>
</header>
<!-- Side Menu -->
<nav id="sideMenu" class="side-menu">
<button class="closebtn" id="menuClose">×</button>
<a href="index.html">Home</a>
<a href="photos.html">Photos</a>
<a href="aboutus.html">About Us</a>
<a href="owners.html">Owners</a>
<a href="contactus.html">Contact Us</a>
</nav>
<!-- Hero -->
<section class="about-hero">
<h1>Kalash Marriage Lawn</h1>
<p>Ethnic Elegance • Luxurious Experience • Since 2005</p>
</section>
<!-- Timeline -->
<section class="about-timeline">
<h2>Our Journey</h2>
<div class="timeline-container">
<div class="timeline-item"><h3>2005</h3><p>Founded</p></div>
<div class="timeline-item"><h3>2010</h3><p>Expanded</p></div>
<div class="timeline-item"><h3>2015</h3><p>1000+ Weddings</p></div>
<div class="timeline-item"><h3>2020</h3><p>Modern Redesign</p></div>
<div class="timeline-item"><h3>2025</h3><p>Celebrating Elegance</p></div>
</div>
</section>
<!-- Story Blocks -->
<section class="about-story">
<div class="story-block">
<div class="story-image">
<img src="images/img-4.webp" alt="Wedding Setup">
<div class="story-overlay">
<p>Where tradition meets luxury.</p>
</div>
</div>
</div>
<div class="story-block">
<div class="story-image">
<img src="images/img-2.webp" alt="Celebration">
<div class="story-overlay">
<p>Crafting unforgettable experiences.</p>
</div>
</div>
</div>
</section>
<!-- Values -->
<section class="about-values">
<h2>Our Values</h2>
<div class="values-container">
<div class="value-card">🌸 Tradition</div>
<div class="value-card">✨ Luxury</div>
<div class="value-card">🎶 Celebration</div>
<div class="value-card">🤝 Hospitality</div>
</div>
</section>
<!-- Testimonials -->
<section class="about-testimonials">
<h2>What Our Guests Say</h2>
<div class="testimonial-cards">
<div class="testimonial-card">
<div class="review-header">
⭐⭐⭐⭐⭐ <span class="reviewer">Priya Sharma</span>
</div>
<p class="review-text">“A truly luxurious experience — every detail was perfect.”</p>
<span class="review-source">Google Reviews</span>
</div>
<div class="testimonial-card">
<div class="review-header">
⭐⭐⭐⭐☆ <span class="reviewer">Rahul Verma</span>
</div>
<p class="review-text">“Kalash Marriage Lawn made our wedding unforgettable.”</p>
<span class="review-source">Google Reviews</span>
</div>
<div class="testimonial-card">
<div class="review-header">
⭐⭐⭐⭐⭐ <span class="reviewer">Ananya Gupta</span>
</div>
<p class="review-text">“Elegant décor and warm hospitality — highly recommended.”</p>
<span class="review-source">Google Reviews</span>
</div>
</div>
</section>
<!-- Call-to-Action -->
<section class="about-cta">
<a href="index.html#enquiry-section" class="btn whatsapp">Contact Us</a>
<a href="https://wa.me/916388028416" target="_blank" class="btn whatsapp">Book Now</a>
</section>
<!-- Footer -->
<footer class="luxury-footer">
<p>© 2025 Kalash Marriage Lawn | Designed by Ishu</p>
</footer>
<!-- JS for menu toggle -->
<script>
const menuToggle = document.getElementById('menuToggle');
const menuClose = document.getElementById('menuClose');
const sideMenu = document.getElementById('sideMenu');
menuToggle.addEventListener('click', () => sideMenu.classList.add('open'));
menuClose.addEventListener('click', () => sideMenu.classList.remove('open'));
</script>
</body>
</html>