Skip to content

Commit a72bb11

Browse files
authored
Enhance values.html with SEO and style updates
Updated meta tags for SEO and improved styling for better user experience.
1 parent c3e6dc1 commit a72bb11

1 file changed

Lines changed: 56 additions & 22 deletions

File tree

values.html

Lines changed: 56 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,21 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Values & Principles - Islam in Rwanda</title>
6+
7+
<title>Values & Principles - Islam Rwanda</title>
8+
<meta name="description" content="Explore the core ethical values of Islam in Rwanda, including Peace (Salaam), Integrity, and the Rwandan value of Ubumuntu (Humanity).">
9+
10+
<meta property="og:site_name" content="Islam Rwanda">
11+
<meta property="og:title" content="Ethical Values & Principles - Islam Rwanda">
12+
<meta property="og:url" content="https://halalvibers.github.io/islam-Rwanda./values.html">
13+
<meta property="og:type" content="website">
14+
<meta property="og:description" content="Guiding principles of compassion, honesty, and social harmony within the Rwandan Muslim community.">
15+
16+
<meta name="google-site-verification" content="xW2dfAzjDEvTBF7K8veShiMS1npXoScRmTG1kKFBIoc" />
17+
718
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400&display=swap" rel="stylesheet">
8-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
919
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
20+
1021
<style>
1122
:root {
1223
--primary-green: #003314;
@@ -32,22 +43,24 @@
3243
}
3344
.logo { font-family: 'Cinzel', serif; color: var(--gold); font-weight: bold; font-size: 1.4rem; }
3445
.nav-links { display: flex; list-style: none; gap: 20px; margin: 0; }
35-
.nav-links a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; }
46+
.nav-links a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
47+
.nav-links a:hover { color: #fff; }
3648

3749
/* --- HERO --- */
3850
.values-hero {
3951
height: 35vh;
4052
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,31,12,0.9)),
41-
url('image/openbible.jpg');
53+
url('image/openquran.jpg'); /* Changed from bible to match context */
4254
background-size: cover; background-position: center;
4355
display: flex; justify-content: center; align-items: center; text-align: center;
56+
border-bottom: 3px solid var(--gold);
4457
}
4558
.values-hero h1 { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 2.8rem; margin: 0; letter-spacing: 2px; }
4659

4760
.container { max-width: 1100px; margin: 60px auto; padding: 0 20px; }
4861

4962
.intro-text {
50-
text-align: center; font-size: 1.1rem; max-width: 800px; margin: 0 auto 60px auto; color: #ccc;
63+
text-align: center; font-size: 1.15rem; max-width: 800px; margin: 0 auto 60px auto; color: #ccc;
5164
}
5265

5366
/* --- VALUES GRID --- */
@@ -61,43 +74,61 @@
6174
background: var(--deep-green);
6275
border: 1px solid rgba(212, 175, 55, 0.3);
6376
border-radius: 20px;
64-
padding: 40px 30px;
77+
padding: 45px 30px;
6578
text-align: center;
66-
transition: 0.4s;
79+
transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
6780
position: relative;
81+
display: flex;
82+
flex-direction: column;
83+
align-items: center;
6884
}
6985

7086
.value-card:hover {
7187
border-color: var(--gold);
72-
transform: translateY(-10px);
73-
box-shadow: 0 15px 35px rgba(0,0,0,0.6);
88+
transform: translateY(-12px);
89+
box-shadow: 0 20px 40px rgba(0,0,0,0.6);
7490
}
7591

7692
.icon-circle {
77-
width: 80px; height: 80px;
78-
background: rgba(212, 175, 55, 0.1);
93+
width: 85px; height: 85px;
94+
background: rgba(212, 175, 55, 0.08);
7995
border: 2px solid var(--gold);
8096
border-radius: 50%;
8197
display: flex; align-items: center; justify-content: center;
82-
margin: 0 auto 25px auto;
83-
font-size: 2rem; color: var(--gold-light);
98+
margin-bottom: 25px;
99+
font-size: 2.2rem; color: var(--gold-light);
100+
transition: 0.3s;
101+
}
102+
103+
.value-card:hover .icon-circle {
104+
background: var(--gold);
105+
color: var(--deep-green);
84106
}
85107

86-
.value-card h2 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 15px; }
87-
.value-card p { font-size: 0.95rem; color: #ddd; text-align: justify; }
108+
.value-card h2 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 15px; font-size: 1.5rem; }
109+
.value-card p { font-size: 0.95rem; color: #ddd; text-align: center; margin: 0; }
88110

89111
/* --- SUMMARY FOOTER --- */
90112
.summary-footer {
91113
margin-top: 80px;
92114
text-align: center;
93-
padding: 40px;
94-
border-top: 1px solid rgba(212, 175, 55, 0.2);
115+
padding: 50px 20px;
116+
background: rgba(212, 175, 55, 0.05);
117+
border-radius: 15px;
118+
border: 1px solid rgba(212, 175, 55, 0.2);
95119
font-family: 'Cinzel', serif;
96120
color: var(--gold-light);
97-
letter-spacing: 1px;
121+
letter-spacing: 1.5px;
122+
font-size: 1.1rem;
98123
}
99124

100-
footer { text-align: center; padding: 40px; color: #888; font-size: 0.8rem; border-top: 1px solid var(--gold); }
125+
footer { text-align: center; padding: 40px; color: #888; font-size: 0.8rem; border-top: 1px solid var(--gold); background: var(--deep-green); }
126+
127+
/* Mobile */
128+
@media (max-width: 600px) {
129+
.values-hero h1 { font-size: 1.8rem; }
130+
.intro-text { font-size: 1rem; }
131+
}
101132
</style>
102133
</head>
103134
<body>
@@ -108,7 +139,10 @@
108139
<li><a href="index.html">Home</a></li>
109140
<li><a href="aboutus.html">About Us</a></li>
110141
<li><a href="history.html">History</a></li>
142+
<li><a href="leaders&community.html">Leaders</a></li>
143+
<li><a href="infrastructure.html">Infrastructures</a></li>
111144
<li><a href="values.html" style="color: #fff; font-weight: bold;">Values</a></li>
145+
<li><a href="literature.html">Literature</a></li>
112146
<li><a href="contact.html">Contact</a></li>
113147
</ul>
114148
</nav>
@@ -126,7 +160,7 @@ <h1>Values & Principles</h1>
126160
<div class="value-card">
127161
<div class="icon-circle"><i class="fas fa-dove"></i></div>
128162
<h2>Peace (Salaam)</h2>
129-
<p>Rooted in the Arabic word <em>s-l-m</em>, peace in Islam means more than the absence of conflict. It is living in harmony with oneself and society through justice, compassion, and profound respect for human dignity.</p>
163+
<p>Rooted in the Arabic word <em>s-l-m</em>, peace in Islam means more than the absence of conflict. It is living in harmony with oneself and society through justice, compassion, and respect for human dignity.</p>
130164
</div>
131165

132166
<div class="value-card">
@@ -143,11 +177,11 @@ <h2>Ubumuntu</h2>
143177
</div>
144178

145179
<div class="summary-footer">
146-
Helping Muslims live in ways that benefit their families, communities, and the wider world.
180+
"Helping Muslims live in ways that benefit their families, communities, and the wider world."
147181
</div>
148182
</main>
149183

150184
<footer>&copy; 2026 Islam in Rwanda. All Rights Reserved.</footer>
151185

152186
</body>
153-
</html>
187+
</html>

0 commit comments

Comments
 (0)