-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
361 lines (351 loc) · 15.1 KB
/
index.html
File metadata and controls
361 lines (351 loc) · 15.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EnRICH - Enhanced Reviews in Care Homes | EnRICH</title>
<style>
:root {
--enrich-purple: #8B2A7D;
--enrich-purple-dark: #6B1F5F;
--enrich-purple-light: #A84D99;
--enrich-blue: #2D7BC4;
--enrich-blue-dark: #1E5A94;
--enrich-blue-light: #4A9AE8;
--enrich-navy: #1E3A5F;
--enrich-teal: #2A6575;
--white: #FFFFFF;
--off-white: #F8F9FA;
--light-gray: #E9ECEF;
--text-gray: #495057;
--light-purple: #F5EBF4;
--light-blue: #E8EEF4;
--bgs-green: #006747;
--shadow: 0 4px 20px rgba(30, 58, 95, 0.15);
--shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
background: var(--off-white);
color: var(--enrich-navy);
line-height: 1.6;
min-height: 100vh;
}
header {
background: linear-gradient(135deg, var(--enrich-purple) 0%, var(--enrich-purple-dark) 100%);
color: var(--white);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.logo-section {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
color: var(--white);
}
.logo-section img {
height: 120px;
width: auto;
background: white;
border-radius: 10px;
padding: 6px;
}
.logo-text h1 {
font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 0.5px;
}
.logo-text p {
font-size: 0.9rem;
opacity: 0.9;
font-weight: 300;
}
nav {
display: flex;
gap: 0.4rem;
flex-wrap: wrap;
}
nav a {
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.3);
color: var(--white);
padding: 0.55rem 1rem;
border-radius: 6px;
font-family: inherit;
font-size: 0.85rem;
font-weight: 600;
transition: all 0.3s ease;
text-decoration: none;
}
nav a:hover, nav a.active {
background: var(--white);
color: var(--enrich-purple);
}
nav a.pin-link { border-color: rgba(255,255,255,0.5); }
.nhs-banner {
background: var(--enrich-blue);
color: var(--white);
padding: 0.5rem 1rem;
font-size: 0.85rem;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.nhs-banner .banner-text { text-align: center; flex: 1; }
.logoff-btn {
position: absolute;
right: 1rem;
background: rgba(255,255,255,0.2);
border: 1px solid rgba(255,255,255,0.5);
color: white;
padding: 0.25rem 0.75rem;
font-size: 0.75rem;
font-weight: 600;
border-radius: 4px;
cursor: pointer;
font-family: inherit;
transition: all 0.2s ease;
display: none;
}
.logoff-btn:hover { background: rgba(255,255,255,0.35); }
main {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
footer {
background: var(--enrich-navy);
color: var(--white);
padding: 2rem;
margin-top: 3rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-content p { opacity: 0.9; font-size: 0.9rem; }
.footer-content a { color: var(--enrich-blue-light); }
@media (max-width: 768px) {
.header-content { flex-direction: column; text-align: center; padding: 1rem; }
.logo-section { flex-direction: column; gap: 0.5rem; }
.logo-section img { height: 100px; }
.logo-text h1 { font-size: 1.5rem; }
nav { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; justify-content: flex-start; padding-bottom: 5px; }
nav::-webkit-scrollbar { display: none; }
nav a { flex-shrink: 0; padding: 0.55rem 0.8rem; font-size: 0.8rem; min-height: 44px; display: flex; align-items: center; }
.nhs-banner { font-size: 0.75rem; padding: 0.6rem 1rem; }
main { padding: 1rem; }
.footer-content { flex-direction: column; text-align: center; }
}
.hero {
background: linear-gradient(135deg, var(--enrich-navy) 0%, var(--enrich-teal) 100%);
color: var(--white);
border-radius: 16px;
padding: 3rem;
margin-bottom: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%; right: -50%;
width: 100%; height: 200%;
background: radial-gradient(circle, rgba(139,42,125,0.2) 0%, transparent 70%);
pointer-events: none;
}
.hero h2 { font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 2.2rem; margin-bottom: 1rem; position: relative; }
.hero p { font-size: 1.15rem; max-width: 800px; margin: 0 auto 1.5rem; opacity: 0.95; position: relative; }
.hero-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; position: relative; }
.hero-referral-btn {
display: flex; align-items: center; gap: 1rem;
background: var(--white); color: var(--enrich-purple);
padding: 1rem 2rem; border-radius: 12px;
text-decoration: none; font-size: 1.2rem; font-weight: 700;
box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: all 0.3s ease;
}
.hero-referral-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.hero-btn-logo { height: 50px; width: auto; border-radius: 6px; }
.hero-map-link {
display: flex; align-items: center;
background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5);
color: var(--white); padding: 1rem 1.5rem; border-radius: 12px;
text-decoration: none; font-size: 1.1rem; font-weight: 600; transition: all 0.3s ease;
}
.hero-map-link:hover { background: rgba(255,255,255,0.25); border-color: var(--white); transform: translateY(-3px); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.card {
background: var(--white); border-radius: 12px; padding: 1.5rem;
box-shadow: var(--shadow); border-left: 4px solid var(--enrich-purple); transition: all 0.3s ease;
text-decoration: none; color: inherit; display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(30, 58, 95, 0.25); }
.card.blue-accent { border-left-color: var(--enrich-blue); }
.card h3 { font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif; color: var(--enrich-purple); margin-bottom: 0.75rem; font-size: 1.15rem; }
.card.blue-accent h3 { color: var(--enrich-blue); }
.card p { color: var(--text-gray); font-size: 0.95rem; }
.card ul { color: var(--text-gray); font-size: 0.95rem; margin-left: 1.2rem; margin-top: 0.5rem; }
.card li { margin-bottom: 0.4rem; }
.card .lock-icon { font-size: 1.2rem; float: right; opacity: 0.7; }
.highlight-box { background: linear-gradient(135deg, rgba(139,42,125,0.08) 0%, rgba(45,123,196,0.08) 100%); border-left: 4px solid var(--enrich-purple); padding: 1.5rem; border-radius: 0 10px 10px 0; margin: 1.5rem 0; }
.highlight-box h4 { color: var(--enrich-purple); margin-bottom: 0.5rem; }
.highlight-box a { color: var(--enrich-purple); font-weight: 600; }
.portal-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.portal-card {
background: var(--white); border-radius: 12px; padding: 2rem;
box-shadow: var(--shadow); text-decoration: none; color: inherit;
transition: all 0.3s ease; border-top: 4px solid var(--enrich-purple);
}
.portal-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(30, 58, 95, 0.25); }
.portal-card.blue-top { border-top-color: var(--enrich-blue); }
.portal-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.portal-card h3 { font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif; color: var(--enrich-navy); margin-bottom: 0.5rem; font-size: 1.15rem; }
.portal-card p { color: var(--text-gray); font-size: 0.9rem; }
.portal-card .lock-badge {
display: inline-block; background: var(--enrich-purple); color: white;
font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem;
border-radius: 20px; margin-top: 1rem;
}
.portal-card.blue-top .lock-badge { background: var(--enrich-blue); }
@media (max-width: 768px) {
.hero { padding: 1.5rem 1rem; border-radius: 12px; }
.hero h2 { font-size: 1.4rem; }
.hero p { font-size: 1rem; }
.hero-actions { flex-direction: column; gap: 1rem; }
.hero-referral-btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1.1rem; min-height: 60px; }
.hero-btn-logo { height: 40px; }
.hero-map-link { width: 100%; justify-content: center; padding: 1rem 1.5rem; min-height: 50px; }
.card-grid { grid-template-columns: 1fr; gap: 1rem; }
.portal-cards { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header>
<div class="header-content">
<a href="index.html" class="logo-section">
<img src="EnRICH_Logo_solid.png" alt="EnRICH Logo">
<div class="logo-text"><h1>EnRICH</h1><p>Enhanced Reviews in Care Homes</p></div>
</a>
<nav>
<a href="index.html" class="active">Home</a>
<a href="about.html">About EnRICH</a>
<a href="services.html">Our Services</a>
<a href="resources.html">Resources</a>
<a href="care-homes.html">Our Care Homes</a>
<a href="team.html" class="pin-link">🔒 Meet the Team</a>
<a href="referral.html" class="pin-link">🔒 Make a Referral</a>
<a href="staff-portal.html" class="pin-link">🔒 Staff Portal</a>
</nav>
</div>
</header>
<div class="nhs-banner"><span class="banner-text">A service provided by <strong>Cambridge University Hospitals NHS Foundation Trust</strong> & <strong>Cambridgeshire & Peterborough NHS Foundation Trust</strong></span></div>
<main>
<div class="hero">
<h2>Specialist Geriatrician Care for Care Home Residents</h2>
<p>EnRICH delivers integrated geriatrician-led care spanning community, emergency department, and inpatient settings to improve outcomes for some of our most vulnerable patients.</p>
<div class="hero-actions">
<a href="referral.html" class="hero-referral-btn">
<img src="EnRICH_Logo_solid.png" alt="EnRICH Logo" class="hero-btn-logo">
<span>Make a Referral</span>
</a>
<a href="https://mjb302.github.io/enrich-map/" target="_blank" class="hero-map-link">
<span>📍 View Care Home Map</span>
</a>
</div>
</div>
<div class="card-grid">
<a href="families.html" class="card">
<h3>For Residents & Families</h3>
<p>Our specialist geriatricians provide comprehensive assessments in the care home, ensuring personalised care that respects your wishes and preferences.</p>
<ul>
<li>Holistic health assessments</li>
<li>Advance care planning discussions</li>
<li>Medication reviews</li>
<li>Family involvement in care decisions</li>
</ul>
</a>
<a href="staff-portal.html" class="card blue-accent">
<span class="lock-icon">🔒</span>
<h3>For Care Home Staff</h3>
<p>We work alongside you to enhance resident care through education, support, and clear clinical guidance.</p>
<ul>
<li>Regular MDT meetings</li>
<li>Clinical training and support</li>
<li>Rapid access to specialist advice</li>
<li>Clear escalation pathways</li>
</ul>
</a>
<a href="staff-portal.html" class="card">
<span class="lock-icon">🔒</span>
<h3>For GPs & Community Teams</h3>
<p>EnRICH complements primary care delivery with specialist geriatric input for your most complex patients.</p>
<ul>
<li>Complex medication reviews</li>
<li>Advance care planning support</li>
<li>Shared care for multimorbid residents</li>
<li>Seamless communication</li>
</ul>
</a>
</div>
<div class="highlight-box">
<h4>Need to make a referral?</h4>
<p>Healthcare professionals and care home staff can refer residents to our service. Go to <a href="referral.html">Make a Referral</a> and use your EnRICH PIN code to access the referral form.</p>
</div>
<h2 style="font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif; color: var(--enrich-purple); margin: 2.5rem 0 0.5rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--enrich-purple); display: inline-block;">Quick Access</h2>
<p style="color: var(--text-gray); margin-bottom: 1rem;">Key resources and portals for healthcare professionals and care home staff.</p>
<div class="portal-cards">
<a href="staff-portal.html" class="portal-card">
<div class="portal-card-icon">🔒</div>
<h3>Staff Portal</h3>
<p>Access policies, guidelines, timetables, and GP practice contact details for care home staff and healthcare professionals.</p>
<span class="lock-badge">PIN Required</span>
</a>
<a href="resources.html" class="portal-card blue-top">
<div class="portal-card-icon">📚</div>
<h3>Resources & Links</h3>
<p>External resources including BGS guidelines, NHS Trust information, frailty guidance, and the ReSPECT process.</p>
<span class="lock-badge" style="background: var(--enrich-blue);">Open Access</span>
</a>
<a href="https://mjb302.github.io/enrich-map/" target="_blank" class="portal-card">
<div class="portal-card-icon">🗺️</div>
<h3>Care Home Map</h3>
<p>View enrolled care homes across Cambridgeshire on our interactive map with contact details and service information.</p>
<span class="lock-badge" style="background: var(--enrich-teal);">Open Access</span>
</a>
</div>
</main>
<footer>
<div class="footer-content">
<p>© 2026 EnRICH - Enhanced Reviews in Care Homes<br>Cambridge University Hospitals NHS Foundation Trust</p>
<p>
<a href="resources.html">Resources</a> |
<a href="care-homes.html">Our Care Homes</a> |
<a href="https://mjb302.github.io/enrich-map/" target="_blank">Care Home Map</a>
</p>
</div>
</footer>
</body>
</html>