File size: 1,997 Bytes
5400cf3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.about-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
    filter: blur(5px) brightness(0.9);
    pointer-events: none;
  }
  
  /* 馃敿 Centered NAVBAR on AboutPage */
  .about-navbar-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  
  .top-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
  }
  
  .nav-logo {
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-text);
  }
  
  /* 馃攣 Scroll layout */
  .about-page-scroll {
    position: relative;
    z-index: 2;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
  
  .about-section,
  .founders-section {
    scroll-snap-align: start;
    min-height: 100vh;
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .about-section h1,
  .founders-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .highlight {
    background: linear-gradient(to right, #38d9a9, #66ffe3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }
  
  .about-section p,
  .founders-section p,
  .founders-section ul {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .founders-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
  }
  
  .founders-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }