-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
777 lines (623 loc) · 13.3 KB
/
styles.css
File metadata and controls
777 lines (623 loc) · 13.3 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
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
/* Custom styles to complement DaisyUI and Tailwind */
/* Theme transition */
* {
@apply transition-colors duration-300;
}
/* Section styling */
section {
@apply relative py-20;
}
section::before {
content: '';
@apply absolute inset-0 bg-gradient-to-b from-base-200/50 to-transparent opacity-50;
z-index: 0;
}
section > * {
@apply relative z-10;
}
/* Alternating section backgrounds */
section:nth-child(odd) {
@apply bg-base-100;
}
section:nth-child(even) {
@apply bg-base-200;
}
/* Section headers */
section h2 {
@apply text-4xl font-bold text-center mb-12 relative;
}
section h2::after {
content: '';
@apply absolute bottom-0 left-1/2 transform -translate-x-1/2 w-24 h-1 bg-primary rounded-full mt-4;
}
/* Card styling */
.card {
@apply backdrop-blur-sm bg-opacity-90 border border-base-300;
}
.card-body {
@apply p-6;
}
.card-title {
@apply text-xl font-semibold mb-2;
}
/* Feature cards */
#features .card {
@apply hover:shadow-xl transition-all duration-300;
}
#features .material-symbols-rounded {
@apply text-4xl text-primary mb-4;
}
/* Pricing section */
#pricing .card {
@apply max-w-3xl mx-auto;
}
#pricing .divider {
@apply my-6;
}
/* App preview carousel */
.carousel {
@apply relative w-full max-w-4xl mx-auto;
}
.carousel-item {
@apply relative w-full h-[600px] rounded-xl overflow-hidden;
}
.carousel-item img,
.carousel-item video {
@apply w-full h-full object-cover;
}
.carousel-controls {
@apply absolute bottom-4 left-1/2 transform -translate-x-1/2 flex gap-2;
}
.carousel-controls button {
@apply btn btn-circle btn-sm bg-base-100/80 hover:bg-base-100;
}
.carousel-indicators {
@apply absolute bottom-4 left-1/2 transform -translate-x-1/2 flex gap-2;
}
.carousel-indicator {
@apply w-2 h-2 rounded-full bg-base-100/80 hover:bg-base-100 cursor-pointer;
}
.carousel-indicator.active {
@apply bg-primary;
}
/* Team section */
#team .card {
@apply hover:shadow-xl transition-all duration-300;
}
#team .avatar {
@apply relative;
}
#team .avatar > div {
@apply transition-all duration-300;
}
#team .card:hover .avatar > div {
@apply bg-primary/20 transform scale-105;
}
#team img {
@apply transition-all duration-300;
}
#team .card:hover img {
@apply transform scale-110;
}
/* Dark mode specific team styles */
[data-theme='dark'] #team .avatar > div {
@apply bg-primary/5;
}
[data-theme='dark'] #team .card:hover .avatar > div {
@apply bg-primary/30;
}
/* Contact section */
#contact .card {
@apply max-w-2xl mx-auto;
}
/* Navigation */
.navbar {
@apply px-4 backdrop-blur-md bg-opacity-90 sticky top-0 z-50;
}
.navbar-center {
@apply flex justify-center items-center;
}
.navbar-center .btn-ghost {
@apply hover:bg-transparent;
}
.navbar-center .btn-ghost img {
@apply h-8 transition-transform duration-300;
}
.navbar-center .btn-ghost:hover img {
@apply scale-110;
}
.navbar-center .menu {
@apply gap-1 ml-4;
}
.navbar-center .menu li a {
@apply px-3 py-2 rounded-lg hover:bg-base-200 dark:hover:bg-base-300 transition-colors;
}
/* Mobile Menu Styles */
@media (max-width: 1024px) {
.navbar {
@apply py-2;
}
.navbar-center {
@apply justify-center;
}
.navbar-center .btn-ghost {
@apply px-2;
}
/* Burger Menu Styles */
.dropdown .btn-ghost {
@apply hover:bg-base-200 dark:hover:bg-base-300;
}
.dropdown .material-symbols-rounded {
@apply text-2xl;
}
.dropdown-content {
@apply mt-2;
}
.dropdown-content .menu {
@apply bg-base-100 dark:bg-base-200 shadow-lg rounded-box;
}
.dropdown-content .menu li a {
@apply px-4 py-3 hover:bg-base-200 dark:hover:bg-base-300;
}
.dropdown-content .menu li a .material-symbols-rounded {
@apply text-xl;
}
/* Adjust hero section padding for mobile navbar */
.hero {
@apply pt-24;
}
}
/* Desktop Menu Styles */
@media (min-width: 1024px) {
.navbar {
@apply py-0;
}
.navbar-center {
@apply flex-row;
}
.navbar-center .menu {
@apply flex-row;
}
.navbar-center .menu li a {
@apply justify-center;
}
}
/* Active state for navigation links */
.navbar a.active {
@apply text-primary font-semibold bg-base-200 dark:bg-base-300;
}
/* Smooth transitions */
.navbar a,
.btn {
@apply transition-all duration-300;
}
/* Custom hover effects */
.navbar .btn-ghost:hover {
@apply bg-base-200 dark:bg-base-300;
}
.navbar .btn-primary {
@apply transform transition-all duration-300;
}
.navbar .btn-primary:hover {
@apply -translate-y-1 shadow-lg;
}
/* Logo transition */
.navbar img[alt='SuperWise Logo'] {
@apply transition-opacity duration-300;
}
/* Footer */
.footer {
@apply backdrop-blur-md bg-opacity-90 border-t border-base-300;
}
/* Responsive adjustments */
@media (max-width: 768px) {
section {
@apply py-16;
}
.carousel-item {
@apply h-[400px];
}
#team img {
@apply w-32 h-32;
}
}
/* Custom focus styles */
input:focus,
textarea:focus {
@apply ring-2 ring-primary ring-opacity-50;
}
/* Custom scrollbar */
::-webkit-scrollbar {
@apply w-2;
}
::-webkit-scrollbar-track {
@apply bg-base-200;
}
::-webkit-scrollbar-thumb {
@apply bg-primary rounded-full;
}
/* Mobile menu animations */
.dropdown-content {
@apply transition-all duration-200 ease-out;
transform-origin: top left;
}
.dropdown-content[data-state='open'] {
@apply opacity-100 scale-100;
}
.dropdown-content[data-state='closed'] {
@apply opacity-0 scale-95;
}
/* Hero section background pattern with animation */
.hero {
background-image: radial-gradient(
circle at 1px 1px,
var(--tw-color-base-300) 1px,
transparent 0
),
linear-gradient(
45deg,
rgba(var(--tw-color-primary), 0.05) 25%,
transparent 25%
),
linear-gradient(
-45deg,
rgba(var(--tw-color-primary), 0.05) 25%,
transparent 25%
);
background-size: 40px 40px, 60px 60px, 60px 60px;
animation: backgroundMove 20s linear infinite;
}
@keyframes backgroundMove {
0% {
background-position: 0 0, 0 0, 0 0;
}
100% {
background-position: 40px 40px, 60px 60px, 60px 60px;
}
}
/* Custom section transitions */
section {
@apply transition-all duration-500;
}
/* Team member card hover effects */
.team-card {
@apply transition-all duration-300;
}
.team-card:hover img {
@apply scale-110;
}
.team-card:hover {
@apply shadow-2xl;
}
/* Form input focus effects */
.form-control input:focus,
.form-control textarea:focus {
@apply border-primary;
}
/* Custom button hover effects */
.btn-primary {
@apply transform transition-all duration-300 whitespace-nowrap;
}
.btn-primary:hover {
@apply -translate-y-1 shadow-lg scale-105;
}
.btn-primary.btn-circle {
@apply p-2;
}
.btn-primary.btn-circle .material-symbols-rounded {
@apply text-xl;
}
/* Footer link hover effects */
.footer a:hover {
@apply text-primary transform -translate-y-0.5;
}
/* Responsive typography */
@media (max-width: 640px) {
h1 {
@apply text-4xl;
}
h2 {
@apply text-3xl;
}
h3 {
@apply text-2xl;
}
}
/* Custom loading animation for form submission */
.form-loading {
@apply opacity-50 pointer-events-none;
}
.form-loading::after {
content: '';
@apply absolute inset-0 bg-base-200 opacity-50;
}
/* Custom focus ring for accessibility */
*:focus-visible {
@apply outline-none ring-2 ring-primary ring-offset-2;
}
/* Custom selection color */
::selection {
@apply bg-primary text-primary-content;
}
/* Floating animation for icons */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}
.animate-float {
animation: float 3s ease-in-out infinite;
}
/* Gradient text effect */
.gradient-text {
@apply bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary;
}
/* Card hover effects with gradient border */
.card {
@apply relative;
}
.card::before {
content: '';
@apply absolute inset-0 rounded-xl bg-gradient-to-r from-primary to-secondary opacity-0 transition-opacity duration-300;
z-index: -1;
}
.card:hover::before {
@apply opacity-20;
}
/* Theme toggle button styles */
.swap {
@apply transition-transform duration-300;
}
.swap-rotate {
@apply transition-all duration-300;
}
.swap-rotate.swap-active {
@apply rotate-180;
}
.swap .material-symbols-rounded {
@apply transition-opacity duration-300;
}
.swap .swap-on,
.swap .swap-off {
@apply opacity-0;
}
.swap.swap-active .swap-on,
.swap:not(.swap-active) .swap-off {
@apply opacity-100;
}
/* Dark mode specific styles */
[data-theme='dark'] .hero {
background-image: radial-gradient(
circle at 1px 1px,
var(--tw-color-base-300) 1px,
transparent 0
),
linear-gradient(
45deg,
rgba(var(--tw-color-primary), 0.1) 25%,
transparent 25%
),
linear-gradient(
-45deg,
rgba(var(--tw-color-primary), 0.1) 25%,
transparent 25%
);
}
[data-theme='dark'] .card::before {
@apply opacity-10;
}
[data-theme='dark'] .card:hover::before {
@apply opacity-30;
}
/* Custom checkbox and radio styles */
input[type='checkbox'],
input[type='radio'] {
@apply transition-all duration-200;
}
input[type='checkbox']:checked,
input[type='radio']:checked {
@apply bg-primary border-primary;
}
/* Custom tooltip styles */
[data-tip] {
@apply relative;
}
[data-tip]:before {
content: attr(data-tip);
@apply absolute -top-8 left-1/2 transform -translate-x-1/2 px-2 py-1 bg-base-300 text-base-content rounded text-sm opacity-0 transition-opacity duration-200;
}
[data-tip]:hover:before {
@apply opacity-100;
}
/* Custom badge styles */
.badge {
@apply transition-all duration-200;
}
.badge:hover {
@apply transform scale-110;
}
/* Custom divider with gradient */
.divider {
@apply relative;
}
.divider::before {
content: '';
@apply absolute inset-0 bg-gradient-to-r from-transparent via-primary to-transparent opacity-20;
}
/* Custom link styles */
.link {
@apply transition-all duration-200;
}
.link:hover {
@apply transform -translate-y-0.5;
}
/* Custom image hover effects */
img {
@apply transition-all duration-300;
}
img:hover {
@apply transform scale-105;
}
/* Custom section backgrounds */
.bg-pattern {
background-image: radial-gradient(
circle at 100% 100%,
rgba(var(--tw-color-primary), 0.1) 0%,
transparent 50%
),
radial-gradient(
circle at 0% 0%,
rgba(var(--tw-color-secondary), 0.1) 0%,
transparent 50%
);
}
/* Custom button styles */
.btn {
@apply relative overflow-hidden;
}
.btn::after {
content: '';
@apply absolute inset-0 bg-base-content opacity-0 transition-opacity duration-200;
}
.btn:hover::after {
@apply opacity-10;
}
/* Custom input styles */
.input,
.textarea {
@apply transition-all duration-200;
}
.input:focus,
.textarea:focus {
@apply transform -translate-y-0.5;
}
/* Custom card styles */
.card {
@apply backdrop-blur-sm bg-opacity-90;
}
/* Custom navigation styles */
.navbar {
@apply px-4;
}
.navbar-center {
@apply flex justify-center items-center;
}
.navbar-center .btn-ghost {
@apply hover:bg-transparent p-2;
}
.navbar-center .btn-ghost img {
@apply h-8 w-8 transition-transform duration-300;
}
.navbar-center .btn-ghost:hover img {
@apply scale-110;
}
.navbar-center .menu-horizontal {
@apply gap-1;
}
.navbar-center .menu-horizontal li a {
@apply px-3 py-2 rounded-lg hover:bg-base-200 dark:hover:bg-base-300 transition-colors;
}
/* Scroll Indicator */
.scroll-indicator {
@apply opacity-60 hover:opacity-100 transition-opacity duration-300;
}
.scroll-indicator .material-symbols-rounded {
@apply text-2xl;
}
@keyframes bounce {
0%,
100% {
transform: translateY(0) translateX(-50%);
}
50% {
transform: translateY(-10px) translateX(-50%);
}
}
.animate-bounce {
animation: bounce 2s infinite;
}
/* Section Highlighting */
section[id] {
scroll-margin-top: 5rem;
}
/* Highlight the About section when in About, Features, App Preview, or How it Works sections */
section[id='about'].active,
section[id='features'].active ~ section[id='about'],
section[id='app-preview'].active ~ section[id='about'],
section[id='how-it-works'].active ~ section[id='about'] {
@apply relative;
}
section[id='about'].active::before,
section[id='features'].active ~ section[id='about']::before,
section[id='app-preview'].active ~ section[id='about']::before,
section[id='how-it-works'].active ~ section[id='about']::before {
content: '';
@apply absolute left-0 top-0 w-1 h-full bg-primary;
}
/* Dropdown Menu Styles */
.menu-horizontal details[open] summary {
@apply bg-base-200 dark:bg-base-300;
}
.menu-horizontal details ul {
@apply mt-2 bg-base-100 dark:bg-base-200 shadow-lg rounded-box;
}
.menu-horizontal details ul li a {
@apply whitespace-nowrap hover:bg-base-200 dark:hover:bg-base-300;
}
.menu-sm details[open] summary {
@apply bg-base-200 dark:bg-base-300;
}
.menu-sm details ul {
@apply mt-1;
}
/* Theme Toggle Button Fixes */
.btn-circle .material-symbols-rounded {
@apply flex items-center justify-center w-full h-full text-xl;
}
/* Ensure proper centering for all sections */
.section-content {
@apply mx-auto max-w-7xl;
}
/* Footer Styles */
footer {
@apply relative;
}
footer::before {
content: '';
@apply absolute top-0 left-0 w-full h-1 bg-gradient-to-r from-primary/20 via-primary to-primary/20;
}
footer a {
@apply inline-flex items-center;
}
footer .material-symbols-rounded {
@apply text-lg;
}
footer h3 {
@apply text-base-content/90;
}
footer ul li a {
@apply py-1;
}
footer .bottom-bar {
@apply border-t border-base-300;
}
@media (max-width: 768px) {
footer .grid {
@apply gap-6;
}
footer .col-span-1.lg\:col-span-2 {
@apply text-center;
}
footer .col-span-1.lg\:col-span-2 a {
@apply mx-auto;
}
footer .col-span-1.lg\:col-span-2 p {
@apply mx-auto;
}
}