-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
720 lines (662 loc) · 14.6 KB
/
style.css
File metadata and controls
720 lines (662 loc) · 14.6 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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
/* Base Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background: #ffffff;
background-image: url(images/luxbg3.png) repeat center center;
color: #383838;
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
/* Header */
header {
background-color: white no-repeat center center;
display: flex;
align-items: center;
justify-content: center;
position: relative;
height: 150px;
background-size: cover;
overflow: hidden;
}
header::after {
content: "";
position: absolute;
inset: 0;
background-color: rgb(255, 255, 255);
z-index: 0;
}
.logo, .menu-icon, nav { position: relative; z-index: 2; }
.logo-link { position: relative; z-index: 2; }
.logo {
max-height: 120px;
width: auto;
flex-shrink: 0;
object-fit: contain;
transition: transform 0.3s ease;
cursor: pointer;
}
.logo:hover {
transform: scale(1.08);
filter: drop-shadow(0 0 18px rgba(247, 202, 121, 1));
}
.menu-icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 80px;
cursor: pointer;
background: none;
border: none;
color: #974200;
z-index: 3;
}
/* Side Menu (Full Screen Overlay) */
.side-menu {
height: 100%; /* full height */
width: 100%; /* full width */
position: fixed;
top: 0;
left: 0;
background: #ffffff; /* white background */
transform: translateX(-100%);
transition: transform 0.4s ease;
padding-top: 80px; /* space for close button */
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center; /* center links horizontally */
justify-content: center; /* center links vertically */
}
.side-menu.open { transform: translateX(0); }
/* Menu Links */
.side-menu a {
display: block;
margin: 20px 0;
color: #000000; /* black text */
text-decoration: none;
font-size: 42px; /* larger font for readability */
font-family: 'Playfair Display', serif; /* luxury font */
font-weight: 600;
transition: color 0.3s ease;
}
.side-menu a:hover {
color: #BF7D3A; /* luxury golden brown accent */
}
/* Close Button */
.closebtn {
position: absolute;
top: 20px;
right: 25px;
font-size: 60px; /* bigger close button */
background: none;
border: none;
color: #000000; /* black to match text */
cursor: pointer;
font-family: 'Playfair Display', serif;
}
/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
.side-menu a {
font-size: 32px; /* slightly smaller on mobile */
}
.closebtn {
font-size: 48px;
right: 20px;
}
.logo img {
height: auto;
}
}
/*Tablet friendly Adjustments*/
@media (min-width: 768px) and (max-width: 1024px) {
body {
background-color: #F4E1D2; /* keep your luxury tone */
}
.logo{
width: auto;
height: auto;
}
section, header, footer, nav {
width: 100%;
padding: 0;
margin: 0;
}
.enquiry-overlay {
max-width: 100%;
padding: 0 12px;
}
.manual-slideshow {
width: 100%;
height: 100vh;
background-color: #000;
}
.slide-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
/* Parent container */
.recognition-container {
display: flex;
flex-wrap: wrap;
width: 100%;
height: 90vh; /* full viewport height */
}
/* Each section takes half */
.recognition-banner,
.recognition-image {
flex: 1 1 50%;
display: flex;
width: 100%;
height: 100%;
}
/* Text styling */
.recog-text {
display: flex; /* make it a flexbox */
flex-direction: column; /* stack heading and paragraphs */
justify-content: center; /* center vertically */
align-items: center; /* center horizontally */
width: 100%; /* fill full width of its section */
height: 100%; /* fill full height of its section */
padding: 20px;
text-align: center;
background-color: #fff;
color: #000;
font-family: 'Playfair Display', serif;
font-size: 50px;
}
.recog-text h1{
font-size: 120px;
font-weight: 700px;
margin-block-end: .07em;
color: #000;
font-family: 'Playfair Display', serif;
}
.recog-text h2{
font-size: 20px;
font-weight: 100px;
color: #3b3131;
font-family: 'Playfair Display', serif;
}
/* Image styling */
.recog-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.recog-image img {
max-width: 80%;
max-height: 80%;
object-fit: contain;
}
/* Responsive: stack vertically on mobile/tablet */
@media (max-width: 767px) {
.recognition-container {
display: flex;
flex-direction: column;
width: 100%;
}
.recognition-banner,
.recognition-image {
flex: 1 1 50%;
width: 100%;
height: 50vh; /* each half of screen height */
}
.enquiry-section{
width: 100%;
}
.enquiry-overlay{
width: 100%;
}
.generator{
width: 100%;
}
.luxury-footer{
width: 100%;
}
}
/* Responsive: stack vertically on mobile/tablet */
@media (min-width: 768px) and (max-width: 1024px) {
.recognition-container {
display: flex;
flex-direction: row;
height: 100%;
}
.recognition-banner,
.recognition-image {
flex: 1 1 100%;
width: 100%;
height: 100%; /* each half of screen height */
}
.enquiry-section{
width: 100%;
}
.enquiry-overlay{
width: 100%;
}
.generator{
width: 100%;
}
.luxury-footer{
width: 100%;
}
}
/*Offers*/
.offers-section {
background-color: #fff;
padding: 60px 20px;
text-align: center;
width: 100%;
}
.offers-container {
max-width: 1000px;
margin: 0 auto;
}
.offers-heading {
font-size: 2.2rem;
font-family: 'Playfair Display', serif;
color: #B22222; /* deep celebratory red */
margin-bottom: 16px;
}
.offers-subtext {
font-size: 1.1rem;
color: #383838;
margin-bottom: 32px;
}
.offers-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.offers-btn {
background-color: #B22222;
color: #fff;
padding: 12px 24px;
text-decoration: none;
font-size: 1rem;
border-radius: 6px;
transition: background 0.3s ease;
position: relative;
z-index: 3;
}
.offers-btn:hover {
background-color: #8B1A1A;
}
.whatsapp-btn {
background-color: #25D366;
position: relative;
z-index: 3;
}
.whatsapp-btn:hover {
background-color: #1DA851;
}
/* Slideshow */
.slideshow-wrapper {
position: relative;
height: 60vh; /* adjusted height */
width: 100%;
overflow: hidden; /* hide overflow for train effect */
z-index: 1;
}
/* Train-like slideshow */
.slideshow {
display: flex;
height: 100%;
object-fit: cover;
width: max-content; /* allow content to extend horizontally */
animation: scrollTrain 40s linear infinite; /* endless loop */
}
.slideshow img {
height: 100%; /* fill the 60vh height */
width: auto; /* keep aspect ratio */
object-fit: cover;
border-radius: 12px;
margin-right: 10px; /* spacing between images */
}
/* Train-like animation */
@keyframes scrollTrain {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* Overlay text */
.slideshow-overlay {
position: absolute;
inset: 0;
background-color: rgba(128, 78, 39, 0.7);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
z-index: 2;
pointer-events: none;
}
.slideshow-overlay h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(24px, 5vw, 48px);
font-weight: 700;
color: #F4E1D2;
text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
margin-bottom: 10px;
}
.slideshow-overlay p {
font-family: 'Italiana', serif;
font-size: clamp(14px, 3vw, 24px);
color: #F4E1D2;
text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
margin: 0;
}
/* Optional manual controls */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(128,78,39,0.7);
color: #F4E1D2;
border: none;
padding: 10px 12px;
border-radius: 6px;
z-index: 10;
}
.prev { left: 8px; }
.next { right: 8px; }
/* Enquiry Section */
.enquiry-section {
position: relative;
width: 100%;
max-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
overflow: hidden;
z-index: 2;
}
.enquiry-section::before {
content: "";
position: absolute;
inset: 0;
background: url("images/enquirybg.png") no-repeat center center;
background-size: cover;
filter: blur(5px);
z-index: 0;
}
.enquiry-overlay {
position: relative;
z-index: 1;
background: rgba(36, 13, 13, 0.7);
border-radius: 20px;
padding: 30px;
max-width: 100%;
width: 100%;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
display: flex;
flex-direction: column;
align-items: center;
}
.enquiry-overlay h2 {
font-family: 'Playfair Display', serif;
font-size: 36px;
font-weight: 700;
color: #fff7f1;
margin-bottom: 20px;
text-shadow: 2px 2px 6px rgba(56,56,56,0.4);
}
.enquiry-overlay form {
width: 100%;
display: flex;
flex-direction: column;
gap: 12px;
}
.enquiry-overlay input,
.enquiry-overlay textarea {
width: 100%;
padding: 12px;
border: 1px solid #BF7D3A;
border-radius: 8px;
font-size: 16px;
font-family: 'Italiana', serif;
}
.enquiry-overlay button {
background: #804E27;
color: #F4E1D2;
border: none;
padding: 12px 24px;
border-radius: 10px;
cursor: pointer;
font-size: 18px;
font-family: 'Playfair Display', serif;
font-weight: 600;
align-self: flex-start;
transition: background 0.3s ease;
}
.enquiry-overlay button:hover { background: #BF7D3A; }
/*Map*/
.map-section {
background-color: #fff;
padding: 40px 20px;
text-align: center;
}
.map-container {
max-width: 1000px;
margin: 0 auto;
}
.map-button-container {
margin-top: 20px;
}
.map-btn {
display: inline-block;
background-color: #B22222;
color: #fff;
padding: 12px 24px;
text-decoration: none;
font-size: 1rem;
border-radius: 6px;
transition: background 0.3s ease;
position: relative;
z-index: 2;
}
.map-btn:hover {
background-color: #8B1A1A;
}
/* Review Generator */
.generator {
position: relative;
padding: 60px 20px;
text-align: center;
background: url(images/rgbg.png) center/cover no-repeat;
background-color: #ffd000;
color: #383838;
z-index: 1;
}
.generator::before {
content: "";
position: absolute;
inset: 0;
background: rgba(56, 56, 56, 0.6);
z-index: 0;
}
.generator h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
color: #F7CA79;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 30px;
position: relative;
z-index: 2;
text-shadow: 2px 2px 6px rgba(56, 56, 56, 0.8),
0 0 12px rgba(247, 202, 121, 0.6);
}
/* Review Card */
.review-card {
position: relative;
z-index: 1;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 6px 16px rgba(0,0,0,0.15);
padding: 30px 20px;
max-width: 720px;
margin: 0 auto;
}
.review-card p {
font-family: 'Italiana', serif;
font-size: 20px;
font-weight: 700;
line-height: 1.6;
color: #383838;
background: rgba(244, 225, 210, 0.8);
padding: 16px 20px;
border-radius: 12px;
box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
}
/* Review Actions */
.review-actions {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.review-actions button,
.review-actions .review-btn {
background: #804E27;
color: #F4E1D2;
border: none;
padding: 12px 18px;
text-decoration: none;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
font-family: 'Playfair Display', serif;
font-weight: 600;
transition: background 0.3s ease, transform 0.2s ease;
}
.review-actions button:hover,
.review-actions .review-btn:hover {
background: #BF7D3A;
transform: translateY(-2px);
}
#copyBtn { background: #3498db; }
#copyBtn:hover { background: #2c80c9; }
.copy-msg {
min-height: 24px;
font-weight: bold;
color: #804E27;
}
/* Overlay */
.overlay {
position: fixed;
inset: 0;
}
/* Footer */
.luxury-footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 20px 10px;
font-family: 'Playfair Display', serif;
font-size: 16px;
letter-spacing: 1px;
}
.luxury-footer p { margin: 0; }
/* ===========================
Mobile Friendly Overrides
=========================== */
@media (max-width: 600px) {
body { font-size: 34px; }
/* Header */
header { height: 120px; }
.logo { max-height: 100px;}
.logo img {
max-width: 120px;
}
.menu-icon {
font-size: 52px; /* bigger icon */
left: 16px; /* slight spacing from edge */
padding: 8px 12px; /* enlarge clickable area */
border-radius: 6px; /* optional rounded background */
background: rgba(128, 78, 39, 0.7); /* optional background for visibility */
color: #F4E1D2; /* keep luxury theme */
}
/* Recognition Banner */
.recog-text h2 { font-size: 1.8rem; }
.recog-text p, .recog-text .awards { font-size: 1.2rem; }
.recog-image { height: 100px; }
/* Slideshow */
.slideshow-overlay h2 { font-size: 22px; }
.slideshow-overlay p { font-size: 14px; }
.slideshow img { border-radius: 8px; }
/* Enquiry Section */
.enquiry-section { padding: 20px; min-height: auto; }
.enquiry-overlay { padding: 20px; max-width: 95%; }
.enquiry-overlay h2 { font-size: 24px; }
.enquiry-overlay input,
.enquiry-overlay textarea { font-size: 14px; }
.enquiry-overlay button { font-size: 14px; padding: 10px 18px; }
/* Review Generator */
.generator { padding: 40px 15px; }
.generator h2 { font-size: 28px; }
.review-card { padding: 20px 15px; }
.review-card p { font-size: 16px; }
.review-actions button,
.review-actions .review-btn { font-size: 14px; padding: 10px 14px; }
/* Footer */
.luxury-footer { padding: 15px 8px; font-size: 14px; }
}
/*Photos.HTMl*/
/* Slideshow */
.manual-slideshow {
position: relative;
width: 100%;
height: 100vh; /* full viewport height */
overflow: hidden;
}
.slide-container {
width: 100%;
height: 100%;
position: relative;
}
.slide-container img {
display: block; /* hide all by default */
width: 100%;
height: 100%;
object-fit: cover; /* fill screen responsively */
}
/* Slideshow buttons (unique classes for photos.html) */
.prev1, .next1 {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: #fff;
border: none;
padding: 12px 18px;
cursor: pointer;
font-size: 22px;
border-radius: 6px;
z-index: 2;
}
.prev1 { left: 20px; }
.next1 { right: 20px; }
.prev1:hover, .next1:hover {
background: rgba(0,0,0,0.8);
}
/* Footer */
.luxury-footer {
text-align: center;
padding: 20px;
background: #111;
color: #fff;
font-family: 'Playfair Display', serif;
}