-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
615 lines (540 loc) · 20.3 KB
/
Copy pathindex.html
File metadata and controls
615 lines (540 loc) · 20.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Velvet & Dunes - Dubai Luxury in Mumbai</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500&display=swap');
:root {
--gold: #C9A961;
--deep-red: #8B0000;
--ivory: #FFFFF0;
--charcoal: #1a1a1a;
--warm-gold: #D4AF37;
}
body {
font-family: 'Montserrat', sans-serif;
background: var(--ivory);
color: var(--charcoal);
overflow-x: hidden;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 2rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
background: rgba(255, 255, 240, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--gold);
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
font-weight: 600;
color: var(--deep-red);
letter-spacing: 3px;
}
.nav-links {
display: flex;
gap: 3rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: var(--charcoal);
font-size: 0.9rem;
letter-spacing: 2px;
text-transform: uppercase;
transition: color 0.3s;
font-weight: 300;
}
.nav-links a:hover {
color: var(--gold);
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: url("istockphoto-172701529-612x612.jpg") center/cover no-repeat;
background-color: var(--deep-red); /* fallback if image fails */
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="paisley" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M60,10 Q80,30 80,60 Q80,90 60,110 Q40,90 40,60 Q40,30 60,10" fill="none" stroke="rgba(201,169,97,0.15)" stroke-width="1.5"/></pattern></defs><rect width="1200" height="800" fill="url(%23paisley)"/></svg>') center/cover;
opacity: 0.3;
}
.hero-content {
text-align: center;
z-index: 1;
color: var(--ivory);
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: 5rem;
font-weight: 300;
letter-spacing: 8px;
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}
.hero-title .amp {
color: var(--gold);
display: inline-block;
}
.hero-subtitle {
font-size: 1.2rem;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 2rem;
font-weight: 300;
animation: fadeInUp 1s ease 0.3s backwards;
}
.hero-tagline {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-style: italic;
margin-bottom: 3rem;
animation: fadeInUp 1s ease 0.6s backwards;
}
.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background: transparent;
border: 2px solid var(--gold);
color: var(--gold);
text-decoration: none;
letter-spacing: 3px;
text-transform: uppercase;
font-size: 0.9rem;
transition: all 0.4s;
animation: fadeInUp 1s ease 0.9s backwards;
}
.cta-button:hover {
background: var(--gold);
color: var(--deep-red);
}
/* Mumbai Launch Section */
.mumbai-launch {
padding: 8rem 5%;
background: var(--ivory);
text-align: center;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: 3.5rem;
color: var(--deep-red);
margin-bottom: 2rem;
font-weight: 400;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--gold);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 3rem;
font-weight: 300;
}
.launch-details {
max-width: 800px;
margin: 0 auto;
line-height: 2;
font-size: 1.1rem;
color: var(--charcoal);
}
/* Collection Grid */
.collection {
padding: 6rem 5%;
background: linear-gradient(to bottom, var(--ivory), #f5f0e8);
}
.collection-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 3rem;
margin-top: 4rem;
}
.collection-item {
position: relative;
aspect-ratio: 3/4;
overflow: hidden;
cursor: pointer;
border: 1px solid var(--gold);
}
.collection-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.collection-item:hover img {
transform: scale(1.05);
}
.collection-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 2rem;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color: white;
transform: translateY(100%);
transition: transform 0.4s ease;
}
.collection-item:hover .collection-overlay {
transform: translateY(0);
}
.collection-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
.collection-desc {
font-size: 0.9rem;
letter-spacing: 1px;
}
/* Placeholder Images */
.placeholder-1 {
background: linear-gradient(135deg, var(--deep-red), #c9506d);
display: flex;
align-items: center;
justify-content: center;
color: var(--ivory);
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
}
.placeholder-2 {
background: linear-gradient(135deg, var(--gold), #e8c468);
display: flex;
align-items: center;
justify-content: center;
color: var(--charcoal);
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
}
.placeholder-3 {
background: linear-gradient(135deg, #2c1810, #5d3a29);
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
}
.placeholder-4 {
background: linear-gradient(135deg, #4a0000, var(--deep-red));
display: flex;
align-items: center;
justify-content: center;
color: var(--ivory);
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
}
/* Heritage Section */
.heritage {
padding: 8rem 5%;
background: var(--charcoal);
color: var(--ivory);
text-align: center;
}
.heritage .section-title {
color: var(--gold);
}
.heritage-content {
max-width: 900px;
margin: 3rem auto;
line-height: 2;
font-size: 1.1rem;
}
/* Waitlist Section */
.waitlist {
padding: 8rem 5%;
background: var(--ivory);
text-align: center;
}
.waitlist-form {
max-width: 600px;
margin: 3rem auto;
}
.form-group {
margin-bottom: 2rem;
}
.form-input {
width: 100%;
padding: 1.2rem;
border: 2px solid var(--gold);
background: transparent;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
letter-spacing: 1px;
color: var(--charcoal);
}
.form-input:focus {
outline: none;
border-color: var(--deep-red);
}
.submit-button {
padding: 1.2rem 4rem;
background: var(--deep-red);
color: var(--ivory);
border: none;
letter-spacing: 3px;
text-transform: uppercase;
font-size: 1rem;
cursor: pointer;
transition: all 0.4s;
}
.submit-button:hover {
background: var(--charcoal);
}
/* Footer */
footer {
padding: 4rem 5%;
background: var(--charcoal);
color: var(--ivory);
text-align: center;
border-top: 1px solid var(--gold);
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 2rem;
}
.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--gold);
letter-spacing: 3px;
}
.footer-links {
display: flex;
gap: 2rem;
}
.footer-links a {
color: var(--ivory);
text-decoration: none;
font-size: 0.9rem;
letter-spacing: 2px;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--gold);
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 768px) {
.hero-title {
font-size: 3rem;
}
.nav-links {
display: none;
}
.collection-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="logo">VELVET & DUNES</div>
<ul class="nav-links">
<li><a href="#collection">Collection</a></li>
<li><a href="#heritage">Heritage</a></li>
<li><a href="#mumbai">Mumbai</a></li>
<li><a href="#waitlist">Join Waitlist</a></li>
</ul>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1 class="hero-title">VELVET <span class="amp">&</span> DUNES</h1>
<p class="hero-subtitle">Dubai Opulence · Indian Soul</p>
<p class="hero-tagline">Where Desert Luxury Meets Heritage Craftsmanship</p>
<a href="#mumbai" class="cta-button">Discover Mumbai</a>
</div>
</section>
<!-- Mumbai Launch -->
<section class="mumbai-launch" id="mumbai">
<h2 class="section-title">Coming to Mumbai</h2>
<p class="section-subtitle">Our First Indian Flagship</p>
<div class="launch-details">
<p>Velvet & Dunes is proud to announce the opening of our first physical flagship store in Mumbai, bringing Middle Eastern luxury to the heart of India's fashion capital.</p>
<p style="margin-top: 2rem; color: var(--gold); font-weight: 500;">Opening in 60 Days</p>
</div>
</section>
<!-- Collection Grid -->
<section class="collection" id="collection">
<h2 class="section-title">The Collection</h2>
<p class="section-subtitle">Exquisite Craftsmanship · Timeless Elegance</p>
<div class="collection-grid">
<div class="collection-item">
<img src="download (1).jfif" alt="Maharani Collection">
<div class="collection-overlay">
<h3 class="collection-name">Maharani Collection</h3>
<p class="collection-desc">Hand-woven silk with 24k gold thread embroidery</p>
</div>
</div>
<div class="collection-item">
<img src="download.jfif" alt="Desert Rose Collection">
<div class="collection-overlay">
<h3 class="collection-name">Desert Rose Collection</h3>
<p class="collection-desc">Dubai-inspired embellishments on traditional silhouettes</p>
</div>
</div>
<div class="collection-item">
<img src="download (2).jfif" alt="Sultan's Legacy">
<div class="collection-overlay">
<h3 class="collection-name">Sultan's Legacy</h3>
<p class="collection-desc">Contemporary cuts with intricate zardozi work</p>
</div>
</div>
<div class="collection-item">
<img src="LUXURY GOLDEN WHITE PARTY WEAR ABAYA, SAUDI, DUBAI CODED ABAYA, SHIMMER ABAYAS.jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Golden Dunes</h3>
<p class="collection-desc">Flowing fabrics adorned with precious stones</p>
</div>
</div>
<div class="collection-item">
<img src="Chic Bridal Statements_ Trendsetting Wedding Styles for beginners.jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Red & Gold Traditional Kaftan</h3>
<p class="collection-desc"></p>
</div>
</div>
<div class="collection-item">
<img src="💛.jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Soft Beige Evening Abaya</h3>
<p class="collection-desc">A light beige open abaya</p>
</div>
</div>
<div class="collection-item">
<img src="download (3).jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Golden Embellished Wedding Kaftan</h3>
<p class="collection-desc">A richly embroidered gold kaftan with intricate patterns</p>
</div>
</div>
<div class="collection-item">
<img src="download (4).jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Floral Pearl Abaya</h3>
<p class="collection-desc">A luxurious white abaya</p>
</div>
</div>
<div class="collection-item">
<img src="download (5).jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Red-Checked Ghutra</h3>
<p class="collection-desc">white kandura paired with a red-and-white checked ghutra.</p>
</div>
</div>
<div class="collection-item">
<img src="download (6).jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">White Ghutra</h3>
<p class="collection-desc">traditional white kandura and white ghutra, giving a polished classic look.</p>
</div>
</div>
<div class="collection-item">
<img src="download (7).jfif" alt="Golden Dunes">
<div class="collection-overlay">
<h3 class="collection-name">Black Ghutra</h3>
<p class="collection-desc">traditional cream kandura and black ghutra, giving a polished classic look.</p>
</div>
</div>
</div>
</section>
<!-- Heritage Section -->
<section class="heritage" id="heritage">
<h2 class="section-title">Our Heritage</h2>
<div class="heritage-content">
<p>Born in the opulent heart of Dubai, Velvet & Dunes represents the perfect marriage of Middle Eastern grandeur and Indian artisanal mastery. Each piece is a testament to centuries-old craftsmanship, reimagined for the modern connoisseur.</p>
<p style="margin-top: 2rem;">We cater exclusively to those who understand that true luxury lies not in logos, but in the whisper of silk, the weight of hand-embroidered gold, and the exclusivity of bespoke creation.</p>
</div>
</section>
<!-- Waitlist Section -->
<section class="waitlist" id="waitlist">
<h2 class="section-title">Join the Exclusive Circle</h2>
<p class="section-subtitle">Be among the first to experience Mumbai</p>
<form class="waitlist-form" onsubmit="handleSubmit(event)">
<div class="form-group">
<input type="text" class="form-input" placeholder="Full Name" required>
</div>
<div class="form-group">
<input type="email" class="form-input" placeholder="Email Address" required>
</div>
<div class="form-group">
<input type="tel" class="form-input" placeholder="Phone Number" required>
</div>
<button type="submit" class="submit-button">Reserve Your Invitation</button>
</form>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-logo">VELVET & DUNES</div>
<div class="footer-links">
<a href="#collection">Collection</a>
<a href="#heritage">Heritage</a>
<a href="#mumbai">Mumbai</a>
<a href="#waitlist">Contact</a>
</div>
</div>
<p style="margin-top: 2rem; font-size: 0.8rem; letter-spacing: 2px;">DUBAI · MUMBAI · 2025</p>
</footer>
<script>
function handleSubmit(e) {
e.preventDefault();
alert('Thank you for your interest. Our team will contact you shortly with exclusive details about the Mumbai opening.');
e.target.reset();
}
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
</script>
</body>
</html>