-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.html
More file actions
451 lines (394 loc) · 16.2 KB
/
note.html
File metadata and controls
451 lines (394 loc) · 16.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SARKO | Brand Identity & Roadmap</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Martel:wght@200;300;400;600;700;800;900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link href='https://cdn.boxicons.com/2.1.4/css/boxicons.min.css' rel='stylesheet'>
<style>
:root {
/* Color Palette */
--royal-dark: #101918;
--royal-gold: #c9830a;
--royal-blue: #001F3F;
--royal-red: #C10B0B;
--royal-green: #126917;
--royal-white: #dce3e8;
/* Spacing */
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 4rem;
}
/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--royal-dark);
color: var(--royal-white);
font-family: "Martel", serif;
font-weight: 300;
line-height: 1.6;
}
/* TYPOGRAPHY MAPPING */
h1 {
font-family: "Vollkorn", serif;
font-weight: 700;
color: var(--royal-gold);
margin-bottom: var(--spacing-sm);
line-height: 1.2;
}
h2, h3, h4, h5, h6 {
font-family: "Comfortaa", sans-serif;
font-weight: 700;
margin-bottom: var(--spacing-sm);
color: var(--royal-white);
}
p {
margin-bottom: var(--spacing-sm);
max-width: 70ch;
}
/* UTILITIES */
.container {
max-width: 1200px;
margin: 0 auto;
padding: var(--spacing-md);
}
.section {
margin-bottom: var(--spacing-lg);
padding-bottom: var(--spacing-md);
border-bottom: 1px solid rgba(201, 131, 10, 0.2);
}
.badge {
display: inline-block;
padding: 0.25rem 0.75rem;
border: 1px solid var(--royal-gold);
border-radius: 50px;
font-family: "Comfortaa", sans-serif;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: var(--spacing-sm);
color: var(--royal-gold);
}
/* SECTION: ARCHETYPE */
.archetype-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-md);
}
.card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
padding: var(--spacing-md);
border-radius: 8px;
transition: all 0.3s ease;
}
.card:hover {
border-color: var(--royal-gold);
transform: translateY(-5px);
}
.quote-box {
border-left: 4px solid var(--royal-gold);
padding-left: var(--spacing-md);
font-style: italic;
margin: var(--spacing-md) 0;
background: linear-gradient(90deg, rgba(201,131,10,0.1) 0%, transparent 100%);
padding: var(--spacing-md);
}
/* SECTION: COLORS */
.color-grid {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-md);
}
.color-swatch {
width: 150px;
border-radius: 8px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.1);
}
.swatch-display {
height: 100px;
width: 100%;
}
.swatch-info {
padding: 1rem;
background: #000;
font-family: "Comfortaa", sans-serif;
font-size: 0.8rem;
text-align: center;
}
/* SECTION: LOGO PREVIEW (Mockups) */
.logo-preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-md);
}
.logo-box {
height: 200px;
display: flex;
align-items: center;
justify-content: center;
border: 1px dashed rgba(255,255,255,0.2);
position: relative;
}
.logo-box::after {
content: "LOGO IMG";
font-family: "Comfortaa";
opacity: 0.5;
}
/* SECTION: PERSONAS */
.persona-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-md);
}
.persona-card {
background: var(--royal-blue);
padding: var(--spacing-md);
border-radius: 8px;
border-top: 4px solid var(--royal-gold);
}
.persona-card h3 {
display: flex;
align-items: center;
gap: 10px;
}
/* SECTION: DOs and DON'Ts */
.comparison-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-md);
}
@media (max-width: 768px) {
.comparison-grid { grid-template-columns: 1fr; }
}
.do-list, .dont-list {
padding: var(--spacing-md);
border-radius: 8px;
}
.do-list {
background: rgba(18, 105, 23, 0.1);
border: 1px solid var(--royal-green);
}
.dont-list {
background: rgba(193, 11, 11, 0.1);
border: 1px solid var(--royal-red);
}
.list-item {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
align-items: flex-start;
}
.list-item i {
font-size: 1.5rem;
margin-top: 2px;
}
.do-list i { color: var(--royal-green); }
.dont-list i { color: var(--royal-red); }
/* SECTION: ROADMAP */
.tech-stack {
display: flex;
gap: 1rem;
margin-bottom: var(--spacing-md);
}
.tech-pill {
background: rgba(255,255,255,0.1);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-family: "Comfortaa";
font-weight: 700;
}
.sitemap ul {
list-style: none;
padding-left: 0;
}
.sitemap li {
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
display: flex;
align-items: center;
gap: 10px;
}
.sitemap li i { color: var(--royal-gold); }
</style>
</head>
<body>
<div class="container">
<header class="section">
<span class="badge">Internal Document</span>
<h1>SARKO Brand Identity System</h1>
<p class="martel-light">Redefining the brand archetype as the <strong>Regal Guardian</strong>. Protecting heritage, land, and dignity.</p>
</header>
<section class="section">
<h2>01. Core Strategy</h2>
<div class="archetype-grid">
<div class="card">
<h3>The Promise</h3>
<p>To protect the heritage, land, and dignity of the African nation against the erosion of modernity and corruption.</p>
</div>
<div class="card">
<h3>Personality</h3>
<p>Authoritative, Dignified, Unyielding, yet Paternal/Maternal (caring).</p>
</div>
<div class="card">
<h3>Tone of Voice</h3>
<p><strong>"Statutory yet Soulful."</strong> A mix of Royal Decree and Freedom Fighter’s manifesto.</p>
</div>
</div>
<div class="quote-box">
<div style="margin-bottom: 1rem; opacity: 0.6;">AVOID: "We are trying to fix the health system."</div>
<div style="font-size: 1.2rem; color: var(--royal-gold); font-family: 'Vollkorn', serif;">ADOPT: "We Command the Restoration of Our People's Health and Dignity."</div>
</div>
</section>
<section class="section">
<h2>02. Visual Identity System (VIS)</h2>
<p>Based on semiotic analysis of royalty and African heritage.</p>
<h4 style="margin-top: 2rem;">Color Palette</h4>
<div class="color-grid">
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-dark);"></div>
<div class="swatch-info">Dark<br>#101918</div>
</div>
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-gold);"></div>
<div class="swatch-info">Gold<br>#c9830a</div>
</div>
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-blue);"></div>
<div class="swatch-info">Blue<br>#001F3F</div>
</div>
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-red);"></div>
<div class="swatch-info">Red<br>#C10B0B</div>
</div>
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-green);"></div>
<div class="swatch-info">Green<br>#126917</div>
</div>
<div class="color-swatch">
<div class="swatch-display" style="background: var(--royal-white);"></div>
<div class="swatch-info">White<br>#dce3e8</div>
</div>
</div>
<h4 style="margin-top: 2rem;">Typography Hierarchy</h4>
<div class="card">
<h1 style="border-bottom: 1px solid #333; padding-bottom:10px;">Heading 1 (Vollkorn)</h1>
<h2>Heading 2 (Comfortaa)</h2>
<h3>Heading 3 (Comfortaa)</h3>
<p class="martel-regular"><strong>Body Text (Martel Regular):</strong> This is how the standard paragraph text will look. It is a serif font that provides readability and a sense of tradition.</p>
<p class="martel-light"><em>Caption Text (Martel Light): For subtitles and nuanced text.</em></p>
</div>
<h4 style="margin-top: 2rem;">Logo Application</h4>
<div class="logo-preview-grid">
<div>
<p style="font-size: 0.8rem; opacity: 0.7; margin-bottom: 5px;">On Royal White</p>
<div class="logo-box" style="background: var(--royal-white); color: var(--royal-dark);">
<i class='bx bxs-crown' style="font-size: 3rem; color: var(--royal-dark);"></i>
</div>
</div>
<div>
<p style="font-size: 0.8rem; opacity: 0.7; margin-bottom: 5px;">Transparent / No BG</p>
<div class="logo-box" style="background: transparent; border: 1px solid #333;">
<i class='bx bxs-crown' style="font-size: 3rem; color: var(--royal-gold);"></i>
</div>
</div>
<div>
<p style="font-size: 0.8rem; opacity: 0.7; margin-bottom: 5px;">On Royal Dark</p>
<div class="logo-box" style="background: var(--royal-dark); border: 1px solid var(--royal-gold);">
<i class='bx bxs-crown' style="font-size: 3rem; color: var(--royal-white);"></i>
</div>
</div>
</div>
</section>
<section class="section">
<h2>03. Target Personas</h2>
<div class="persona-grid">
<div class="persona-card">
<h3><i class='bx bxs-user-voice'></i> The Disenfranchised Traditionalist</h3>
<p><strong>Profile:</strong> Male/Female, 45+, rural.</p>
<p><strong>Motivation:</strong> Feels culture is sold out. Wants return to order and respect.</p>
</div>
<div class="persona-card">
<h3><i class='bx bxs-map'></i> The Land Claimant</h3>
<p><strong>Profile:</strong> Any age.</p>
<p><strong>Motivation:</strong> Frustrated by slow land reform. Wants aggressive action.</p>
</div>
<div class="persona-card">
<h3><i class='bx bxs-shield-alt-2'></i> The Vulnerable Mother</h3>
<p><strong>Profile:</strong> Female, 25-50.</p>
<p><strong>Motivation:</strong> Terrified of GBV. Drawn to strict enforcement for protection.</p>
</div>
<div class="persona-card">
<h3><i class='bx bxs-hard-hat'></i> The Unemployed Youth</h3>
<p><strong>Profile:</strong> Male, 18-35 (Secondary).</p>
<p><strong>Motivation:</strong> Looking for tangible skills training (carpentry, sewing).</p>
</div>
</div>
</section>
<section class="section">
<h2>04. Execution Guidelines</h2>
<div class="comparison-grid">
<div class="do-list">
<h3 style="color: var(--royal-green);">DO</h3>
<div class="list-item">
<i class='bx bxs-check-circle'></i>
<p>Highlight specific successes in Maluti-a-Phofung as proof of capability.</p>
</div>
<div class="list-item">
<i class='bx bxs-check-circle'></i>
<p>Use titles of traditional leaders (King, Queen, Inkosi) with strict protocol.</p>
</div>
</div>
<div class="dont-list">
<h3 style="color: var(--royal-red);">DON'T</h3>
<div class="list-item">
<i class='bx bxs-x-circle'></i>
<p>Use "WhatsApp quality" images. Use stylized graphics or B&W if hi-res is unavailable.</p>
</div>
<div class="list-item">
<i class='bx bxs-x-circle'></i>
<p>Emphasize "Kailasa" connection on the homepage. Keep international partners vague unless benefits are tangible.</p>
</div>
</div>
</div>
</section>
<section class="section" style="border-bottom: none;">
<h2>05. Web Development Roadmap</h2>
<p>Goal: Transform <strong>sarko.org.za</strong> from a static brochure into a Political Mobilization Platform.</p>
<div style="margin-top: 1.5rem;">
<h4>Tech Stack</h4>
<div class="tech-stack">
<span class="tech-pill">HTML5</span>
<span class="tech-pill">CSS3</span>
<span class="tech-pill">JavaScript</span>
</div>
</div>
<div style="margin-top: 2rem;">
<h4>Information Architecture (Sitemap)</h4>
<div class="sitemap card">
<ul>
<li><i class='bx bxs-home'></i> <strong>Home:</strong> The Storefront</li>
<li><i class='bx bxs-landmark'></i> <strong>Our Kingdom:</strong> About Us, Leadership, History</li>
<li><i class='bx bxs-scroll'></i> <strong>The Mandate:</strong> Manifesto, Values, Policies</li>
<li><i class='bx bxs-news'></i> <strong>News & Events:</strong> Press Releases, Rallies, Gallery</li>
<li><i class='bx bxs-user-plus'></i> <strong>Get Involved:</strong> Membership, Volunteer</li>
<li><i class='bx bxs-donate-heart'></i> <strong>Donate:</strong> Secure Gateway</li>
<li><i class='bx bxs-map-pin'></i> <strong>Contact:</strong> Branch Locator</li>
</ul>
</div>
</div>
<div style="margin-top: 2rem;">
<h4>Performance Strategy</h4>
<p><i class='bx bxs-bolt'></i> <strong>Images:</strong> Auto-convert to WebP.</p>
<p><i class='bx bxs-data'></i> <strong>Caching:</strong> LiteSpeed or WP Rocket.</p>
<p><i class='bx bxs-cloud-shield'></i> <strong>CDN:</strong> Cloudflare (DDoS protection).</p>
</div>
</section>
</div>
</body>
</html>