-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
727 lines (610 loc) · 13.7 KB
/
styles.css
File metadata and controls
727 lines (610 loc) · 13.7 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
719
720
721
722
723
724
725
726
727
/* General Styles */
html, body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #001f3f;
color: white;
width: 100%;
overflow-x: hidden;
}
/* Remove White Space */
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
}
/* Navigation Bar */
nav {
position: fixed; /* Keeps navbar fixed at the top */
top: 0; /* Aligns it to the top */
left: 0; /* Aligns it to the left */
width: 100%; /* Makes it span across the screen */
background-color: #2c3e50; /* Keeps the background color */
padding: 1rem;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000; /* Ensures navbar is always on top */
height: 50px;
}
/* Add space to body so content doesn't hide under navbar */
body {
padding-top: 80px; /* Adjust this based on navbar height */
}
nav ul {
display: flex;
list-style: none;
padding: 0;
margin: 0;
margin-left: -60px; /* Adjust this value to move the links left */
}
nav ul li {
margin-right: 10px; /* Spacing between links */
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
html {
scroll-behavior: smooth;
}
/* Navigation Links */
.nav-links {
display: flex;
list-style: none;
padding: 0;
margin: 0;
}
.nav-links li {
margin-right: 15px;
}
.nav-links li a {
color: white;
text-decoration: none;
font-weight: bold;
}
/* Hamburger Menu (Hidden by Default) */
.menu-toggle {
display: none;
font-size: 30px;
background: none;
border: none;
color: white;
cursor: pointer;
}
/* Logo Section */
.logo-section {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
background-color: #001f3f;
padding: 0.5rem 0; /* Reduce padding to remove extra space */
width: 100%;
}
.logo-section img {
height: 10vw;
max-height: 60px;
object-fit: contain;
margin: 0;
}
/* Hero Section */
.hero {
text-align: center;
padding: 6rem 2rem 5rem;
color: white;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
height: 100vh;
width: 100vw;
margin: 0;
max-width: 100%;
background: none;
transition: background 1s ease-in-out; /* Smooth transition */
}
/* Slideshow Container */
.slideshow-container {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
/* Slideshow Images */
.slide {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
.prev-btn, .next-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 30px;
color: white;
background: transparent;
border: none;
padding: 15px 20px;
cursor: pointer;
border-radius: 5px;
transition: background 0.3s;
z-index: 10;
}
.prev-btn { left: 20px; } /* Position Previous Button */
.next-btn { right: 20px; } /* Position Next Button */
.prev-btn:hover, .next-btn:hover {
background: transparent;
}
/* Show Active Slide */
.slide.active {
opacity: 1;
}
/* Hero Content */
.hero-content {
position: relative;
z-index: 1;
}
.hero h2 {
margin-top: 3rem;
}
.hero .btn {
display: inline-block;
padding: 0.8rem 1.5rem;
margin: 1rem;
background-color: #e67e22;
color: white;
text-decoration: none;
border-radius: 5px;
}
/* About Us Section */
.about {
width: 100%;
margin: 0 auto; /* Centers the section */
text-align: center;
}
.about p {
font-size: 1.2rem;
line-height: 1.6;
max-width: 80%;
margin: 0 auto; /* Ensures the paragraph stays centered */
}
/* Sections */
section {
padding: 4rem 2rem;
text-align: center;
width: 100vw;
max-width: 100%;
}
/* Dining Options Section */
.menu-section {
display: flex;
justify-content: space-evenly;
align-items: stretch; /* ensure each option takes the size of the tallest option*/
gap: 2rem;
flex-wrap: nowrap;
width: 100%;
max-width: 1400px;
margin: auto;
}
.menu-section div {
background: #3a5f8f;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex: 1;
min-width: 250px;
max-width: 350px;
text-align: center;
height: auto; /* Ensures dynamis height height */
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* View Menu Button Styling */
.menu-button {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background-color: #e67e22; /* Button color */
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px; /* Rounded corners */
transition: background 0.3s;
}
.menu-button:hover {
background-color: #d35400; /* Darker shade on hover */
}
.menu-section img, #activities img {
width: 300px;
height: auto;
border-radius: 10px;
}
/* Leisure Park Section */
.leisure-section {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 2rem;
flex-wrap: nowrap;
width: 100%;
max-width: 1400px; /* Match Dining Options */
}
.leisure-card {
background: #3a5f8f;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex: 1;
min-width: 250px; /* Match Dining Options */
max-width: 350px; /* Match Dining Options */
text-align: center;
height: auto; /* Adjust height dynamically */
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* Ensure images are the same size */
.leisure-card img {
width: 100%;
height: 200px; /* Set a uniform height for all images */
object-fit: cover;
border-radius: 10px;
}
/* Uniform text formatting */
.leisure-card h3 {
font-size: 1.5rem;
color: white;
}
.leisure-card p {
font-size: 1rem;
color: #f1f1f1;
}
/* Book Events Section */
#book-events {
text-align: center;
padding: 4rem 2rem 0rem;
width: 100%;
}
.events-section {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 2rem;
flex-wrap: nowrap;
width: 100%;
max-width: 1200px;
margin: auto;
}
.event-card {
background: #3a5f8f;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex: 1;
min-width: 300px;
max-width: 350px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* Ensure images are same size */
.event-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
}
.event-card h3 {
font-size: 1.5rem;
color: white;
}
.event-card p {
font-size: 1rem;
color: #f1f1f1;
}
/* Leisure Park & Events Buttons */
.activity-button,
.event-button {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background-color: #e67e22; /* Orange color */
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background 0.3s;
}
.activity-button:hover,
.event-button:hover {
background-color: #d35400; /* Darker shade on hover */
}
/* Image Styles */
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.gallery-images {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.gallery-images img {
width: 150px;
height: auto;
border-radius: 5px;
}
/* Gallery Section */
.gallery-images {
padding-top: 10px; /* Reduce space above gallery */
padding-bottom: 50px; /* Adjust this value to increase space */
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
/* Center and make heading take full width */
.gallery-images h2 {
width: 100%;
text-align: center;
font-size: 2rem; /* Adjust size if needed */
margin-bottom: 20px; /* Space between heading and images */
}
.gallery-images img {
width: 150px;
height: auto;
border-radius: 5px;
cursor: pointer; /* Indicates that images are clickable */
transition: transform 0.3s ease;
}
.gallery-images img:hover {
transform: scale(1.05);
}
/* Lightbox Overlay */
#lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
/* Lightbox Image */
.lightbox-content {
max-width: 80%;
max-height: 80%;
border-radius: 10px;
}
/* Close Button */
.close {
position: absolute;
top: 20px;
right: 30px;
font-size: 40px;
color: white;
cursor: pointer;
}
/* Navigation Buttons */
.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 30px;
color: white;
cursor: pointer;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
border-radius: 5px;
user-select: none;
}
.prev {
left: 20px;
}
.next {
right: 20px;
}
.prev:hover, .next:hover {
background: rgba(0, 0, 0, 0.8);
}
/* Dots Container */
.dots-container {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}
/* Dots Style */
.dot {
height: 12px;
width: 12px;
margin: 0 5px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
display: inline-block;
cursor: pointer;
transition: background-color 0.3s;
}
/* Active Dot */
.dot.active {
background-color: white;
transform: scale(1.2);
}
/* Contact Section */
#contact {
padding: 4rem 2rem;
text-align: center;
background-color: #2c3e50;
color: white;
}
.contact-container {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 2rem;
flex-wrap: wrap;
max-width: 1000px;
margin: auto;
}
form {
background: #3a5f8f;
padding: 2rem;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 400px;
display: flex;
flex-direction: column;
}
form label {
font-weight: bold;
margin-bottom: 5px;
text-align: left;
}
form input,
form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-radius: 5px;
}
form button {
background-color: #e67e22;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
form button:hover {
background-color: #cf6d17;
}
/* Contact Info */
.contact-info {
text-align: left;
max-width: 400px;
}
.contact-info h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.contact-info p {
font-size: 1rem;
margin-bottom: 5px;
}
.map-link {
color: #ffffff;
font-weight: bold;
text-decoration: none;
}
.map-link:hover {
text-decoration: underline;
}
.email-link {
color: white;
text-decoration: none;
}
.email-link:hover {
text-decoration: underline;
}
/* Social Media Icons Container */
.social-icons {
display: flex; /* Display icons in a row */
justify-content: flex-start; /* Align icons to the left */
gap: 10px; /* Add spacing between icons */
margin-top: 10px; /* Space between phone number and icons */
}
/* Style for Icons */
.social-icon img {
width: 30px; /* Adjust icon size */
height: 30px;
object-fit: contain;
cursor: pointer; /* Make it clear that it's clickable */
}
/* Footer */
footer {
text-align: center;
padding: 2rem;
background-color: #2c3e50;
color: white;
width: 100vw;
max-width: 100%;
}
/* Responsive Adjustments for Smaller Screens */
@media screen and (max-width: 768px) {
/* Hide navigation buttons on small screens */
nav {
height: 40px; /* Adjusted height for small screens */
}
.nav-links {
display: none; /* Hides the navigation buttons */
}
/* Hero Section Adjustments */
.hero {
height: 50vh;
background-size: cover; /* Prevent cropping */
}
.hero h2 {
font-size: 1.5rem; /* Reduce heading size */
}
.hero p {
font-size: 1rem; /* Reduce paragraph size */
}
.hero .btn {
padding: 0.5rem 1rem; /* Reduce button size */
font-size: 0.9rem; /* Reduce button text size */
}
.about
/* Ensure Sections Wrap Properly */
.menu-section, .leisure-section, .events-section {
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.menu-section div, .leisure-card, .event-card {
width: 40%;
max-width: 350px;
}
/* Lightbox Responsive Fix */
.lightbox-content {
width: 90%;
height: auto;
}
/* Contact Form Adjustments */
form {
width: 90%;
}
/* Resize Buttons & Text */
.btn, .menu-button, .event-button {
padding: 8px 12px;
font-size: 14px;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.3rem;
}
p {
font-size: 1rem;
}
}