-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvilla-sebelah-wireframe.html
More file actions
680 lines (611 loc) · 22.8 KB
/
Copy pathvilla-sebelah-wireframe.html
File metadata and controls
680 lines (611 loc) · 22.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Villa Sebelah - Website Wireframe</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.6;
}
.wireframe-container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
}
.wireframe-header {
text-align: center;
margin-bottom: 40px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wireframe-section {
background: white;
margin-bottom: 30px;
border: 2px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.section-label {
background: #333;
color: white;
padding: 10px 20px;
font-weight: bold;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Navigation */
.navigation {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
border-bottom: 2px solid #eee;
}
.logo-placeholder {
width: 180px;
height: 50px;
background: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
font-weight: bold;
}
.nav-menu {
display: flex;
gap: 30px;
}
.nav-item {
padding: 8px 16px;
background: #f0f0f0;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s;
}
.nav-item:hover {
background: #e0e0e0;
}
.cta-button {
padding: 12px 24px;
background: #333;
color: white;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
}
/* Hero Section */
.hero-section {
height: 600px;
background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 40px;
}
.hero-content {
background: rgba(255,255,255,0.9);
padding: 40px;
border-radius: 8px;
max-width: 600px;
}
.hero-title {
font-size: 36px;
margin-bottom: 16px;
color: #333;
}
.hero-subtitle {
font-size: 18px;
color: #666;
margin-bottom: 24px;
}
.hero-buttons {
display: flex;
gap: 16px;
justify-content: center;
}
.hero-indicators {
position: absolute;
bottom: 30px;
display: flex;
gap: 10px;
}
.indicator {
width: 12px;
height: 12px;
background: rgba(255,255,255,0.5);
border-radius: 50%;
cursor: pointer;
}
.indicator.active {
background: white;
}
/* Two Villas Section */
.two-villas {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
padding: 60px 40px;
}
.villa-card {
text-align: center;
padding: 40px;
background: #f8f8f8;
border-radius: 8px;
transition: transform 0.3s;
}
.villa-card:hover {
transform: translateY(-5px);
}
.villa-image {
width: 100%;
height: 300px;
background: #d0d0d0;
border-radius: 8px;
margin-bottom: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
color: #666;
}
.villa-name {
font-size: 24px;
margin-bottom: 12px;
color: #333;
}
.villa-details {
color: #666;
margin-bottom: 20px;
}
/* Features Grid */
.features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
padding: 60px 40px;
background: #f8f8f8;
}
.feature-item {
text-align: center;
padding: 30px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.feature-icon {
width: 60px;
height: 60px;
background: #e0e0e0;
border-radius: 50%;
margin: 0 auto 16px;
}
.feature-title {
font-size: 18px;
margin-bottom: 8px;
}
.feature-desc {
font-size: 14px;
color: #666;
}
/* Gallery Preview */
.gallery-preview {
padding: 60px 40px;
}
.gallery-header {
text-align: center;
margin-bottom: 40px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 30px;
}
.gallery-item {
height: 250px;
background: #d0d0d0;
border-radius: 8px;
position: relative;
overflow: hidden;
cursor: pointer;
}
.gallery-item:hover::after {
content: 'View';
position: absolute;
inset: 0;
background: rgba(0,0,0,0.7);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
/* Location Section */
.location-section {
display: grid;
grid-template-columns: 1fr 1fr;
height: 400px;
}
.map-placeholder {
background: #d0d0d0;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #666;
}
.location-info {
padding: 60px;
display: flex;
flex-direction: column;
justify-content: center;
}
.location-title {
font-size: 32px;
margin-bottom: 20px;
}
.location-list {
list-style: none;
color: #666;
}
.location-list li {
padding: 10px 0;
border-bottom: 1px solid #eee;
}
/* Pre-Launch Section */
.pre-launch {
background: #333;
color: white;
padding: 80px 40px;
text-align: center;
}
.pre-launch-title {
font-size: 36px;
margin-bottom: 16px;
}
.pre-launch-subtitle {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.8;
}
.email-form {
display: flex;
gap: 16px;
max-width: 500px;
margin: 0 auto;
}
.email-input {
flex: 1;
padding: 16px;
border-radius: 4px;
border: none;
font-size: 16px;
}
.submit-button {
padding: 16px 32px;
background: white;
color: #333;
border: none;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
}
/* Footer */
.footer {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
padding: 60px 40px;
background: #f8f8f8;
border-top: 1px solid #e0e0e0;
}
.footer-brand {
padding-right: 40px;
}
.footer-logo {
width: 150px;
height: 40px;
background: #d0d0d0;
margin-bottom: 16px;
border-radius: 4px;
}
.footer-desc {
color: #666;
line-height: 1.8;
}
.footer-column h4 {
margin-bottom: 16px;
color: #333;
}
.footer-links {
list-style: none;
}
.footer-links li {
padding: 8px 0;
color: #666;
cursor: pointer;
}
.footer-links li:hover {
color: #333;
}
.social-icons {
display: flex;
gap: 16px;
margin-top: 16px;
}
.social-icon {
width: 40px;
height: 40px;
background: #d0d0d0;
border-radius: 50%;
cursor: pointer;
}
/* Annotations */
.annotation {
position: absolute;
background: #ff6b6b;
color: white;
padding: 8px 12px;
border-radius: 4px;
font-size: 12px;
z-index: 10;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.annotation::after {
content: '';
position: absolute;
bottom: -5px;
left: 20px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #ff6b6b;
}
</style>
</head>
<body>
<div class="wireframe-container">
<div class="wireframe-header">
<h1>Villa Sebelah - Website Wireframe</h1>
<p>Modern Villa Showcase Website</p>
</div>
<!-- Navigation -->
<div class="wireframe-section">
<div class="section-label">Navigation Bar (Sticky)</div>
<div class="navigation">
<div class="logo-placeholder">VILLA SEBELAH</div>
<div class="nav-menu">
<div class="nav-item">Home</div>
<div class="nav-item">The Villas</div>
<div class="nav-item">Gallery</div>
<div class="nav-item">Experience</div>
<div class="nav-item">Architecture</div>
<div class="nav-item">Location</div>
<div class="nav-item">Contact</div>
</div>
<div class="cta-button">Contact</div>
</div>
</div>
<!-- Hero Section -->
<div class="wireframe-section">
<div class="section-label">Hero Section - Full Screen Image/Video Slider</div>
<div class="hero-section">
<div class="hero-content">
<h1 class="hero-title">Modern Luxury in Kuta Lombok</h1>
<p class="hero-subtitle">Twin Villas with Flexible Living Spaces</p>
<p style="margin-bottom: 24px; color: #666;">Coming Soon - 2025</p>
<div class="hero-buttons">
<button class="cta-button">Explore The Villas</button>
<button class="cta-button" style="background: transparent; color: #333; border: 2px solid #333;">Virtual Tour</button>
</div>
</div>
<div class="hero-indicators">
<div class="indicator active"></div>
<div class="indicator"></div>
<div class="indicator"></div>
<div class="indicator"></div>
</div>
</div>
</div>
<!-- Two Villas Section -->
<div class="wireframe-section">
<div class="section-label">Twin Villa Concept - Both with 2+1 Bedrooms</div>
<div class="two-villas">
<div class="villa-card">
<div class="villa-image">Villa Sebelah Kiri</div>
<h3 class="villa-name">Villa Sebelah Kiri</h3>
<p class="villa-details">2+1 Bedrooms • Private Pool • Contemporary Design</p>
<button class="cta-button" style="background: transparent; color: #333; border: 2px solid #333;">View Details</button>
</div>
<div class="villa-card">
<div class="villa-image">Villa Sebelah Kanan</div>
<h3 class="villa-name">Villa Sebelah Kanan</h3>
<p class="villa-details">2+1 Bedrooms • Private Pool • Modern Architecture</p>
<button class="cta-button" style="background: transparent; color: #333; border: 2px solid #333;">View Details</button>
</div>
</div>
</div>
<!-- Features Grid -->
<div class="wireframe-section">
<div class="section-label">Key Features</div>
<div class="features-grid">
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Modern Architecture</h4>
<p class="feature-desc">Contemporary design with natural materials</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Private Pools</h4>
<p class="feature-desc">Each villa with its own swimming pool</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Island Kitchen</h4>
<p class="feature-desc">Fully equipped for culinary experiences</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Flexible Spaces</h4>
<p class="feature-desc">Multifunction room with sofa bed for work or extra bedroom</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">BBQ Area</h4>
<p class="feature-desc">Outdoor dining beside the pool</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Tropical Gardens</h4>
<p class="feature-desc">Lush landscaping with native plants</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">Indoor-Outdoor Living</h4>
<p class="feature-desc">Seamless flow between spaces</p>
</div>
<div class="feature-item">
<div class="feature-icon"></div>
<h4 class="feature-title">2+1 Bedrooms</h4>
<p class="feature-desc">Two bedrooms plus convertible office/bedroom</p>
</div>
</div>
</div>
<!-- Gallery Preview -->
<div class="wireframe-section">
<div class="section-label">Gallery Preview</div>
<div class="gallery-preview">
<div class="gallery-header">
<h2 style="font-size: 36px; margin-bottom: 16px;">Discover Every Detail</h2>
<p style="color: #666;">Explore our architectural renders and design concepts</p>
</div>
<div class="gallery-grid">
<div class="gallery-item"></div>
<div class="gallery-item"></div>
<div class="gallery-item"></div>
<div class="gallery-item"></div>
<div class="gallery-item"></div>
<div class="gallery-item"></div>
</div>
<div style="text-align: center;">
<button class="cta-button">View Full Gallery</button>
</div>
</div>
</div>
<!-- Location Section -->
<div class="wireframe-section">
<div class="section-label">Location</div>
<div class="location-section">
<div class="map-placeholder">Interactive Map</div>
<div class="location-info">
<h2 class="location-title">Prime Location in Kuta Lombok</h2>
<p style="margin-bottom: 24px; color: #666;">Experience the perfect balance of tranquility and accessibility</p>
<ul class="location-list">
<li>✓ 10 minutes from International School</li>
<li>✓ 15 minutes to pristine beaches</li>
<li>✓ 20 minutes from Lombok International Airport</li>
<li>✓ Walking distance to local restaurants and shops</li>
<li>✓ Surrounded by lush tropical landscape</li>
</ul>
</div>
</div>
</div>
<!-- Pre-Launch CTA -->
<div class="wireframe-section">
<div class="section-label">Contact Section</div>
<div class="pre-launch">
<h2 class="pre-launch-title">Experience Villa Sebelah</h2>
<p class="pre-launch-subtitle">Opening Soon in 2025 • Available on Airbnb</p>
<div style="margin-top: 40px;">
<button class="cta-button" style="background: white; color: #333; padding: 16px 40px; font-size: 18px;">Contact Us</button>
</div>
</div>
</div>
<!-- Footer -->
<div class="wireframe-section">
<div class="section-label">Footer</div>
<div class="footer">
<div class="footer-brand">
<div class="footer-logo"></div>
<p class="footer-desc">Villa Sebelah offers a unique dual-villa concept in the heart of Kuta Lombok, combining modern architecture with tropical luxury.</p>
<div class="social-icons">
<div class="social-icon"></div>
<div class="social-icon"></div>
<div class="social-icon"></div>
</div>
</div>
<div class="footer-column">
<h4>Explore</h4>
<ul class="footer-links">
<li>The Villas</li>
<li>Architecture</li>
<li>Gallery</li>
<li>Virtual Tour</li>
</ul>
</div>
<div class="footer-column">
<h4>Experience</h4>
<ul class="footer-links">
<li>Location</li>
<li>Nearby Attractions</li>
<li>Local Culture</li>
<li>Activities</li>
</ul>
</div>
<div class="footer-column">
<h4>Connect</h4>
<ul class="footer-links">
<li>Contact Us</li>
<li>Construction Updates</li>
<li>Follow Our Journey</li>
<li>Booking Inquiries</li>
</ul>
</div>
</div>
</div>
<!-- Notes Section -->
<div class="wireframe-section" style="background: #fff9c4;">
<div class="section-label" style="background: #f9a825;">Wireframe Notes</div>
<div style="padding: 30px;">
<h3 style="margin-bottom: 20px;">Key Design Principles:</h3>
<ul style="list-style: none; color: #666;">
<li style="padding: 8px 0;">✓ <strong>Minimalist Design:</strong> Clean layouts with plenty of white space to match the architectural style</li>
<li style="padding: 8px 0;">✓ <strong>Visual Hierarchy:</strong> Large, high-quality images as primary focus points</li>
<li style="padding: 8px 0;">✓ <strong>Twin Villa Focus:</strong> Clear presentation of both identical 2+1 bedroom villas</li>
<li style="padding: 8px 0;">✓ <strong>Showcase Focus:</strong> Purely informational website to display villa features and design</li>
<li style="padding: 8px 0;">✓ <strong>Flexible Configuration:</strong> Highlight the 2+1 bedroom layout with convertible spaces</li>
<li style="padding: 8px 0;">✓ <strong>Mobile Responsive:</strong> All sections designed to adapt to mobile screens</li>
<li style="padding: 8px 0;">✓ <strong>Natural Materials:</strong> Color palette and textures inspired by wood, stone, and greenery</li>
</ul>
<h3 style="margin-top: 30px; margin-bottom: 20px;">Content Sections to Develop:</h3>
<ul style="list-style: none; color: #666;">
<li style="padding: 8px 0;">• High-resolution photography/renders of both villas</li>
<li style="padding: 8px 0;">• 360° virtual tour or video walkthrough</li>
<li style="padding: 8px 0;">• Detailed floor plans highlighting the 2+1 bedroom configuration</li>
<li style="padding: 8px 0;">• Complete list of amenities and features</li>
<li style="padding: 8px 0;">• Local area guide and attractions in Kuta Lombok</li>
<li style="padding: 8px 0;">• Professional architectural photography showcasing design elements</li>
<li style="padding: 8px 0;">• Contact information for inquiries</li>
</ul>
</div>
</div>
</div>
</body>
</html>