-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
253 lines (247 loc) · 11.9 KB
/
resources.html
File metadata and controls
253 lines (247 loc) · 11.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Useful Resources | 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; }
}
.info-section { margin-bottom: 3rem; }
.info-section h2 { font-family: 'Calibri', 'Gill Sans', 'Segoe UI', Helvetica, Arial, sans-serif; color: var(--enrich-purple); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--enrich-purple); display: inline-block; }
.info-section h3 { color: var(--enrich-navy); margin: 1.5rem 0 0.75rem; }
.info-section p { color: var(--text-gray); margin-bottom: 1rem; }
.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; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.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.2rem; }
.card.blue-accent h3 { color: var(--enrich-blue); }
.card p, .card ul { color: var(--text-gray); font-size: 0.95rem; }
.card ul { margin-left: 1.2rem; margin-top: 0.5rem; }
.card li { margin-bottom: 0.4rem; }
a.card-link { text-decoration: none; display: block; cursor: pointer; }
a.card-link:hover { transform: translateY(-6px); }
a.card-link .learn-more { display: block; margin-top: 1rem; color: var(--enrich-purple); font-weight: 600; font-size: 0.9rem; }
a.card-link.blue-accent .learn-more { color: var(--enrich-blue); }
.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; }
.bgs-resources-card { background: linear-gradient(135deg, #006747 0%, #004d36 100%); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; color: white; }
.bgs-logo-text { width: 70px; height: 50px; background: white; color: #006747; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.bgs-content h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.bgs-content p { opacity: 0.9; font-size: 0.9rem; margin-bottom: 1rem; }
.bgs-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bgs-links a { background: white; color: #006747; padding: 0.5rem 1rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: all 0.2s ease; }
.bgs-links a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.link-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: all 0.3s ease; display: block; }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.link-card h4 { color: var(--enrich-blue); margin-bottom: 0.5rem; font-size: 1.1rem; }
.link-card p { color: var(--text-gray); font-size: 0.9rem; margin: 0; }
.link-card .link-url { color: var(--enrich-purple); font-size: 0.85rem; margin-top: 0.75rem; display: block; word-break: break-all; }
@media (max-width: 768px) {
.card-grid { grid-template-columns: 1fr; gap: 1rem; }
.bgs-resources-card { flex-direction: column; text-align: center; }
.bgs-links { justify-content: center; }
.links-grid { 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">Home</a>
<a href="about.html">About EnRICH</a>
<a href="services.html">Our Services</a>
<a href="resources.html" class="active">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="info-section">
<h2>Useful Resources & Links</h2>
<p>For more information about geriatric medicine, frailty, and local health services, please visit the following resources:</p>
<div class="links-grid">
<a href="https://www.bgs.org.uk/" target="_blank" rel="noopener noreferrer" class="link-card"><h4>British Geriatrics Society (BGS)</h4><p>The professional body for healthcare professionals who specialise in the care of older people.</p><span class="link-url">www.bgs.org.uk</span></a>
<a href="https://www.cuh.nhs.uk/" target="_blank" rel="noopener noreferrer" class="link-card"><h4>Cambridge University Hospitals</h4><p>Our host NHS Trust providing acute and specialist services at Addenbrooke's Hospital and The Rosie Hospital.</p><span class="link-url">www.cuh.nhs.uk</span></a>
<a href="https://www.cpft.nhs.uk/" target="_blank" rel="noopener noreferrer" class="link-card"><h4>Cambridgeshire & Peterborough NHS Foundation Trust (CPFT)</h4><p>Providing community and mental health services across Cambridgeshire and Peterborough.</p><span class="link-url">www.cpft.nhs.uk</span></a>
<a href="https://www.cpics.org.uk/" target="_blank" rel="noopener noreferrer" class="link-card"><h4>Cambridgeshire & Peterborough ICS</h4><p>The Integrated Care System bringing together NHS organisations, local authorities, and others.</p><span class="link-url">www.cpics.org.uk</span></a>
<a href="https://www.bgs.org.uk/resources/resource-series/fit-for-frailty" target="_blank" rel="noopener noreferrer" class="link-card"><h4>Fit for Frailty (BGS)</h4><p>Comprehensive guidance on frailty assessment and management.</p><span class="link-url">www.bgs.org.uk/resources</span></a>
<a href="https://www.resus.org.uk/respect" target="_blank" rel="noopener noreferrer" class="link-card"><h4>ReSPECT Process</h4><p>Information about Recommended Summary Plan for Emergency Care and Treatment.</p><span class="link-url">www.resus.org.uk/respect</span></a>
</div>
<div class="highlight-box" style="margin-top: 2rem;"><h4>Contact the EnRICH Team</h4><p>Healthcare professionals can access team contact details via the <a href="team.html" style="color: var(--enrich-purple); font-weight: 600;">Meet the Team</a> page using their EnRICH PIN code. For emergency situations, always call 999.</p></div>
</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>