-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
503 lines (411 loc) · 18.9 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ivory Luxe | Contact Us</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<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=Herr+Von+Muellerhoff&display=swap" rel="stylesheet">
<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=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap" rel="stylesheet">
<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=Cormorant+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<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=Texturina:ital,opsz,wght@0,12..72,100..900;1,12..72,100..900&display=swap" rel="stylesheet">
<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=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: rgba(236, 236, 234, 0.943);
color: #ecf0f1;
overflow-x: hidden;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(20, 24, 24, 0.527), rgb(0, 0, 0));
background-size: 400% 400%;
animation: navbargradientAnimation 10s ease infinite;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.navbar a {
text-decoration: none;
}
.connect-section {
background-image: url('pexels-apasaric-2078071.jpg');
height: 120vh;
background-attachment: fixed;
background-size: cover;
background-position: center;
position: relative;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 768px) {
.connect-section {
background-attachment: scroll;
}
}
.connect-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}
.connect-text {
max-width: 50%;
text-align: left;
color: #333;
}
.connect-image {
max-width: 40%;
height: auto;
border-radius: 0px;
}
.connect-image-box {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 0px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
width: 60%;
gap: 20px;
height: auto;
min-height: 300px;
}
.social-icons a img {
width: 40px;
margin: 0 10px;
transition: transform 0.3s ease;
}
.social-icons a img:hover {
transform: scale(1.1);
}
.contact-form-section {
position: relative;
overflow: hidden;
padding: 50px;
color: white;
}
.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.background-video {
width: 100%;
height: 100%;
object-fit: cover;
}
.form-content {
position: relative;
z-index: 2;
background: rgba(0, 0, 0, 0.396);
padding: 20px;
border-radius: 0px;
}
.contact-form-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.contact-form-section form {
max-width: 600px;
margin: 0 auto;
}
.contact-form-section input,
.contact-form-section textarea {
width: 100%;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact-form-section button {
background-color: #000;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
.contact-form-section button:hover {
color: #fffbfbb9;
border: 1px solid #000;
transition: all 0.3s ease;
background-color: #f6f9ba;
transform: scale(1.1);
}
.appointment-section {
display: flex;
align-items: center;
padding: 60px 20px 60px 0px;
background-color: #000000;
}
.appointment-container {
display: flex;
justify-content: space-between;
align-items: center;
height: 650px;
}
.appointment-image img {
max-width: 150%;
width: 150%;
height: 650px;
border-radius: 0px;
}
.roll-out-image {
position: relative;
margin-left: 4%;
width: 100%;
height: 90%;
border-radius: 0px;
transition: width 1.5s ease-out, opacity 1.5s ease-out;
opacity: 1;
object-fit: cover;
z-index: 1;
}
.roll-out-image.visible {
width: 0%;
opacity: 0;
margin-left: 10px;
}
.fade-in-image {
opacity: 0;
transition: opacity 2s ease-in-out;
object-fit: cover;
height: 90%;
width: 100%;
z-index: 2;
}
.fade-in-image.visible {
opacity: 1;
}
.appointment-text h2 {
font-size: 2.8rem;
margin-bottom: 20px;
margin-left: 120px;
}
.appointment-text p {
font-size: 1.9rem;
margin-bottom: 20px;
margin-left: 120px;
}
.cta-link {
display: inline-block;
padding: 10px 20px;
background: #000;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
#back-to-top {
position: fixed;
bottom: 20px;
right: 0px;
background-color: #dbe2eaac;
color: rgb(27, 25, 25);
padding: 5px 5px;
border-radius: 0%;
text-align: center;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.417);
font-size: 10px;
display: none;
z-index: 1000;
}
#back-to-top:hover {
background-color: #d6bd42;
}
#map-container {
margin: 20px 0;
border: 2px solid #ddd;
border-radius: 8px;
overflow: hidden;
}
</style>
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">
<a href="index.html"><h1 style="font-family: 'Herr Von Muellerhoff', sans-serif;">Ivory Luxe</h1></a>
</div>
<ul class="nav-links" style="font-family:Cormorant SC ;">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="connect-section" style="background-image: url('images/i29.png');">
<div class="connect-container">
<div class="connect-image-box">
<img src="images/i29.png" alt="Connect" class="connect-image">
<div class="connect-text">
<h2 style="font-family: 'Herr Von Muellerhoff', sans-serif;color: aliceblue;">Let's Connect</h2>
<p style="font-family:Cormorant SC;color: aliceblue;padding-bottom: 20px;">We'd love to hear from you! Connect with us and share your thoughts, feedback, or questions on our social channels. We're always here to listen and engage!</p>
<div class="social-icons">
<a href="https://in.pinterest.com/ivoryluxe_/" target="_blank"><img src="images/pinterest.svg" alt="Pinterest"></a>
<a href="https://x.com/ivoryluxe_" target="_blank"><img src="images/twitter.svg" alt="Twitter"></a>
<a href="https://www.instagram.com/ivory_luxe_/" target="_blank"><img src="images/instagram.svg" alt="Instagram"></a>
</div>
</div>
</div>
</div>
</section>
<section class="contact-form-section">
<div class="video-container">
<video autoplay muted loop class="background-video">
<source src="images/bgsps.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="form-content">
<h2 style="font-family: 'Herr Von Muellerhoff', sans-serif; color: rgb(211, 201, 201); text-align: center;">Contact Us</h2>
<form action="https://formsubmit.co/birajitsaikia@gmail.com" method="POST" style="font-family: Cormorant SC; color: rgb(211, 201, 201);">
<label for="source" style="font-family: Cormorant SC;">Where did you hear about us? *</label>
<input type="text" id="source" name="source" placeholder="Enter source" style="font-family: Cormorant SC;" required>
<label for="email" style="font-family: Cormorant SC;">Email *</label>
<input type="email" id="email" name="email" placeholder="Enter email" style="font-family: Cormorant SC;" required>
<label for="first-name" style="font-family: Cormorant SC;">First Name *</label>
<input type="text" id="first-name" name="first-name" placeholder="Enter your first name" style="font-family: Cormorant SC;" required>
<label for="last-name" style="font-family: Cormorant SC;">Last Name *</label>
<input type="text" id="last-name" name="last-name" placeholder="Enter your last name" style="font-family: Cormorant SC;" required>
<label for="phone" style="font-family: Cormorant SC;">Phone *</label>
<input type="tel" id="phone" name="phone" placeholder="Enter phone number" style="font-family: Cormorant SC;" required>
<label for="reserved-venue" style="font-family: Cormorant SC;">Have you reserved a venue yet? *</label>
<input type="text" id="reserved-venue" name="reserved-venue" placeholder="Yes/No" style="font-family: Cormorant SC;" required>
<label for="event-date" style="font-family: Cormorant SC;">Event Date *</label>
<input type="date" id="event-date" name="event-date" style="font-family: Cormorant SC;" required>
<label for="venue-name" style="font-family: Cormorant SC;">Venue Name *</label>
<input type="text" id="venue-name" name="venue-name" placeholder="Venue name" style="font-family: Cormorant SC;" required>
<label for="venue-location" style="font-family: Cormorant SC;">Venue Location *</label>
<input type="text" id="venue-location" name="venue-location" placeholder="Venue location" style="font-family: Cormorant SC;" required>
<label for="city" style="font-family: Cormorant SC;">City *</label>
<input type="text" id="city" name="city" placeholder="Enter city" style="font-family: Cormorant SC;" required>
<label for="state" style="font-family: Cormorant SC;">State/Province *</label>
<input type="text" id="state" name="state" placeholder="Enter state/province" style="font-family: Cormorant SC;" required>
<label for="celebration" style="font-family: Cormorant SC;">What are you celebrating? *</label>
<select id="celebration" name="celebration" style="font-family: Cormorant SC;" required>
<option value="wedding" style="font-family: Cormorant SC;">Wedding</option>
<option value="party" style="font-family: Cormorant SC;">Party/Social Event</option>
<option value="corporate" style="font-family: Cormorant SC;">Corporate Event</option>
<option value="public" style="font-family: Cormorant SC;">Public Event</option>
</select><br><br>
<label for="guests" style="font-family: Cormorant SC;">How many guests are you wanting to party with? *</label>
<input type="number" id="guests" name="guests" placeholder="Number of guests" style="font-family: Cormorant SC;" required>
<label for="additional-service" style="font-family: Cormorant SC;">What additional service are you interested in?</label>
<select id="additional-service" name="additional-service" style="font-family: Cormorant SC;">
<option value="rehearsal-dinner">Rehearsal Dinner Planning</option>
<option value="end-of-night">End of Night Pack + Breakdown of My Event</option>
<option value="post-event-farewell">Post Event Farewell</option>
<option value="pre-event-welcome">Pre-event Welcome Event</option>
</select><br><br>
<label for="message" style="font-family: Cormorant SC;">Tell us how we can help you most. (Message) *</label>
<textarea id="message" name="message" placeholder="Your message" style="font-family: Cormorant SC;" required></textarea>
<button type="submit" style="font-family: Cormorant SC; display: block; margin: 0 auto; text-align: center; background-color: rgba(240, 255, 255, 0.05);">Submit</button>
</form>
</div>
</section>
<section class="appointment-section">
<div class="appointment-container">
<div class="appointment-image">
<img src="images/pexels-pavel-danilyuk-6405665.jpg" alt="Appointment" class="roll-out-image">
</div>
<div class="appointment-image">
<img src="images/pexels-rdne-7648319.jpg" alt="New Appointment" class="fade-in-image">
</div>
<div class="appointment-text" style="color: #e0d2d2; padding-left: 100px;">
<h2 style="font-family:Tangerine;">Never Done an Appointment Before?</h2>
<p style="font-family:Cormorant SC;">Click below to learn more about our services and how we can help make your event unforgettable.</p>
<a href="services.html" class="cta-link" style="font-family:Cormorant SC ;background-color: #fff;color: #333;margin-left: 280px;">Explore Services</a>
</div>
</div>
</section>
<section class="map" style="display: flex; align-items: center; gap: 20px; margin: 50px;">
<div id="map-container" style="flex: 1;">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d2047.4509349809894!2d73.91220539922936!3d18.611875197089557!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sin!4v1733628697997!5m2!1sen!2sin"
width="920"
height="600"
style="border:0; border-radius: 10px;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
<div class="map-description" style="flex: 0.5; text-align: left;">
<h2 style="margin: 0 0 20px; font-size: 44px; color: #333;font-family: Tangerine;">Want to know where we're located?</h2>
<p style="font-size: 18px; line-height: 1.6; color: #555;font-family: Cormorant SC;">
Explore our company's location using the interactive map on the left!
We look forward to welcoming you to our office. Don't hesitate to reach out if you need further directions.
</p>
</div>
</section>
<a href="#" id="back-to-top" title="Back to top">Back to top</a>
<footer>
<p style="font-family: Vollkorn;">© 2024 Ivory Luxe | All Rights Reserved</p>
</footer>
<script>
document.addEventListener("DOMContentLoaded", () => {
const firstImage = document.querySelector(".roll-out-image");
const secondImage = document.querySelector(".fade-in-image");
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
firstImage.classList.add("visible");
secondImage.classList.add("visible");
} else {
firstImage.classList.remove("visible");
secondImage.classList.remove("visible");
}
});
},
{ threshold: 0.1 }
);
observer.observe(firstImage);
});
window.addEventListener('scroll', function () {
const backToTop = document.getElementById('back-to-top');
if (window.scrollY > 1900){
backToTop.style.display = 'block';
} else {
backToTop.style.display = 'none';
}
});
</script>
</body>
</html>