-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleadership.html
More file actions
1702 lines (1545 loc) · 47.1 KB
/
leadership.html
File metadata and controls
1702 lines (1545 loc) · 47.1 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
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<style>
/* --- Universal Override Styles --- */
body {
background: #000 !important;
color: #fff !important;
font-family: "Times New Roman", serif !important;
text-align: justify;
}
/* Headings in Royal Gold */
h1, h2, h3, h4, .title, .section-title {
color: #d4af37 !important;
}
/* Paragraphs and normal text in white */
p, li, span, a, div {
color: #ffffff !important;
}
/* Links */
a {
color: #d4af37 !important;
}
/* Cards */
.card, .info-box, .profile-card, .content-box, .leaders-card, .event-card {
background: #000 !important;
color: #fff !important;
border: 1px solid #d4af37 !important;
border-radius: 10px !important;
padding: 15px !important;
box-shadow: 0 0 15px rgba(212,175,55,0.3) !important;
}
/* Images inside cards */
.card img,
.info-box img,
.profile-card img,
.content-box img,
.leaders-card img {
border: 2px solid #d4af37 !important;
border-radius: 10px !important;
}
/* Navigation bar */
header, nav {
background: #000 !important;
border-bottom: 1px solid #d4af37 !important;
}
header .brand-text,
nav a {
color: #d4af37 !important;
}
/* Mobile Justify */
@media (max-width: 600px) {
body {
text-align: justify !important;
}
}
</style>
<link rel="stylesheet" href="style.css">
<!-- Favicon for desktop and mobile -->
<link rel="icon" type="image/png" href="https://raw.githubusercontent.com/SCodeGit/Bowiri-Traditional-Council/28857d96cf2048e159e3a22335a78a7f13cf84a6/king%20logo.png" sizes="32x32">
<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/SCodeGit/Bowiri-Traditional-Council/28857d96cf2048e159e3a22335a78a7f13cf84a6/king%20logo.png">
</style>
<!-- ===== JavaScript ===== -->
<script>
// Modal
function openModal(img) {
const modal = document.getElementById("myModal");
const modalImg = document.getElementById("modal-img");
const caption = document.getElementById("caption");
modal.style.display = "block";
modalImg.src = img.src;
caption.innerHTML = img.alt;
}
function closeModal() { document.getElementById("myModal").style.display = "none"; }
// Read more toggle
function toggleBio(bioId) {
const bio = document.getElementById(bioId);
const expanded = bio.getAttribute('aria-expanded') === 'true';
bio.setAttribute('aria-expanded', !expanded);
bio.style.maxHeight = expanded ? '0' : bio.scrollHeight + 'px';
}
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Leadership — Bowiri Traditional Council</title>
<meta name="description" content="Leadership of the Bowiri Traditional Council — Chiefs and Queenmothers upholding our heritage and unity." />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root{
--bg:#fdfcf9;
--navy:#071228;
--muted:#2b3a4a;
--gold:#d4af37;
--card:#ffffff;
--text:#111827;
--soft:#f4f6f8;
--frame:#e9d9a6;
--shadow: 0 8px 20px rgba(11,28,46,0.12);
--radius:12px;
--max-width:1100px;
}
html,body{height:100%;}
body{
margin:0;
font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background:var(--bg);
color:var(--text);
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height:1.6;
}
/* Header (keeps your site's look) */
.site-header{
background:linear-gradient(90deg, rgba(7,18,40,0.95), rgba(7,18,40,0.97));
color:#fff;
position:sticky;
top:0;
z-index:40;
box-shadow: 0 2px 8px rgba(7,18,40,0.15);
}
.container{max-width:var(--max-width);margin:0 auto;padding:18px;}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.brand{display:flex;align-items:center;text-decoration:none;color:inherit;}
.logo-btc{font-family:"Playfair Display", serif;font-size:22px;padding:6px 10px;border-radius:6px;background:var(--gold);color:var(--navy);font-weight:700;margin-right:10px}
.brand-text{font-weight:600;letter-spacing:0.2px}
.nav-toggle{display:none}
.main-nav{display:flex;gap:14px}
.nav-link{color:rgba(255,255,255,0.9);text-decoration:none;padding:6px 8px;border-radius:6px}
.nav-link.active{background:rgba(255,255,255,0.06)}
/* Page header */
.page-main{max-width:var(--max-width);margin:28px auto;padding:0 18px 80px;}
.page-header{padding:26px 0 8px}
.page-header h1{font-family:"Playfair Display", serif;font-size:34px;color:var(--navy);margin:0 0 6px}
.page-header p{color:var(--muted);margin:0 0 12px}
/* Grid for leaders */
.leaders-grid{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
gap:20px;
align-items:start;
margin-top:18px;
}
/* Card */
.leader-card{
background:linear-gradient(180deg, var(--card), #fbfaf8 60%);
border-radius:var(--radius);
padding:18px;
box-shadow: var(--shadow);
border: 1px solid rgba(11,28,46,0.04);
overflow:visible;
position:relative;
}
/* Framed portrait */
.portrait-frame{
width:100%;
max-width:220px;
height:260px;
margin:0 auto 14px;
border-radius:8px;
padding:10px;
background:linear-gradient(180deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
box-shadow: 0 6px 18px rgba(11,28,46,0.08);
display:flex;
align-items:center;
justify-content:center;
border:6px solid var(--frame);
}
.portrait-frame img{
max-width:100%;
max-height:100%;
object-fit:cover;
display:block;
border-radius:4px;
}
.leader-meta{ text-align:center; margin-bottom:10px;}
.leader-meta h3{font-family:"Playfair Display", serif;margin:6px 0 4px;font-size:20px;color:var(--navy)}
.leader-meta .title{color:var(--muted);font-size:13px;margin:0}
/* Bio area */
.bio-wrap{font-size:15px;color:var(--muted);background:transparent;}
.bio-content{
overflow:hidden;
transition: max-height 450ms cubic-bezier(.2,.9,.2,1), opacity 300ms;
max-height:220px; /* collapsed height */
opacity:1;
position:relative;
}
.bio-content.expanded{max-height:2000px;}
.bio-fade{
content:'';
position:absolute;
left:0;right:0;height:48px;bottom:0;
background: linear-gradient(0deg, var(--card), rgba(255,255,255,0));
pointer-events:none;
display:block;
}
.bio-content.expanded + .bio-fade{ display:none; }
.read-toggle{
display:inline-block;
margin-top:10px;
padding:8px 12px;
border-radius:8px;
background:transparent;
color:var(--navy);
border:1px solid rgba(11,28,46,0.08);
cursor:pointer;
font-weight:600;
}
/* Footer */
.site-footer{
background:linear-gradient(180deg, rgba(7,18,40,0.9), rgba(7,18,40,0.95));
color:#fff;padding:22px 0;margin-top:40px;
}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.logo-sm{font-family:"Playfair Display";background:var(--gold);padding:6px 8px;border-radius:6px;color:var(--navy)}
/* Animations: random subtle variants */
.animate{opacity:0;transform:translateY(18px) scale(0.995);transition:opacity 700ms ease, transform 700ms cubic-bezier(.2,.9,.2,1);}
.animate.in{opacity:1;transform:none;}
.anim-zoom{transform:scale(.98);transition:transform 650ms ease, opacity 650ms;}
.anim-zoom.in{transform:none;opacity:1;}
.anim-slide-left{transform:translateX(-12px);opacity:0;transition:transform 680ms cubic-bezier(.2,.9,.2,1),opacity 680ms;}
.anim-slide-left.in{transform:none;opacity:1;}
.anim-slide-right{transform:translateX(12px);opacity:0;transition:transform 680ms cubic-bezier(.2,.9,.2,1),opacity 680ms;}
.anim-slide-right.in{transform:none;opacity:1;}
/* Responsive */
@media (max-width:700px){
.portrait-frame{max-width:180px;height:220px}
.bio-content{max-height:200px}
}
</style>
<header class="site-header">
<div class="container header-inner" style="text-align:center; margin-top:10px;">
<a href="index.html" class="brand">
<img src="https://raw.githubusercontent.com/SCodeGit/Bowiri-Traditional-Council/9cf17011bc9b1cd47d129aa5a704b5be84767d0b/images/king%20logo.jpg"
alt="Bowiri Logo" class="logo-btc"
style="width:56px; height:56px; border-radius:8px; object-fit:cover;">
<span class="brand-text" style="font-weight:bold; font-size:1.3em; display:block; margin-top:5px;">Bowiri Traditional Council</span>
</a>
</div>
</header>
<!-- Horizontal Navigation Bar under Logo -->
<style>
/* NAV text + colors */
#page-nav a {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
transition: 0.25s ease-in-out;
}
/* Hover gold */
#page-nav a:hover {
color: #FFD700;
}
/* Active gold */
#page-nav a.active {
color: #FFD700;
border-bottom: 2px solid #FFD700;
padding-bottom: 3px;
}
</style>
<nav id="page-nav" style="text-align:center; margin-top:10px;">
<ul style="list-style:none; padding:0; margin:0; display:flex; justify-content:center; flex-wrap:wrap; gap:20px;">
<li><a href="index.html">Home</a></li>
<li><a href="leadership.html">Leadership</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="projects.html" class="active">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- Styles for navigation links -->
<style>
#page-nav .nav-link {
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
background: linear-gradient(to right, #FFD700, #FF4500);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: transform 0.2s, opacity 0.2s;
}
#page-nav .nav-link:hover {
transform: scale(1.1);
opacity: 0.8;
}
/* Responsive adjustments */
@media (max-width: 600px) {
#page-nav ul {
gap: 10px;
}
#page-nav .nav-link {
font-size: 0.9em;
}
}
</style>
<!-- =======================
Leadership Page Header
(Embedded + Modern Style)
========================= -->
<style>
/* ----------------------------------------------
PAGE HEADER — Sleek Modern Black/White/Gold
---------------------------------------------- */
.page-header {
text-align: center;
margin: 60px auto 40px;
padding: 20px;
color: #fff;
}
.page-header h1 {
font-family: "Playfair Display", serif;
font-size: 2.4rem;
font-weight: 700;
color: #FFD700; /* Gold title */
margin-bottom: 10px;
letter-spacing: 0.5px;
}
.page-header p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
color: #e6e6e6;
line-height: 1.6;
opacity: 0.9;
}
/* MOBILE — justify text for professional reading */
@media (max-width: 600px) {
.page-header {
padding: 10px 15px;
}
.page-header p {
text-align: justify;
font-size: 1rem;
}
.page-header h1 {
font-size: 1.9rem;
}
}
/* Fade animation */
.page-header {
animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
<main class="page-main container">
<section class="page-header">
<h1>Leadership</h1>
<p>Traditional leaders and Queenmothers of Bowiri Traditional Area.</p>
</section>
</main>
</style>
<section class="page-content">
<div class="leaders-grid">
<!-- Leader Card -->
<article class="leader-card animate" data-anim>
<!-- Portrait Frame with Clickable Modal -->
<div class="portrait-frame" style="position: relative;">
<img
src="https://github.com/SCodeGit/Bowiri-Traditional-Council/blob/6d8d16677c215c410bca22f6a153207cf5949548/king%20V.jpg?raw=true"
alt="Nana Osiadieyor Kwabena Salo V"
onclick="openModal(this)"
/>
</div>
<!-- Leader Info -->
<div class="leader-meta">
<h3>Nana Osiadieyor Kwabena Salo V</h3>
<div class="title">Paramount Chief (Bowirimanhene)</div>
</div>
<!-- Bio Section -->
<div class="bio-wrap">
<div class="bio-content" id="bio1" aria-expanded="false" style="max-height: 0; overflow: hidden; transition: max-height 0.3s ease;">
<p>Nana Osiadieyor Kwabena Salo V was born on 5th October, 1999 at Bowiri Anyinase in the Bayida Clan in the Biakoye District of the Oti Region. His parents are Mr. Eric Kwabena and Mrs. Bertha Akosua Nyame, all from Bowiri Anyinase.</p>
<p>He started his primary education at Worawora Anglican Primary School and JHS and completed in 2017. He was a student at Bishop Herman College at Kpando from 2017 to 2020.</p>
<p>He taught as a pupil-Teacher in the Stars On Earth Academy in Accra Madina for 4 years from 2020 to 2024. He is now a student of Peki College of Education offering the Bachelor's Degree in Education.</p>
<p>He was enstooled on Friday 13th October, 2023 at Bowiri Anyinase as the Paramount Chief of Bowiri Traditional Area (Bowirimanhene). He is an organist and enjoys soft music.</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle" aria-controls="bio1" onclick="toggleBio('bio1')">Read more</button>
</div>
</article>
<!-- Modal -->
<div id="myModal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-img">
<div id="caption"></div>
</div>
<!-- CSS -->
<style>
.modal {
display: none;
position: fixed;
z-index: 100;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from {transform: scale(0);}
to {transform: scale(1);}
}
#caption {
margin: auto;
display: block;
text-align: center;
color: #fff;
padding: 10px;
font-size: 18px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}
/* Optional bio fade effect */
.bio-fade {
height: 50px;
background: linear-gradient(rgba(255,255,255,0), #fff);
margin-top: -50px;
display: block;
}
</style>
<!-- JavaScript -->
<script>
// Modal
function openModal(img) {
const modal = document.getElementById("myModal");
const modalImg = document.getElementById("modal-img");
const caption = document.getElementById("caption");
modal.style.display = "block";
modalImg.src = img.src;
caption.innerHTML = img.alt;
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
// Read More toggle
function toggleBio(bioId) {
const bio = document.getElementById(bioId);
const expanded = bio.getAttribute('aria-expanded') === 'true';
bio.setAttribute('aria-expanded', !expanded);
bio.style.maxHeight = expanded ? '0' : bio.scrollHeight + 'px';
}
</script>
<!-- 2 -->
<article class="leader-card animate" data-anim>
<div class="portrait-frame">
<img src="images/nana-kwasi-asiedu-ii.jpg" alt="Nana Kwasi Asiedu II">
</div>
<div class="leader-meta">
<h3>Nana Kwasi Asiedu II</h3>
<div class="title">Sub-Divisional Chief (Ankobehene)</div>
</div>
<div class="bio-wrap">
<div class="bio-content" aria-expanded="false">
<p>Nana Kwasi Asiedu II was born on Sunday 2nd December 1973 to Inspector John Kofi Anso Bandua of blessed memory and Madam Gertrude Theodora Abena Asiedu-Bandua, both from Bowiri Anyinase. Nana started his Basic School at Kumasi Presby/Methodist primary one to six (1-6) from 1979-1985. He continued to Kumasi Methodist Day JHS 1-3 in 1986 - 1988.</p>
<p>He worked at KBL as a driver for three years from 1989-1991. He joined the Ministry of Defence as a Civilian driver from 1997 to date. Nana was enstooled as Chief with his stool name as Nana Kwasi Asiedu II on 19th November, 2021 as Sub-Divisinal Chief.</p>
<p>Private name of chief is Jacob Kwasi Anso Bandaua as ANKOBEAHENE OF BOWIRI TRADITIONAL AREA. from BAWUNYA CLAN of Bowiri Anyinase.</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle">Read more</button>
</div>
</article>
<!-- 3 -->
<article class="leader-card animate" data-anim>
<!-- Portrait Frame with Clickable Modal -->
<div class="portrait-frame">
<img src="https://github.com/SCodeGit/Bowiri-Traditional-Council/blob/58918c476245ef4de632bcabdd286896e14f8b7b/images/bea.jpg?raw=true"
alt="Sikabea"
onclick="openModal(this)">
</div>
<!-- Modal Structure -->
<div id="myModal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-img">
<div id="caption"></div>
</div>
<!-- CSS -->
<style>
.modal {
display: none;
position: fixed;
z-index: 100;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from {transform: scale(0);}
to {transform: scale(1);}
}
#caption {
margin: auto;
display: block;
text-align: center;
color: #fff;
padding: 10px;
font-size: 18px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}
</style>
<!-- JavaScript -->
<script>
function openModal(img) {
var modal = document.getElementById("myModal");
var modalImg = document.getElementById("modal-img");
var caption = document.getElementById("caption");
modal.style.display = "block";
modalImg.src = img.src;
caption.innerHTML = img.alt;
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
</script>
<div class="leader-meta">
<h3>Nana Yaa Sikebea II</h3>
<div class="title">Kyidomhemaa (Divisional Queenmother)</div>
</div>
<div class="bio-wrap">
<div class="bio-content" aria-expanded="false">
<p>Nana Yaa Sikebea II was born on 9th April, 1964 at Bowiri Kwamekrom to Mr. Kofi Kumah Bediako and Madam Afua Atukpawu all of blessed memory.</p>
<p>She started her Primary School Education at Bowiri Kwamekrom E.P Primary in 1970.</p>
<p>She was taken to Bowiri Amanfrom to continue Primary five in 1974. At Primary six in 1975 she lost her father. Being left with nobody to care for school education, she returned to Bowiri Kwamekrom and started learning to trade and farm.</p>
<p>She was enstooled on 5th August, 2022 on the title of Kyidomhemaa at Bowiri Kwamekrom with the status of a Divisional Queenmother</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle">Read more</button>
</div>
</article>
<article class="leader-card animate" data-anim>
<!-- Portrait Frame with Clickable Modal -->
<div class="portrait-frame">
<img src="https://github.com/SCodeGit/Bowiri-Traditional-Council/blob/d07301d278871e99761a3d4e5619da40d7c4720a/images/nana.jpg?raw=true"
alt="Nana Abornubea Atoanepe I"
onclick="openModal(this)">
</div>
<!-- Leader Meta -->
<div class="leader-meta">
<h3>Nana Abornubea Atoanepe I</h3>
<div class="title">Asafohemaa of Bowiri-Kwamekrom</div>
</div>
<!-- Biography Wrap -->
<div class="bio-wrap">
<div class="bio-content" aria-expanded="false">
<p>Nana Abornubea Atoanepe I, known in private life as Betty Ama Serwaa Mensah-Yeguo, is the Asafohemaa of Bowiri-Kwamekrom. She was born to Mr. Michael Yao Mensah-Yeguo of the Odefet Clan in Bowiri-Kwamekrom (of blessed memory) and Madam Mary Judith Mensah Yeguo (née Appiah) of the Nyatetor Clan in Bowiri Takrabe.</p>
<p>She started her formal education at Forces Primary School at Recee Barracks, Burma Camp (Accra) from 1977 to 1982, then attended Mawuli Secondary School (now Senior High) from 1984 to 1989, where she obtained her Ordinary Level Certificate (O. Level). She furthered her studies at Workers’ College (1990–1991), Peki Training College (GOVCO, now College of Education) from 1994 to 1996/1997, and later the University of Education, Winneba.</p>
<p>She currently teaches at Emmanuel Presbyterian School, Dansoman, Greater Accra Region. Nana Abornubea Atoanepe I has one adopted daughter and two grandchildren.</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle">Read more</button>
</div>
</article>
<!-- Modal Structure -->
<div id="myModal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-img">
<div id="caption"></div>
</div>
<!-- Modal CSS -->
<style>
.modal {
display: none;
position: fixed;
z-index: 100;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from {transform: scale(0);}
to {transform: scale(1);}
}
#caption {
margin: auto;
display: block;
text-align: center;
color: #fff;
padding: 10px;
font-size: 18px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}
</style>
<!-- Modal JavaScript -->
<script>
function openModal(img) {
var modal = document.getElementById("myModal");
var modalImg = document.getElementById("modal-img");
var caption = document.getElementById("caption");
modal.style.display = "block";
modalImg.src = img.src;
caption.innerHTML = img.alt;
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
</script>
<!-- 4 -->
<article class="leader-card animate" data-anim>
<div class="portrait-frame">
<img src="images/nana-kwasi-okyerefor-iii.jpg" alt="Nana Kwasi Okyerefor III">
</div>
<div class="leader-meta">
<h3>Nana Kwasi Okyerefor III</h3>
<div class="title">Tufuhene</div>
</div>
<div class="bio-wrap">
<div class="bio-content" aria-expanded="false">
<p>Nana Kwasi Okyerefor III was born on 11th March, 1969 at Bowiri Aboabo. He started Basic School in 1976, continued at Bowiri Takrabe L/A Middle School. Obtained Middle School Leaving Certificate in 1986. Gained employment with Abibigroma Theater Company, School of Performing Arts, Legon. In 1993 worked with National Theater, Accra for four(4) additional years a total of eleven(11) years working experience with Abibigroma Theater Company.</p>
<p>He travelled to USA for greener pastures in 1997. In USA, worked with Gate Gourmet between 1998 and 2001. He also worked as a shuttle bus driver for preflight packing company in USA from 2001-2003. I persuade a diploma certificate in Transport Management. After acquisition of the diploma Certificate, I worked with American Transportation USA 2003- 2005, JB. Hunt Transportation USA 2005-2008, Knight Transportation USA 2008-2016.</p>
<p>In 2016, I registered my own company as Efo Ike Logistics Inc USA as C.E.O till date. I was enstooled at home on the 13th August,2021 as Nana Kwasi Okyerefor III the Tufuhene of Bowiri Traditional Area at Bowiri Aboabo.</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle">Read more</button>
</div>
</article>
<!-- 5 -->
<article class="leader-card animate" data-anim>
<!-- Portrait Frame with Clickable Modal -->
<div class="portrait-frame">
<img src="https://github.com/SCodeGit/Bowiri-Traditional-Council/blob/58918c476245ef4de632bcabdd286896e14f8b7b/images/Asie.jpg?raw=true"
alt="Nana Yaa Asiedu"
onclick="openModal(this)">
</div>
<!-- Modal Structure -->
<div id="myModal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-img">
<div id="caption"></div>
</div>
<!-- CSS -->
<style>
.modal {
display: none;
position: fixed;
z-index: 100;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from {transform: scale(0);}
to {transform: scale(1);}
}
#caption {
margin: auto;
display: block;
text-align: center;
color: #fff;
padding: 10px;
font-size: 18px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}
</style>
<!-- JavaScript -->
<script>
function openModal(img) {
var modal = document.getElementById("myModal");
var modalImg = document.getElementById("modal-img");
var caption = document.getElementById("caption");
modal.style.display = "block";
modalImg.src = img.src;
caption.innerHTML = img.alt;
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
</script>
<div class="leader-meta">
<h3>Nana Yaa Asiedua I</h3>
<div class="title">Queenmother</div>
</div>
<div class="bio-wrap">
<div class="bio-content" aria-expanded="false">
<p>Nana Yaa Asiedua I was born on Thursday 3rd September, 1981 at Bowiri Anyinase to Mr. Solomon G.Y. Asiedu of Bowiri Anyinase and Mrs. Mary Abena Asiedu of Bodada-Buem.</p>
<p>She started her Basic Education at Sogakofe L/A primary school from 1985 to 1991and 2 years at Sogakofe L/A JHS from 1991 to 1994. She did one year at Jasikan College of Education Demonstration JHS in 1995/1996 and entered Ho Mawuli Senior High School in 1996/1997 and completed in 1999 with school Cert: O" Level. She was a celebrated Athlete in both Track and Field events which earned her great Laurels. She entered Tamale Sawaba Secretariate school in order to update herself in Computer Literacy and completed in 2003.</p>
<p>She is married and has four children, two boys and two girls. She is Self- employed. Her hobbies are: Listening to soft music and Films.</p>
</div>
<div class="bio-fade" aria-hidden="true"></div>
<button class="read-toggle">Read more</button>
</div>
</article>
<!-- 6 -->
<article class="leader-card animate" data-anim>
<!-- Portrait Frame with Clickable Modal -->
<div class="portrait-frame">
<img src="https://github.com/SCodeGit/Bowiri-Traditional-Council/blob/58918c476245ef4de632bcabdd286896e14f8b7b/images/sike.jpg?raw=true"
alt="Sike Nana Kwasi"
onclick="openModal(this)">
</div>
<!-- Modal Structure -->
<div id="myModal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-img">
<div id="caption"></div>
</div>
<!-- CSS -->
<style>
.modal {
display: none;
position: fixed;
z-index: 100;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from {transform: scale(0);}
to {transform: scale(1);}
}
#caption {
margin: auto;
display: block;
text-align: center;
color: #fff;
padding: 10px;
font-size: 18px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}
</style>
<style>
/* ==============================
Leadership Page - Dark & Solemn Theme
============================== */
/* Root dark colors */
:root {
--dark-bg: #0a0f0f;
--dark-card: #1a1f21;
--red-accent: #a71d2a;
--text-light: #f5f5f5;
--text-muted: #bbbbbb;
--shadow-dark: rgba(0,0,0,0.6);
}
/* ==============================
Page Background
============================== */
body, html {
background-color: var(--dark-bg);
color: var(--text-light);
}
/* ==============================
Leadership Section Grid
============================== */
.leaders-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 30px 10px;
}
/* Portrait frames */
.portrait-frame {
width: 100%;
max-width: 220px;
cursor: pointer;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portrait-frame img {
width: 100%;
border-radius: 8px;
object-fit: cover;
box-shadow: 0 10px 25px var(--shadow-dark);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portrait-frame:hover img {
transform: scale(1.05);
box-shadow: 0 15px 35px var(--shadow-dark);
}
/* Name / caption below image */
.portrait-frame p {
color: var(--text-light);
font-weight: 600;
margin-top: 8px;
}
/* ==============================
Modal Lightbox for Images
============================== */
.modal {
display: none;
position: fixed;
z-index: 1000;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(10,15,15,0.95);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 8px;
animation: zoom 0.3s;
}
@keyframes zoom {
from { transform: scale(0); }
to { transform: scale(1); }
}
#caption {
text-align: center;
color: var(--text-light);
padding: 10px;
font-size: 18px;