-
Notifications
You must be signed in to change notification settings - Fork 216
/
gallery.html
908 lines (835 loc) · 23.2 KB
/
gallery.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
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
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gallery: Shree Krishna</title>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<style>
.chatbot-container {
position: fixed;
bottom: 20px; /* Adjust as needed */
right: 90px; /* Adjust as needed */
z-index: 1000; /* Ensure it appears above other elements */
}
.chatbot-button {
border: none;
border-radius: 50%;
padding: 5px; /* Smaller padding */
cursor: pointer;
position: relative;
width: 50px; /* Adjusted size */
height: 50px; /* Adjusted size */
}
.chatbot-button img {
width: 30px; /* Adjusted image size */
height: 30px; /* Adjusted image size */
}
.tooltip-text {
display: none; /* Hide by default */
position: absolute;
bottom: 100%; /* Position above the button */
right: 50%;
transform: translateX(50%);
background-color: #333; /* Background color for tooltip */
color: #fff; /* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap; /* Prevent text from wrapping */
}
.chatbot-button:hover .tooltip-text {
display: block; /* Show on hover */
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-image: var(--bg-color);
padding: 0;
margin: 0;
color: #333;
overflow-x: hidden;
}
.scroll-top-btn {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #330867;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
display: none;
z-index: 1000;
}
.scroll-top-btn:hover {
background-color: #330867;
}
.content {
padding: 20px 20px 100px;
}
h1 {
text-align: center;
font-size: 36px;
font-weight: 900;
background: var(--primary-color);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.image-container {
margin: 40px 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
html {
background-image: linear-gradient(#eee, #aaa);
height: 100%;
}
.img {
border: solid 2px;
border-bottom-color: rgb(233, 233, 145);
border-left-color: #eed;
border-right-color: #eed;
border-top-color: #ccb;
max-height: 90%; /* Limit height to leave some space */
max-width: 100%;
margin-top: 10px; /* Add a gap at the top */
margin-bottom: 10px; /* Add a gap at the bottom */
box-sizing: border-box;
}
.image-card {
background-color: #ddc;
border: solid 5vmin #eee;
border-bottom-color: #fff;
border-left-color: #eee;
border-radius: 2px;
border-right-color: #eee;
border-top-color: #ddd;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset,
0 5px 10px 5px rgba(0, 0, 0, 0.25);
box-sizing: border-box;
display: flex; /* Flexbox to center image */
justify-content: center; /* Horizontally center the image */
align-items: center; /* Vertically center the image */
margin: 10vh 10vw;
height: 80vh;
padding: 8vmin;
position: relative;
text-align: center;
}
.image-card:before {
border-radius: 2px;
bottom: -2vmin;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) inset;
content: "";
left: -2vmin;
position: absolute;
right: -2vmin;
top: -2vmin;
}
.image-card:after {
border-radius: 2px;
bottom: -2.5vmin;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
content: "";
left: -2.5vmin;
position: absolute;
right: -2.5vmin;
top: -2.5vmin;
}
/* New responsive rules */
@media (max-width: 768px) {
.image-card {
margin: 5vh 5vw;
height: 60vh;
}
.img {
margin-top: 5px; /* Smaller gap for small screens */
margin-bottom: 5px; /* Smaller gap for small screens */
}
}
.image-card {
margin: 15px;
border-radius: 10px;
height: 400px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
cursor: pointer;
transition: transform 0.3s ease-in-out;
}
.image-card:hover {
transform: scale(1.08);
}
.image-card img {
width: 320px;
height: 400px;
border-radius: 10px;
transition: transform 0.3s ease-in-out;
}
.image-card:hover img {
transform: scale(1.1);
}
/* Lightbox Styles */
.lightbox {
display: none;
position: fixed;
top: 50px;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
z-index: 10;
}
.lightbox img {
max-width: 80%;
max-height: 80%;
border-radius: 10px;
}
.close-btn {
position: absolute;
top: 50px;
right: 20px;
cursor: pointer;
font-size: 30px;
color: #fff;
}
.galleryMain {
text-align: center;
background-image: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
padding: 10px 20px;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0px 6px 10px #ccc;
}
.navigation {
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navigation .homeDiv #homeBtn {
align-items: center;
background-image: linear-gradient(
144deg,
#af40ff,
#5b42f3 50%,
#00ddeb
);
border: 0;
border-radius: 8px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
box-sizing: border-box;
color: #ffffff;
display: flex;
font-family: Phantomsans, sans-serif;
justify-content: center;
line-height: 0.8em;
max-width: 100%;
min-width: 110px;
padding: 3px;
text-decoration: none;
cursor: pointer;
}
.navigation .homeDiv #homeBtn:active,
.navigation .homeDiv #homeBtn:hover {
outline: 0;
}
.navigation .homeDiv #homeBtn a {
background-color: rgb(5, 6, 45);
color: #fff;
font-size: 16px;
padding: 16px 24px;
border-radius: 6px;
width: 100%;
height: 100%;
transition: 300ms;
text-decoration: none;
}
/* Hamburger menu button */
.hamburger-menu {
display: flex;
align-items: center;
}
.hamburger-menu.open {
display: flex;
position: relative;
}
.hamburger-btn {
font-size: 1.5rem;
color: #fff;
background: none;
border: none;
cursor: pointer;
}
/* Hidden items (hamburger menu), initially hidden */
.hamburger-menu .hidden-items {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
right: 0;
background-color: #333;
padding: 10px;
border-radius: 10px;
z-index: 1;
}
/* Show hidden items when menu is open */
.hamburger-menu.open .hidden-items {
display: flex;
}
.navigation .homeDiv #homeBtn:hover a {
background: none;
}
.navigation .navbar.visible-items{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center; /* Center the items */
align-items: center;
}
.navigation .navbar a {
color: #fff;
text-decoration: none;
margin: 0 5px;
font-size: 16px;
font-weight: 500;
transition: ease-in 0.3s;
border: 2px solid #fff;
padding: 10px 15px;
border-radius: 20px;
}
.navigation .navbar a:hover {
color: rgb(250, 219, 153);
border: 2px solid rgb(250, 219, 153);
}
#active {
color: rgb(250, 219, 153);
border: 2px solid rgb(250, 219, 153);
}
.searchInput {
box-sizing: border-box;
width: 280px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
}
.searchInput:focus {
outline: 0;
}
.searchForm button {
padding: 0;
border: 0;
background-color: transparent;
position: relative;
top: 2px;
right: 55px;
}
.searchForm button i {
color: #555;
padding: 9px 15px;
font-size: 16px;
cursor: pointer;
transition: linear 0.16s;
}
.searchForm button i:hover {
color: #23d1c8;
}
footer {
background-color: #1c3d5a;
color: #ffffff;
padding: 40px 0; /* Increased padding for more space */
font-family: 'Poppins', sans-serif;
position: relative;
width: 100%;
}
.footer-content {
display: flex;
justify-content: space-between; /* Spread items evenly across the footer */
align-items: flex-start;
flex-wrap: wrap; /* Ensure responsiveness */
padding: 0 50px;
max-width: 1200px; /* Limit max width to keep it centered */
margin: 0 auto;
}
.footer-section {
flex: 1;
margin: 20px; /* Add margin for spacing between sections */
min-width: 220px; /* Minimum width for smaller screens */
}
.footer-section h3 {
font-size: 24px; /* Increased the heading size */
margin-bottom: 15px;
color: #f0c43f; /* Gold color */
}
/* Quick Links Styling */
.footer-links {
list-style-type: none;
padding: 0;
}
.footer-links li {
margin-bottom: 12px; /* Spacing between links */
}
.footer-links a {
text-decoration: none;
color: #ffffff;
font-size: 18px; /* Increased font size for better readability */
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #fce4a6; /* Lighter gold on hover */
}
/* Faith Statement Section */
.statement .faith-statement {
line-height: 1.6;
margin-bottom: 10px;
color: #fff;
max-height: 70px;
overflow: hidden;
text-overflow: ellipsis;
transition: max-height 0.3s ease-in-out;
}
.read-more {
color: #f4d35e;
cursor: pointer;
text-decoration: underline;
}
/* Social Icons Styling */
.social-icons {
display: flex;
}
.social-icons a {
color: #ffffff;
font-size: 26px; /* Increased icon size */
margin-right: 15px; /* Spacing between icons */
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #f0c43f;
}
/* Footer Bottom Section */
.creatorDiv {
text-align: center;
margin-top: 30px;
font-size: 14px;
padding: 10px;
border-top: 1px solid #ffffff44; /* Subtle border for separation */
}
.creatorDiv p {
margin: 0;
}
.caption {
margin-top: 35px;
margin-bottom: 25px;
text-align: center;
font-weight: 600;
font-size: 30px;
font-style: italic;
color: #e67e22;
font-family: 'Playfair Display', serif;
text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
letter-spacing: 2px;
line-height: 1.5;
transition: all 0.3s ease;
}
.caption:hover {
color: #d35400;
transform: scale(1.05);
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
#icon {
margin-top: -30px;
margin-right: -20px;
}
.caption::selection {
background-color: rgb(237, 204, 133);
color: #000;
}
/* Responsive Styles */
@media (max-width: 1280px){
.navigation .navbar a{
font-size: 14px;
}
}
@media (max-width: 390px) {
.navigation .navbar.visible-items{
margin-left: -50px;
}
.navigation .navbar a {
font-size: 0.4rem;
padding: 10px;
}
.hamburger-btn {
margin-top: -40px;
margin-left: 345px;
}
#icon {
margin-top: 78px;
}
}
@media (max-width: 668px) {
.galleryMain {
position: unset;
}
h1 {
font-size: 22px;
}
.image-card {
width: 280px;
height: 300px;
margin: 0;
}
.caption {
margin-top: 20px;
margin-bottom: 15px;
font-size: 14px;
}
.image-card img {
width: 100%;
height: 300px;
}
.lightbox {
top: 0;
left: -20px;
}
.close-btn {
top: 40px;
right: 40px;
}
.navigation {
display: flex;
flex-direction: column;
align-items: center;
}
.navbar .navbar-up {
display: flex;
flex-direction: column;
}
.navigation .navbar.visible-items {
display: flex;
margin-top: 20px;
}
.navigation .navbar a {
margin: 0;
font-size: 12px;
}
.navigation .homeDiv #homeBtn {
min-width: 80px;
}
.navigation .homeDiv #homeBtn a {
font-size: 14px;
}
.searchForm button {
top: -34px;
right: -10px;
}
.searchForm {
margin-top: 10px;
margin-bottom: -35px;
display: contents;
}
.searchForm button i {
margin-left: 15rem;
}
.searchInput {
box-sizing: border-box;
width: 280px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
font-size: 12px;
}
.footer-content {
flex-direction: column;
align-items: center;
}
.footer-section p {
font-size: 14px;
}
.social-icons a i {
font-size: 22px;
margin: 5px;
}
.footer-section {
margin-bottom: 0;
}
.creatorDiv {
margin-top: 20px;
margin-right: 30px;
}
.creatorDiv p {
font-size: 12px;
}
}
#icon{
width: 30px;
cursor: pointer;
position: absolute;
right: 50px;
top: 50px;
}
:root{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/quotes-bg.jpg);
--primary-color: linear-gradient(to right, #30cfd0 20%, #330867 100%);
}
.dark-theme{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
--primary-color: #ab9353;
}
</style>
</head>
<body>
<button id="scrollTopBtn" class="scroll-top-btn">
<i class="fas fa-arrow-up"></i>
</button>
<div class="galleryMain">
<div class="navigation">
<div class="homeDiv">
<button id="homeBtn"><a href="./index.html">Home</a></button>
</div>
<!-- Visible items on the home page -->
<div class="navbar visible-items">
<a href="scriptures.html">Scriptures</a>
<a href="gallery.html" id="active">Gallery</a>
<a href="avatars.html">Avatars</a>
<a href="devotional-resources.html">Devotional Resources</a>
<a href="prasadam.html">Prasadam Section</a>
<img src="images/moon.png" id="icon" />
</div>
<!-- Hamburger Menu Button -->
<div class="hamburger-menu">
<button class="hamburger-btn">☰</button>
<div class="navbar hidden-items">
<a href="quiz.html">Quiz</a>
<a href="DIgital.html">Digital Resources</a>
<a href="Personalized.html">ToDoList</a>
<a href="Feedback.html">Feedbackform</a>
<a href="partner.html">Partner</a>
<a href="#" onclick="showLoginForm()">Discussion Forum</a>
</div>
</div>
<form class="searchForm">
<input
type="text"
class="searchInput"
placeholder="Search all the content"
/>
<button><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
</div>
</div>
<div class="content">
<h1>Gallery - Shree Krishna</h1>
<div class="image-container">
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img1.jpg')"
>
<img src="./images/krishna-img1.jpg" alt="Shree Krishna Image 1" />
</div>
<div class="caption">Shree Krishna</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img9.jpg')"
>
<img src="./images/krishna-img9.jpg" alt="Shree Krishna Image 2" />
</div>
<div class="caption">Shree Radhavallabh Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img10.jpg')"
>
<img src="./images/krishna-img10.jpg" alt="Shree Krishna Image 3" />
</div>
<div class="caption">Shree Radha Raman Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img4.jpg')"
>
<img src="./images/krishna-img4.jpg" alt="Shree Krishna Image 4" />
</div>
<div class="caption">Shree Banke Bihari Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img5.jpg')"
>
<img src="./images/krishna-img5.jpg" alt="Shree Krishna Image 5" />
</div>
<div class="caption">Shree Govind Dev Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img6.jpg')"
>
<img src="./images/krishna-img6.jpg" alt="Shree Krishna Image 6" />
</div>
<div class="caption">Shree Radha Krishna Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img7.jpg')"
>
<img src="./images/krishna-img7.jpg" alt="Shree Krishna Image 7" />
</div>
<div class="caption">Shree Yugal Kishor Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img8.jpg')"
>
<img src="./images/krishna-img8.jpg" alt="Shree Krishna Image 8" />
</div>
<div class="caption">Shree Panduranga Vitthal Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img11.jpg')"
>
<img
src="./images/krishna-img11.jpg"
alt="Shree Krishna Image 11"
/>
</div>
<div class="caption">Shree Nath Ji</div>
</div>
<div>
<div
class="image-card"
onclick="openLightbox('./images/krishna-img12.jpg')"
>
<img
src="./images/krishna-img12.jpg"
alt="Shree Krishna Image 12"
/>
</div>
<div class="caption">Shree Dwarkadhish Ji</div>
</div>
</div>
<!-- Lightbox Container -->
<div class="lightbox" onclick="closeLightbox()">
<span class="close-btn">×</span>
<img id="lightbox-img" src="" alt="Lightbox Image" />
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-section statement ">
<h3>Statement on Faith </h3>
<p class="faith-statement">
Faith isn't just about something we believe; it is integral to our very existence, it's about how we live...
</p>
<a href="devotional-resources.html" class="read-more">Read More</a>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="scriptures.html">Scriptures</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="#" onclick="showLoginForm()">Discussion Forum</a></li>
<li><a href="devotional-resources.html">Devotional Resources</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: +1 234 567 890</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://github.com/vishal02527" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://codepen.io/Vishal-Kumar25" target="_blank"
><i class="fa-brands fa-codepen"></i
></a>
<a
href="https://www.linkedin.com/in/vishal-kumar-8303a3283"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
</div>
</div>
</div>
<div class="creatorDiv">
<p>© All rights reserved <span id="cyear"></span>, Created by Vishal.</p>
</div>
</footer>
<script>
window.addEventListener('load',()=> {
const year= document.getElementById('cyear');
year.innerHTML=new Date().getFullYear();
});
</script>
<!-- Chatbot code added here -->
<a href="chatbot.html">
<div class="fixed bottom-0 right-2 chatbot-container">
<button class="chatbot-button group">
<img class="h-20" src="panditji.png" alt="chatbot" />
<span class="tooltip-text">
Radhe Radhe🙏<br />
How can I help You?🌸
</span>
</button>
</div>
</a>
<script src="script.js"></script>
<script>
var icon=document.getElementById("icon");
icon.onclick = function() {
document.body.classList.toggle("dark-theme");
if(document.body.classList.contains("dark-theme")){
icon.src="images/sun.png";
}
else{
icon.src="images/moon.png";
}
}
window.onscroll = function () {
toggleScrollTopButton();
};
const scrollTopBtn = document.getElementById("scrollTopBtn");
function toggleScrollTopButton() {
if (
document.body.scrollTop > 100 ||
document.documentElement.scrollTop > 100
) {
scrollTopBtn.style.display = "block"; // Show button after scrolling down
} else {
scrollTopBtn.style.display = "none"; // Hide button when at the top
}
}
scrollTopBtn.onclick = function () {
window.scrollTo({ top: 0, behavior: "smooth" }); // Smooth scroll to top
};
</script>
<script>
document.querySelector('.hamburger-btn').addEventListener('click', function() {
document.querySelector('.hamburger-menu').classList.toggle('open');
});
</script>
</body>
</html>