forked from Ali-M658/ReEnvision-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
347 lines (302 loc) · 9.04 KB
/
Copy pathstyle.css
File metadata and controls
347 lines (302 loc) · 9.04 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
/* ==========================================================================
GOOGLE FONTS - BRAND DIRECTIVES
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
/* ==========================================================================
1. GLOBAL VARIABLES & DESIGN SYSTEM (ADHERING TO BRANDING BOOK)
========================================================================== */
:root {
/* Brand Approved Palette */
--navy: #1d588a; /* Main Deep Blue: Trust & Stability */
--mid-blue: #1f639e; /* Accent Blue: Innovation & Growth */
--baby-blue: #4aa3df; /* Supporting Contrast Tint */
--accent: #1f639e; /* Action Primary */
--white: #ffffff;
--light-bg: #F0F8FF; /* Ice Blue: Openness & Equality */
--text-dark: #1a2a3a; /* Off-black charcoal for readability */
--text-mid: #4a5a6a;
--border: #d0e2f0;
/* Brand Typography Directives */
--font-display: 'Garamond', 'Times New Roman', serif; /* Approved Headings */
--font-body: 'Montserrat', sans-serif; /* Approved Body Text */
/* Structural Accents */
--radius-sm: 4px;
--radius-md: 8px;
--transition: all 0.25s ease-in-out;
--shadow-card: 0 4px 15px rgba(29, 88, 138, 0.06);
}
/* ==========================================================================
2. BASE STYLES & RESET
========================================================================== */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-body);
background-color: var(--white);
color: var(--text-dark);
line-height: 1.65;
font-size: 16px;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
/* ==========================================================================
3. STRUCTURAL LAYOUT UTILITIES
========================================================================== */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.section {
padding: 90px 0;
}
.text-center { text-align: center; }
.divider {
width: 50px;
height: 3px;
background: var(--mid-blue);
margin: 16px auto 32px;
}
.eyebrow {
font-family: var(--font-body);
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--mid-blue);
margin-bottom: 12px;
}
/* Heading Treatments (Garamond/Serif Stack) */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
color: var(--navy);
font-weight: normal; /* Classic editorial appearance */
line-height: 1.2;
}
h1 { font-size: 3.2rem; margin-bottom: 20px; }
h2 { font-size: 2.4rem; margin-bottom: 16px; }
h3 { font-size: 1.75rem; margin-bottom: 12px; }
/* ==========================================================================
4. NAVIGATION BAR (FIXING LOGO CONTRAST & MAKING IT BIGGER)
========================================================================== */
.nav {
position: sticky;
top: 0;
z-index: 1000;
background: var(--light-bg); /* Use ice-blue backdrop to support blue logo variants */
border-bottom: 1px solid var(--border);
padding: 12px 0;
}
.nav-inner {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
display: flex;
align-items: center;
}
.logo-img {
height: 60px; /* Change 1: Expanded from 42px to make the logo prominent */
width: auto; /* Retains original asset aspect ratio scale */
display: block;
object-fit: contain;
}
.nav-links {
display: flex;
align-items: center;
gap: 32px;
}
.nav-links a {
color: var(--text-dark);
font-size: 0.95rem;
font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--navy);
font-weight: 600;
}
.nav-links .nav-cta {
background: var(--navy);
color: var(--white);
padding: 10px 20px;
border-radius: var(--radius-sm);
font-weight: 600;
}
.nav-links .nav-cta:hover {
background: var(--mid-blue);
}
/* ==========================================================================
5. BUTTON COMPONENTS
========================================================================== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 28px;
font-family: var(--font-body);
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.03em;
text-transform: uppercase;
border-radius: var(--radius-sm);
transition: var(--transition);
border: 2px solid transparent;
cursor: pointer;
}
.btn-primary {
background: var(--navy);
color: var(--white);
}
.btn-primary:hover {
background: var(--mid-blue);
transform: translateY(-1px);
}
.btn-outline {
background: transparent;
border-color: rgba(255, 255, 255, 0.6);
color: var(--white);
}
.btn-outline:hover {
background: rgba(255, 255, 255, 0.15);
border-color: var(--white);
}
.btn-outline-dark {
background: transparent;
border-color: var(--navy);
color: var(--navy);
}
.btn-outline-dark:hover {
background: var(--light-bg);
}
/* ==========================================================================
6. GRID & LAYOUT UTILITIES
========================================================================== */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 32px;
}
.team-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 32px 24px;
text-align: center;
box-shadow: var(--shadow-card);
}
.team-avatar {
width: 64px;
height: 64px;
background: var(--light-bg);
color: var(--navy);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
font-weight: bold;
}
/* Footer Layout */
.footer {
background: var(--navy); /* Stable corporate bottom frame */
color: rgba(255, 255, 255, 0.75);
padding: 80px 0 40px;
}
.footer h5 {
color: var(--white);
font-family: var(--font-body);
font-weight: 600;
font-size: 1rem;
margin-bottom: 20px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr repeat(3, 1fr);
gap: 48px;
margin-bottom: 40px;
}
.footer-brand p {
font-size: 0.9rem;
margin-top: 12px;
}
.footer-col a {
display: block;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 10px;
font-size: 0.9rem;
}
.footer-col a:hover {
color: var(--white);
text-decoration: underline;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.15);
padding-top: 24px;
display: flex;
justify-content: space-between;
font-size: 0.85rem;
}
/* ==========================================================================
7. CONTACT HERO CONTRAST FIXES (OVERRIDING TIMELINE PROSE BLOCKS)
========================================================================== */
/* Change 2: Targets the dark hero block wrapper to pull clean text separation */
.page-hero-inner .eyebrow {
color: #F0F8FF !important; /* Re-adjusts small label text to brand ice-blue */
font-weight: 700;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.page-hero-inner h1 {
color: #ffffff !important; /* Forces titles to 100% white against gradients */
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.page-hero-inner p {
color: rgba(255, 255, 255, 0.88) !important; /* Forces supporting text elements readable */
}
/* ==========================================================================
CONTACT US HERO TEXT OVERLAP & CONTRAST FIX
========================================================================== */
/* 1. Force the background to apply cleanly across the whole block */
.page-hero {
background: linear-gradient(135deg, #1d588a 0%, #1f639e 100%) !important;
padding: 100px 0 80px !important;
}
/* 2. Target the Eyebrow ("Contact Us") to use high-contrast Ice Blue */
.page-hero .eyebrow,
.page-hero-inner .eyebrow,
.page-hero div.eyebrow {
color: #F0F8FF !important;
font-weight: 700 !important;
letter-spacing: 0.1em !important;
display: block !important;
margin-bottom: 12px !important;
}
/* 3. Force the main Title ("We'd Love to Hear From You") to crisp 100% white */
.page-hero h1,
.page-hero-inner h1,
.page-hero h2,
.page-hero-inner h2 {
color: #ffffff !important;
font-family: 'Garamond', 'Times New Roman', serif !important;
font-size: 3.2rem !important;
font-weight: normal !important;
line-height: 1.2 !important;
margin-top: 0 !important;
margin-bottom: 16px !important;
}
/* 4. Force any description subtext to be light and fully readable */
.page-hero p,
.page-hero-inner p {
color: rgba(255, 255, 255, 0.9) !important;
font-family: 'Montserrat', sans-serif !important;
font-size: 1.1rem !important;
max-width: 600px !important;
}