forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
our-vision.html
1058 lines (930 loc) · 32 KB
/
our-vision.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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Our Vision - SwapReads</title>
<link rel="stylesheet" href="./assets/css/playNow.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet">
<style>
/* General Styles */
body {
background-color: #fff;
color: #333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center; /* Centering content */
}
.hero {
padding-block-start: calc(var(--section-padding) + 60px);
text-align: center;
background-color: #ffe5e5; /* Light pink background */
width: 100%; /* Full width */
}
a {
color: inherit;
padding: 0;
margin: 0;
border: none;
background: none;
}
/* Import a font from Google Fonts for a stylish look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
}
.header {
width: 90%; /* Set a width to make it look like a centered rectangle */
max-width: 1200px;
background-color: #ffffff; /* White background */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
margin: 0 auto; /* Center header */
z-index: 10;
border-radius: 10px;
margin-top: 15px;
}
.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
color: #000000; /* Black text color */
font-weight: bold;
margin-top: 30px;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px; /* Reduced spacing for a thinner look */
max-height: 80px;
}
.navbar-list {
display: flex;
list-style: none;
align-items: center;
}
.navbar-item {
position: relative;
}
.navbar-link {
color: #000000; /* Black text */
text-decoration: none;
font-size: 17px; /* Slightly smaller font */
position: relative;
transition: color 0.3s ease;
font-weight: normal; /* Remove bold font */
margin: 0 10px;
}
.navbar-link {
position: relative; /* Ensure the link has a position for the absolute positioning of the pseudo-element */
}
.navbar-link:hover {
color: #a52644; /* Dark pink on hover */
}
.navbar-link::after {
content: "";
position: absolute;
bottom: -5px; /* Adjust this value to create a gap */
left: 0px;
height: 3px;
background-color: #fcb0b480;
width: 0;
box-shadow: 0 0 10px #f39d127e;
transition: all 0.6s;
text-decoration: none;
}
.navbar-link:hover::after {
width: 100%;
text-decoration: none;
}
/* Base styling for the hamburger icon */
.hamburger {
display: none;
flex-direction: column;
gap: 4px;
cursor: pointer;
background: none;
border: none;
padding: 0;
z-index: 1001;
}
.hamburger span {
display: block;
width: 30px;
height: 4px;
background-color: #333;
transition: transform 0.3s ease;
}
/* Responsive styling */
@media (max-width: 1000px) {
/* Hide the navbar by default on small screens */
.navbar {
display: none;
position: absolute;
top: 70px; /* Matches header height for below-header dropdown */
left: 0;
width: 100%;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
max-height: initial;
}
.header{
width: 100%;
}
.navbar.active {
display: block;
}
/* Hamburger icon visible only on smaller screens */
.hamburger {
display: flex;
margin-top: 20px;
margin-bottom: 20px;
}
/* Center-align navbar links in mobile view */
.navbar ul.navbar-list {
flex-direction: column;
text-align: center;
}
/* Adjusted theme switcher styling for mobile */
.switch-container {
margin: 0 auto;
padding-top: 1rem;
}
}
/* Container for the switch */
.switch-container {
display: flex;
align-items: center;
position: relative;
}
/* Hide default checkbox */
.switch-checkbox {
display: none;
}
/* Style the label */
.switch-label {
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
width: 50px;
height: 24px;
border-radius: 50px;
background-color: #ccc;
transition: background-color 0.3s ease;
position: relative;
}
/* Style the toggle button */
.switch-button {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0 5px;
position: absolute; /* Fixes the position */
left: 0; /* Keeps the button fixed */
}
/* Sun and moon icon styles */
.sun-icon,
.moon-icon {
font-size: 16px;
transition: opacity 0.3s ease;
}
/* Color the icons */
.sun-icon {
color: orange; /* Sun icon color */
}
.moon-icon {
color: lightblue; /* Moon icon color */
opacity: 0; /* Initially hidden */
}
/* Style for checked state */
.switch-checkbox:checked + .switch-label {
background-color: #333;
}
.switch-checkbox:checked + .switch-label .sun-icon {
opacity: 0; /* Hide sun icon in dark mode */
}
.switch-checkbox:checked + .switch-label .moon-icon {
opacity: 1; /* Show moon icon in dark mode */
}
body.dark-mode {
background-color: #121212;
color: #ffffff;
background-image: url('./assets/images/darkmode_bg.png'); /* Add your dark mode image */
background-size: cover; /* Ensures the image covers the entire background */
background-position: center; /* Centers the background image */
background-repeat: no-repeat; /* Prevents the image from repeating */
}
.finput{
padding: 15px;
border-radius: 5px;
}
.work-sans {
font-family: 'Work Sans', sans-serif;
}
#menu-toggle:checked+#menu {
display: block;
}
.hover\:grow {
transition: all 0.3s;
transform: scale(1);
}
.hover\:grow:hover {
transform: scale(1.02);
}
#chaps {
margin-top: 150px;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #ffdcd4;
color: black;
transition: background-color 0.3s, color 0.3s;
}
.main {
padding: 2rem;
max-width: 800px;
margin: 2rem auto;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
border-radius: 8px;
margin-top: 100px;
transition: box-shadow 0.3s ease;
}
.main h1 {
text-align: center;
font-size: 30px;
font-weight: 600;
color: #ff5f4b;
margin-bottom: 50px;
margin-top: 10px;
}
.main p {
margin: 10px 2px;
}
.un-list {
list-style-type: none;
}
.un-list li {
margin: 9px 2px;
padding: 0.5rem;
}
.un-list li a {
color: #ff5f4b;
display: inline;
}
.un-list li a:hover {
color: #e6482e;
}
/* Dark Mode Styles */
.dark-mode .header.scrolled {
background-color: #232222;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
body.dark-mode {
background-color: #121212;
color: #ffffff;
}
body.dark-mode .main {
box-shadow: 0 0 20px hsl(0deg 100% 80.49%);
}
body.dark-mode .readmore-anim {
font-size: 18px;
color: hsl(357, 37%, 62%);
}
body.dark-mode .readmore-anim:hover {
color: red;
letter-spacing: 1px;
transition: letter-spacing 0.2s ease-in-out;
}
/* Vision Section */
.main h2 {
margin-top: 30px;
font-size: 24px;
font-weight: bold;
}
.problem-list, .solution-list {
list-style-type: none;
padding: 0;
}
.problem-list li, .solution-list li {
margin: 10px 0;
padding: 10px;
background-color: #fef1ec;
border-radius: 8px;
transition: background-color 0.3s ease;
}
.problem-list li:hover, .solution-list li:hover {
background-color: #ffddd4;
}
.video-container {
margin-top: 30px;
text-align: center;
}
.video-container iframe {
max-width: 100%;
border-radius: 8px;
}
/* Improved li styling */
.un-list li,
.problem-list li,
.solution-list li {
margin: 12px 0;
padding: 10px;
background-color: #ffe4dc;
border-left: 4px solid #ff5f4b;
border-radius: 5px;
font-size: 18px;
transition: background-color 0.3s, color 0.3s;
line-height: 1.7;
}
.un-list li a {
color: #ff5f4b;
font-weight: 600;
}
.un-list li a:hover {
color: #e6482e;
}
.problem-list li strong,
.solution-list li strong {
font-weight: bold;
color: #d1483a;
}
/* Dark Mode Adjustments */
body.dark-mode .un-list li,
body.dark-mode .problem-list li,
body.dark-mode .solution-list li {
background-color: #2b2b2b;
color: #dddddd;
border-left: 4px solid hsl(357, 37%, 62%);
}
body.dark-mode .un-list li a {
color: hsl(357, 37%, 62%);
}
body.dark-mode .un-list li a:hover {
color: red;
}
body.dark-mode .problem-list li strong,
body.dark-mode .solution-list li strong {
color: hsl(357, 37%, 62%);
}
/* Additional Dark Mode Styling */
body.dark-mode {
background-color: #121212;
color: #ffffff;
}
body.dark-mode .main {
box-shadow: 0 0 20px hsl(0deg 100% 80%);
}
.dark-mode .switch-container {
top:2px
}
.light-mode .switch-container {
top:2px
}
</style>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
.cursor {
position: absolute;
width: 6px;
/* Circle size */
height: 6px;
/* Circle size */
background-color: rgba(255, 165, 0, 0.6);
/* Orange color */
border-radius: 10%;
/* Circular shape */
pointer-events: none;
/* Prevent interaction */
transform: translate(-10%, -10%);
/* Center the circle */
transition: transform 0.1s ease-out;
/* Smooth movement */
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<header class="header header-anim nav-h" data-header>
<div class="container mobile-container-styles">
<button class="hamburger" id="hamburger-button" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
<nav class="navbar nav_activated" data-navbar>
<ul class="navbar-list nav" style="margin-right: 10px;">
<a href="index.html" class="logo" style="display:flex;">
<img src="./assets/images/final.png" class="logopic" style=" width: 10rem; height:100px; margin:0px 0px 15px -10px;">
</a>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html" class="navbar-link" data-nav-link>
<i class="ri-home-fill"></i> Home
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="./assets/html/about.html" class="navbar-link" data-nav-link>
<i class="ri-information-fill"></i> About Us
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#benefits" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Benefits</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#genre" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Genre</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="audiobook.html" class="navbar-link" data-nav-link>
<i class="ri-questionnaire-fill"></i> Audio Books
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#contact" class="navbar-link" data-nav-link>
<i class="ri-contacts-fill"></i> Contact
</a>
</li>
<li class="navbar-item" id="login-signup-link" style="margin-right: 10px;">
<a href="./assets/html/login.html" class="navbar-link">
<i class="ri-login-box-fill"></i> Login/Signup
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="comsp.html" class="navbar-link" data-nav-link>
<i class="ri-book-fill"></i> Community
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="./assets/html/event.html" class="navbar-link" data-nav-link>
<i class="ri-community-fill"></i> Events
</a>
</li>
<!-- Theme switcher -->
<div class="switch-container">
<input type="checkbox" id="switch" class="switch-checkbox">
<label for="switch" class="switch-label">
<div class="switch-button">
<span class="material-icons sun-icon">wb_sunny</span>
<span class="material-icons moon-icon">brightness_2</span>
</div>
</label>
</div>
<script>
// Theme switcher
document.addEventListener('DOMContentLoaded', function () {
const toggleSwitch = document.querySelector('.switch-container input[type="checkbox"]');
const bodyElement = document.body;
const currentTheme = localStorage.getItem('theme') || 'light';
if (currentTheme === 'dark') {
bodyElement.classList.add('dark-mode');
toggleSwitch.checked = true;
} else {
bodyElement.classList.add('light-mode');
}
toggleSwitch.addEventListener('change', function (event) {
if (event.target.checked) {
bodyElement.classList.remove('light-mode');
bodyElement.classList.add('dark-mode');
localStorage.setItem('theme', 'dark');
} else {
bodyElement.classList.remove('dark-mode');
bodyElement.classList.add('light-mode');
localStorage.setItem('theme', 'light');
}
});
});
// Hamburger toggle
document.getElementById('hamburger-button').addEventListener('click', function() {
document.querySelector('.navbar').classList.toggle('active');
});
// Coordinates for the cursor
const coords = {x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.15;
y += (nextCircle.y - y) * 0.15;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
function scrollToGenre(genreId) {
const element = document.getElementById(genreId);
if (element) {
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
</script>
</header>
<main class="main">
<section id="our-vision">
<h1>Our Vision</h1>
<p class="vision-description">
At SwapReads, we envision a world where every book lover can access the stories they crave, without barriers. Our mission is to redefine how readers engage with books, offering a smarter, more sustainable, and deeply connected reading experience. Here’s how we plan to achieve this:
</p>
<h2>The Challenges We Address</h2>
<ul class="problem-list">
<li><strong>Limited Book Access:</strong> Many readers struggle to find a diverse selection of books in their local bookstores or libraries, limiting their reading choices.</li>
<li><strong>High Costs and Environmental Impact:</strong> Purchasing new books can be expensive, and traditional book production has a significant carbon footprint.</li>
<li><strong>Generic Recommendations:</strong> Automated book suggestions often fail to capture a reader’s unique tastes, offering generic recommendations that lack a personal touch.</li>
<li><strong>Isolation in Reading:</strong> Reading has become a solitary activity, with few opportunities for readers to connect, share insights, and build a community.</li>
<li><strong>Idle Book Collections:</strong> Many readers own books that sit unused on shelves after being read, missing opportunities to bring joy to new readers.</li>
</ul>
<h2>Our Solution: The SwapReads Advantage</h2>
<ul class="solution-list">
<li><strong>Seamless Book Exchange:</strong> SwapReads connects book lovers, allowing them to easily swap books they’ve finished reading for new ones they want to explore.</li>
<li><strong>Personalized Recommendations:</strong> Using advanced algorithms and user insights, we offer book recommendations tailored to each reader’s preferences and past reads.</li>
<li><strong>Environmental and Budget-Friendly:</strong> By encouraging book swaps and re-use, we reduce waste and make reading more affordable for everyone.</li>
<li><strong>Community Building:</strong> SwapReads fosters a global community of readers who share books, reviews, and discussions, making reading a social experience once again.</li>
<li><strong>Dynamic Literary Discoveries:</strong> With our unique swap system, readers can discover hidden literary gems and genres they might not have explored otherwise.</li>
</ul>
</section>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/I2JaNUsPCc0" frameborder="0" allowfullscreen></iframe>
</div>
</main>
</body>
</html>
<footer class="ff">
<div class="foot-top">
<div class="foot-left">
<div class="desc">
<div class="SwapReads"><a href="#" class="logo">SwapReads</a></div>
<div>
<p class="description">
SwapReads.com is the ultimate destination for book lovers seeking to swap and discover new literary gems.
Connect with fellow enthusiasts, exchange your favorite reads, and embark on exciting new adventures in
the world of literature—all on one convenient platform. Join us and dive into a universe of endless possibilities!
</p>
</div>
</div>
</div>
<div class="foot-middle">
<h2 style="margin-left: 2rem; margin-top: 2.75rem;">Quick Links</h2>
<div id="quicklinks" style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem;">
<div>
<ul style="list-style: none; padding: 0;">
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-home" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#home" style="color: #374151; text-decoration: none;">Home</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-book" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#benefits" style="color: #374151; text-decoration: none;">Benefits</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-globe" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#chapters" style="color: #374151; text-decoration: none;">Literary</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-dollar-sign" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#pricing" style="color: #374151; text-decoration: none;">Pricing</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-bookmark" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/bookrecommend.html" style="color: #374151; text-decoration: none;">Recommend</a>
</li>
</ul>
</div>
<div>
<ul style="list-style: none; padding: 0;">
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-exchange-alt" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/booklistswap.html" style="color: #374151; text-decoration: none;">Swap</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-file-pdf" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/freeBooks.html" style="color: #374151; text-decoration: none;">E-Book</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-info-circle" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/about.html" style="color: #374151; text-decoration: none;">About</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-envelope" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#contact" style="color: #374151; text-decoration: none;">Contact</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-question-circle" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#faqq" style="color: #374151; text-decoration: none;">FAQ</a>
</li>
</ul>
</div>
</div>
</div>
<script>
function showConfirmationMessage() {
const form = document.getElementById('newsform');
const confirmationMessage = document.getElementById('confirmationmessage');
confirmationMessage.style.display = 'block';
setTimeout(function() {
location.reload();
}, 3000);
}
</script>
<style>
.subscribe {
background-color: #A30F17;
color: white;
border: none;
padding: 1rem 2rem;
font-size: 1.6rem;
font-family: Arial, sans-serif;
border-radius: 0.5rem;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
}
.subscribe:hover {
background: linear-gradient(hwb(357 6% 36%), #d26d6d);
transform: scale(1.1);
}
.subscribe:active {
transform: scale(0.98);
}
.subscribe:focus {
outline: none;
}
</style>
<div class="foot-right">
<h2 style="margin-bottom: 2.4rem; margin-top:0.5rem;">Stay Connected</h2>
<form id="newsform" onsubmit="return showConfirmationMessage();">
<label for="new-email" class="news-form">Subscribe to our Newsletter</label>
<div class="row-flex display-flex">
<input class="finput" type="email" id="new-email" name="email" placeholder="Email address"
pattern="[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}\.com$"
title="Please enter a valid email address that ends with '.com'" required>
<input type="submit" value="Subscribe" name="subscribe" class="subscribe" id="subs">
</div>
</form>
<div id="confirmationmessage" style="display: none;">Thank you for subscribing!</div>
</div>
</div>
</div>
<!-- adding privacy policy and copyright popup-->
<div class="footer-f" style="text-align: center; align-items: center;">
<p style="text-align: center">
©
<script>document.write(new Date().getFullYear())</script> All Rights Reserved. Made with ❤ by Guardian Hackers.
</p>
<div class="row-copy">
<a href="copyrightpolicy.html" id="copyrightPolicyLink">Copyright Policy</a> |
<a href="privacynotice.html" id="privacyNoticeLink">Privacy Notice</a> |
<a href="our-vision.html" id="ourvisionLink">Our Vision</a></li>
</div>
</div>
<style>
#copyrightPolicyLink:hover{
color: rgb(126, 0, 21);
transition: 0.5s ease;
}
#privacyNoticeLink:hover{
color: rgb(126, 0, 21);
transition: 0.5s ease;
}
#ourvisionLink:hover{
color: rgb(126, 0, 21);
transition: 0.5s ease;
}
</style>
</footer>
<div>
<button id="translateButton">Translate</button>
</div>
<style>
/* Fixed translate button */
#translateButton {
position: fixed;
/* bottom: 20px; */
top:-15rem;
right: 4.4rem;
z-index: 1000;
width: 53px;
height: 53px;
border-radius: 50%;
border: none;
background:linear-gradient(hwb(357 6% 36%),#d26d6d);
color: white;
text-align: center;
display: inline-block;
font-size: 16px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
line-height: 1;
text-align: center;
white-space: nowrap;
transition: transform 0.3s ease;
margin-top: 75.8vh;
margin-right:opx;
}
#translateButton:hover {
transform: scale(1.2);
}
/* The popup modal */
.popup {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
/* Popup content */
.popup-content {
background:linear-gradient(hwb(357 6% 36%),#d26d6d);
margin-top: 600px;
padding: 20px;
border: 1px solid #888;
width: 300px;
border-radius: 10px;
position: relative;
margin-left: 1160px;
/* margin-right: 0px; */
}
/* Close button */
.close {
color: #073725;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
}
/* Hide the default Google Translate widget */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
display: none !important;
}
body {
top: 0px !important;
}
/* Hide the "Powered by Google" branding */
.goog-logo-link {
display: none !important;
}
.goog-te-gadget {
height: 28px !important;
overflow: hidden;
}
/* Hide Google Translate notifications */
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-balloon-frame,
.goog-te-banner-frame,
.goog-te-banner,
.goog-te-balloon {
display: none !important;
}
/* Custom styles for the Google Translate dropdown */
#google_translate_element select {
background: #ffffff;
border: 1px solid #ccc;
color: #d26d6d;