-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
252 lines (225 loc) · 5.07 KB
/
style.css
File metadata and controls
252 lines (225 loc) · 5.07 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
/* RESET & BASE */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
body {
background-color: #080808;
color: #FFFFFF;
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
/* GLASSMORPHISM */
.glass {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
/* NAVBAR */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 40px;
position: fixed;
width: 90%;
top: 20px;
left: 50%;
transform: translateX(-50%);
border-radius: 50px;
z-index: 100;
}
.logo {
font-weight: 800;
font-size: 1.1rem;
letter-spacing: 0.5px;
display: flex;
align-items: center;
}
.links a {
margin-left: 24px;
font-size: 0.9rem;
font-weight: 500;
opacity: 0.7;
transition: 0.3s;
}
.links a:hover { opacity: 1; color: #FFFFFF; }
/* HERO SECTION */
header {
min-height: 100vh; /* Full Height */
display: flex;
flex-direction: column; /* Force vertical stacking */
align-items: center; /* Horizontally Center */
justify-content: center; /* Vertically Center */
padding: 120px 20px;
text-align: center; /* Ensure text inside is centered */
background: radial-gradient(circle at center, #1a1a1a 0%, #080808 70%);
}
.hero-content {
width: 100%;
max-width: 800px; /* Limit width for readability */
margin: 0 auto; /* Safety centering */
}
/* Version Badge */
.version-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.08);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
color: #e0e0e0;
margin-bottom: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.version-badge i { color: #34C759; } /* Green Check icon */
h1 {
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 20px;
font-weight: 800;
}
.glow-text {
text-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}
header p {
opacity: 0.7;
margin-bottom: 50px;
font-size: 1.1rem;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
/* NEW BUTTON STYLE (Box) */
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
margin-bottom: 20px;
flex-wrap: wrap;
}
.btn-box {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 28px;
border-radius: 16px;
text-align: left;
transition: 0.3s;
min-width: 280px; /* Uniform width */
}
.btn-box i {
font-size: 1.8rem;
}
.btn-box span {
font-size: 0.9rem;
font-weight: 500;
display: block;
}
.btn-box strong {
font-size: 1rem;
font-weight: 800;
display: block;
}
/* 1. White Filled Box */
.btn-box.white {
background: #FFFFFF;
color: #000000;
box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}
.btn-box.white:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}
/* 2. Glass/Border Box */
.btn-box.glass-btn {
background: rgba(255, 255, 255, 0.05);
color: #FFFFFF;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-box.glass-btn:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-5px);
border-color: #FFFFFF;
}
.sub-text {
font-size: 0.8rem;
opacity: 0.4;
margin-top: 20px;
}
/* FEATURES GRID */
#features { padding: 100px 10%; }
#features h2 {
text-align: center;
margin-bottom: 60px;
font-size: 2.5rem;
font-weight: 700;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
}
.card {
padding: 40px 30px;
border-radius: 20px;
text-align: left;
transition: 0.4s;
}
.card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.08);
}
.card i {
font-size: 2rem;
margin-bottom: 20px;
color: #FFFFFF;
display: inline-block;
}
.icon-glow { text-shadow: 0 0 15px rgba(255,255,255,0.4); }
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; opacity: 0.6; line-height: 1.6; }
/* FOOTER */
footer {
padding: 80px 20px;
text-align: center;
border-top: 1px solid #1A1A1A;
background: linear-gradient(to top, #0f0f0f, #080808);
}
.email-link {
display: inline-block;
margin: 20px 0 40px;
color: #FFFFFF;
font-weight: 600;
border-bottom: 1px solid rgba(255,255,255,0.3);
padding-bottom: 5px;
}
.legal {
font-size: 0.8rem;
opacity: 0.5;
display: flex;
flex-direction: column;
gap: 10px;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
nav {
width: 100%;
top: 0;
border-radius: 0;
padding: 15px 20px;
background: rgba(8, 8, 8, 0.95);
}
h1 { font-size: 2.8rem; }
header { padding-top: 120px; }
.btn-box { width: 100%; justify-content: center; }
}