-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
973 lines (841 loc) · 19.9 KB
/
style.css
File metadata and controls
973 lines (841 loc) · 19.9 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
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
body,
html {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
/* Allow vertical scrolling, prevent horizontal */
background-color: #ffffff;
/* Google white */
/* Google Antigravity style font stack. Tries to use Google Sans if available locally (common on Chrome/Android), otherwise Outfit/Roboto fallback */
font-family: 'Google Sans', 'Google Sans Text', 'Outfit', Roboto, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#particleCanvas {
position: fixed;
/* Fixed so it creates a nice parallax behind scroll items */
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: 1;
pointer-events: none;
/* Let clicks pass through */
}
/* --- Navigation Bar (Google Antigravity Style) --- */
.navbar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 64px;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 0 40px;
box-sizing: border-box;
z-index: 50;
background: transparent;
}
.nav-brand {
display: flex;
align-items: center;
gap: 12px;
margin-right: 48px;
font-weight: 500;
color: #1f1f1f;
font-size: 1.15rem;
/* Google sizing */
letter-spacing: -0.01em;
}
.nav-logo {
height: 32px;
/* Slightly larger, adjusting for the main logo aspect ratio */
width: auto;
}
.mobile-menu-btn {
display: none;
/* Hidden on desktop */
}
.nav-links {
list-style: none;
display: flex;
gap: 32px;
margin: 0;
padding: 0;
}
.nav-links li a {
text-decoration: none;
color: #444746;
font-size: 1rem;
font-weight: 400;
/* Google uses lighter weights for nav typically */
transition: color 0.2s ease;
display: flex;
align-items: center;
gap: 4px;
}
.nav-links li a:hover {
color: #1f1f1f;
}
/* Dropdown */
.dropdown {
/* Removed position: relative to allow children to position relative to navbar */
display: inline-block;
}
.chevron {
width: 16px;
height: 16px;
transition: transform 0.3s ease;
}
.dropdown:hover .chevron {
transform: rotate(180deg);
}
.dropdown-content {
visibility: hidden;
opacity: 0;
position: absolute;
top: 100%;
/* Immediately below the navbar */
left: 0;
width: 100%;
background-color: #ffffff;
box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08);
border-top: 1px solid #f1f3f4;
border-bottom: 1px solid #f1f3f4;
z-index: 60;
/* Smooth, elegant slide down - not too fast */
transform: translateY(-10px);
transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}
.dropdown:hover .dropdown-content {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
.mega-menu-inner {
display: flex;
justify-content: center;
gap: 32px;
padding: 40px 60px;
max-width: 1200px;
margin: 0 auto;
}
.mega-menu-inner.layout-divider {
padding: 24px 32px;
align-items: stretch;
}
.mega-left-col {
display: flex;
flex: 1;
}
.mega-link {
display: flex;
flex-direction: column;
gap: 12px;
padding: 24px 32px;
border-radius: 12px;
text-decoration: none;
transition: background-color 0.3s ease;
flex: 1;
}
.mega-link.mega-compact {
flex-direction: row;
align-items: center;
padding: 12px 16px;
gap: 16px;
}
.mega-link:hover {
background-color: #f8f9fa;
}
.mega-icon-box {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.mega-icon-box svg {
width: 100%;
height: 100%;
}
.mega-content-row {
display: flex;
flex-direction: row;
align-items: baseline;
gap: 12px;
flex-wrap: wrap;
/* allow long descriptions to wrap below title if screen is too narrow */
}
.mega-title {
color: #1f1f1f;
font-size: 1.15rem;
font-weight: 500;
flex-shrink: 0;
}
.mega-desc {
color: #5f6368;
font-size: 0.95rem;
line-height: 1.5;
}
/* Magma Color Utility Classes */
.magma-color-1 {
color: #f7705c !important;
}
.magma-color-2 {
color: #b73779 !important;
}
.magma-color-3 {
color: #3b0f70 !important;
}
.mega-col {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
/* Thin Frame Dividers */
.divider-left {
border-left: 1px solid #f1f3f4;
padding-left: 32px;
}
.divider-horizontal {
height: 1px;
background-color: #f1f3f4;
width: calc(100% - 40px);
margin: 4px auto;
}
@media (max-width: 900px) {
.mega-col {
gap: 12px;
width: 100%;
}
.divider-left {
border-left: none;
padding-left: 0;
border-top: 1px solid #f1f3f4;
padding-top: 16px;
}
.mega-content-row {
flex-direction: column;
gap: 4px;
}
.mega-menu-inner.layout-divider {
padding: 16px 20px;
}
}
/* --- Sections --- */
.hero-section {
position: relative;
width: 100%;
height: 100vh;
z-index: 10;
}
.content {
position: absolute;
top: calc(42% + 50px);
/* Raised 150px from +200px per user request */
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 1200px;
pointer-events: none;
}
.hero-container {
display: flex;
flex-direction: column;
/* Stack vertically! */
align-items: center;
/* Center align */
justify-content: center;
gap: 30px;
}
.logo {
width: 250px;
/* Made smaller per request */
height: auto;
object-fit: contain;
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.03));
animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
opacity: 0;
transform: translateY(20px);
}
.text-content {
display: flex;
flex-direction: column;
align-items: center;
}
h1.typing-container {
font-size: 3.5rem;
/* Made bigger per request */
font-weight: 500;
line-height: 1.2;
margin: 0;
letter-spacing: -0.015em;
text-align: center;
/* Center the text */
min-width: 800px;
/* Increase min width due to larger text */
min-height: 120px;
font-family: 'Google Sans', 'Outfit', sans-serif;
}
/* Transparent Text with Magma Gradient */
.magma-text {
/* Subtle Magma gradient: Mostly dark grey, blending into magma colors at the very end */
background: linear-gradient(110deg, #1f1f1f 0%, #1f1f1f 65%, #3b0f70 80%, #b73779 92%, #f7705c 100%) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
background-clip: text !important;
color: transparent !important;
text-shadow: none;
display: inline;
}
/* --- Blinking Cursor Animation --- */
.cursor {
display: inline-block;
width: 3px;
/* Thin line cursor */
height: 1.1em;
/* Cursor color mostly dark, blending to magma pink/orange at the bottom */
background: linear-gradient(to bottom, #1f1f1f 0%, #1f1f1f 60%, #b73779 85%, #f7705c 100%);
margin-left: 4px;
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
}
/* --- Hero Action Buttons --- */
.hero-buttons {
display: flex;
gap: 16px;
margin-top: 10px;
/* Gives some breathing room after the large hero text */
justify-content: center;
opacity: 0;
pointer-events: auto;
/* Re-enable clicks since parent .content has none */
/* Delay the buttons to fade in strictly AFTER the typing animation completes (~3s) */
animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 3s;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 28px;
width: 180px;
/* Fixed width so both buttons match perfectly */
box-sizing: border-box;
border-radius: 40px;
/* Fully rounded pill shape */
font-size: 1.15rem;
font-family: 'Google Sans', 'Outfit', sans-serif;
font-weight: 500;
text-decoration: none;
transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.btn:active {
transform: scale(0.97);
}
.btn-primary {
/* Dark Magma gradient (purple to red, no orange) with slight transparency */
background: linear-gradient(135deg, rgba(31, 0, 92, 0.85) 0%, rgba(183, 55, 121, 0.85) 100%);
color: #ffffff;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
opacity: 0.9;
}
.btn-secondary {
background-color: rgba(245, 245, 247, 0.7);
color: #111111;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover {
background-color: #ebebed;
}
/* For formatting the inner HTML of the typewriter */
.magma-text br {
display: block;
content: " ";
margin-top: 5px;
}
@keyframes fadeUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
html {
scroll-behavior: smooth;
}
/* --- Added Video Section --- */
.demo-section {
position: relative;
width: 100%;
height: 100vh;
/* Full viewport height */
background-color: #000000;
z-index: 20;
overflow: hidden;
}
/* --- Left Side Dot Navigation --- */
.dot-nav {
position: fixed;
left: 40px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 32px;
z-index: 30;
/* Always above video */
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}
.dot-nav.is-visible {
opacity: 1;
pointer-events: auto;
}
/* --- Demo Video Overlay --- */
.video-overlay-content {
position: absolute;
bottom: 60px;
/* Distance from the bottom of the video section */
left: 50%;
transform: translateX(-50%);
z-index: 10;
opacity: 0;
transition: opacity 0.5s ease 0.3s;
/* Fade in shortly after the section is reached */
pointer-events: none;
}
/* Show the overlay when the video is active */
.demo-section .demo-video.active~.video-overlay-content {
opacity: 1;
pointer-events: auto;
/* Let people click the button */
}
.dot-item {
display: flex;
align-items: center;
gap: 12px;
/* Smoother gap */
cursor: pointer;
opacity: 0.6;
transition: opacity 0.3s ease, transform 0.3s ease;
text-decoration: none;
/* Add this because they are now anchor tags */
}
.dot-item:hover {
opacity: 0.8;
}
.dot-item.active {
opacity: 1;
}
.dot-indicator {
width: 10px;
/* Make smaller */
height: 10px;
border-radius: 50%;
border: 2px solid #ffffff;
/* Keep hollow */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
background-color: transparent;
/* Always transparent inside */
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dot-label {
color: #ffffff;
/* Contrast on video */
font-size: 1rem;
/* Match nav font size */
font-family: 'Google Sans', 'Outfit', sans-serif;
font-weight: 400;
/* Match nav weight */
opacity: 0;
transform: translateX(-10px);
transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
/* Shadow for readability on video */
}
/* Show label when active or hovered */
.dot-item.active .dot-label,
.dot-item:hover .dot-label {
opacity: 1;
transform: translateX(0);
}
/* Magma Gradient Coloring for Active Dots - only change outline and glow, keep hollow */
.dot-item.active.group-1 .dot-indicator {
border-color: #f7705c;
box-shadow: 0 0 15px rgba(247, 112, 92, 0.6);
}
.dot-item.active.group-1 .dot-label {
color: #f7705c;
}
.dot-item.active.group-2 .dot-indicator {
border-color: #b73779;
box-shadow: 0 0 15px rgba(183, 55, 121, 0.6);
}
.dot-item.active.group-2 .dot-label {
color: #b73779;
}
.dot-item.active.group-3 .dot-indicator {
border-color: #3b0f70;
box-shadow: 0 0 15px rgba(59, 15, 112, 0.6);
}
.dot-item.active.group-3 .dot-label {
color: #9d5de4;
/* Using a lighter variation of 3b0f70 for text readability on dark bg */
}
.dot-item:hover:not(.active) .dot-indicator {
background-color: rgba(255, 255, 255, 0.3);
}
.video-wrapper {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
/* Behind text */
}
.demo-video {
width: 100%;
height: 100%;
object-fit: cover;
/* Fill the entire section, cropping if necessary */
display: block;
background-color: #000000;
}
/* --- Modern Footer --- */
.site-footer {
position: relative;
background: rgba(255, 255, 255, 1);
color: #1f1f1f;
padding: 60px 40px 40px;
font-family: 'Outfit', sans-serif;
border-top: 1px solid rgba(0, 0, 0, 0.05);
/* Subtle dark border top */
z-index: 100;
}
.footer-bottom-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
gap: 30px;
}
.footer-left {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 24px;
}
.footer-right {
display: none;
}
/* --- Left Side Content --- */
.footer-socials {
display: flex;
gap: 24px;
justify-content: center;
}
.footer-socials a {
transition: color 0.3s ease, transform 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
/* Darker Magma Colors for Logos */
.footer-socials a.social-github {
color: #641a80;
}
.footer-socials a.social-x {
color: #8c2981;
}
.footer-socials a.social-discord {
color: #b73779;
}
.footer-socials a.social-email {
color: #de4968;
}
.footer-socials a:hover {
transform: translateY(-2px);
filter: brightness(1.2);
/* Slight brightening on hover */
}
.footer-links-row {
display: flex;
gap: 32px;
flex-wrap: wrap;
justify-content: center;
}
.footer-links-row a {
color: #5f6368;
/* Google grey */
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.footer-links-row a:hover {
color: #1f1f1f;
}
.footer-ldrd-support {
font-size: 0.85rem;
line-height: 1.5;
color: #5f6368;
/* Google grey */
max-width: 600px;
}
.footer-copyright {
font-size: 0.85rem;
color: #9aa0a6;
/* Lighter grey */
}
/* Footer Responsiveness */
@media (max-width: 900px) {
.footer-bottom-container {
flex-direction: column-reverse;
align-items: stretch;
gap: 40px;
}
.footer-right {
flex: none;
width: 100%;
}
.footer-left {
align-items: center;
text-align: center;
}
.footer-links-row {
justify-content: center;
}
}
@media (max-width: 600px) {
.site-footer {
padding: 40px 20px;
}
.footer-links-row {
gap: 20px;
flex-direction: column;
align-items: center;
}
}
/* --- Mobile View Adjustments --- */
@media (max-width: 900px) {
/* Navigation Bar */
.navbar {
padding: 0 20px;
height: 60px;
}
.nav-brand {
margin-right: auto;
/* Push links to the right if they exist */
}
.nav-logo {
height: 24px;
/* Smaller logo for mobile */
}
/* Hide standard nav links and implement a hamburger or simplify */
.nav-links {
opacity: 0;
visibility: hidden;
flex-direction: column;
position: absolute;
top: 60px;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.98);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
padding: 20px 0;
backdrop-filter: blur(10px);
gap: 0;
border-bottom: 1px solid #eee;
z-index: 40;
transform: translateY(-10px);
transition: all 0.3s ease;
}
/* Target state when hamburger is open */
.nav-links.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-links li a {
font-size: 1.2rem;
padding: 16px 40px;
width: 100%;
display: block;
text-align: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
/* Hamburger icon container */
.mobile-menu-btn {
display: flex !important;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 24px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 60;
}
.mobile-menu-btn span {
width: 30px;
height: 3px;
background: #1f1f1f;
border-radius: 10px;
transition: all 0.3s linear;
position: relative;
transform-origin: 1px;
}
/* Hamburger Animation States */
.mobile-menu-btn.open span:nth-child(1) {
transform: rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
transform: rotate(-45deg);
}
/* Dropdown and Mega Menu Mobile Adjustments */
.dropdown {
width: 100%;
}
.dropdown-content {
position: static;
box-shadow: none;
border: none;
padding: 0;
background: transparent;
}
.mega-menu-inner {
flex-direction: column;
padding: 10px 20px;
gap: 12px;
}
.mega-link {
padding: 12px 16px;
}
.mega-title {
font-size: 1.05rem;
}
.mega-desc {
font-size: 0.85rem;
}
/* Hero Section */
.content {
top: 50%;
/* Center purely vertically */
width: 95%;
}
.logo {
width: 150px;
/* Scale logo down further */
}
h1.typing-container {
font-size: 1.8rem !important;
/* Increased size, let it break into lines naturally */
min-width: 0 !important;
max-width: 100% !important;
/* Remove min-width restriction */
width: 100%;
min-height: auto;
line-height: 1.35;
padding: 0 20px;
/* Prevent edge-to-edge kissing */
box-sizing: border-box;
white-space: normal !important;
/* CRITICAL: force wrapping which the typewriter might fight */
}
.magma-text {
font-size: 1.8rem !important;
/* Force inline magma-text span to match parent size */
white-space: normal !important;
/* Ensure the inline span doesn't prevent wrapping */
word-wrap: break-word;
/* Allow long words to break if necessary */
}
/* Hero Action Buttons */
.hero-buttons {
flex-direction: column;
/* Stack buttons vertically */
width: 100%;
max-width: 280px;
/* Limit width */
gap: 12px;
margin-top: 20px;
}
.btn {
width: 100%;
/* Full width buttons internally */
padding: 10px 16px;
/* Thinner buttons for mobile */
font-size: 1rem;
/* Slightly smaller text for mobile */
}
/* Dot Navigation */
.dot-nav {
/* Move to bottom center */
left: 50%;
top: auto;
bottom: 20px;
transform: translateX(-50%);
flex-direction: row;
/* Horizontal dots */
gap: 16px;
}
.dot-item {
flex-direction: column;
/* Align dot and label vertically */
gap: 8px;
}
.dot-label {
font-size: 0.8rem;
transform: translateY(10px);
/* Hide label downwards initially instead of left */
}
.dot-item.active .dot-label,
.dot-item:hover .dot-label {
transform: translateY(0);
}
/* Demo Video Section */
.demo-section {
height: auto;
aspect-ratio: 16 / 9;
min-height: 40vh;
}
.demo-video {
height: 100%;
max-height: none;
object-fit: cover;
}
.video-overlay-content {
bottom: 20px;
}
}