| 1 |
1 |
/* ----------------------------------------------------------------------------- |
| 2 |
2 |
Lou-Ka — Agrégateur de logements à louer (province de Québec) |
| 3 |
3 |
Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 |
|
− styles.css : identité visuelle officielle Lou-Ka |
| 5 |
|
− · Palette : marine #0B1330 · bleu vif #2258FF · orange #FF6A00 |
| 6 |
|
− gris pâle #F2F2F2 · blanc #FFFFFF |
| 7 |
|
− · Typo : Inter (fallback SF Pro / system-ui) |
| 8 |
|
− · Style : minimaliste chaleureux — coins très arrondis, pill-shaped, |
| 9 |
|
− ombres douces diffuses, touches « liquid glass » |
|
4 |
+ styles.css : styles LOCAUX de Lou-Ka, posés SUR le design system commun |
|
5 |
+ Groupe KA « éditorial sharp » (frontend/src/ka/tokens.css, importé AVANT |
|
6 |
+ ce fichier dans main.tsx). |
|
7 |
+ · Palette commune : papier #f5f3ee · encre #141814 · vert profond #1c5c41 |
|
8 |
+ · ACCENT Lou-Ka : orange #FF6A00 (seule surcharge de tokens.css) |
|
9 |
+ · Typo : display Space Grotesk / texte Inter / micro-étiquettes JetBrains Mono |
|
10 |
+ · Signature : bordures encre 1,5 px + ombres décalées dures, rayons 10/6 px |
| 10 |
11 |
· Baseline : « La porte d'entrée vers votre prochain chez-vous. » |
| 11 |
12 |
· 100 % adaptatif mobile (PWA installable, safe-areas iOS) |
| 12 |
13 |
----------------------------------------------------------------------------- */ |
| 13 |
14 |
:root { |
| 14 |
|
− /* palette officielle */ |
| 15 |
|
− --navy: #0b1330; |
| 16 |
|
− --blue: #2258ff; |
| 17 |
|
− --orange: #ff6a00; |
| 18 |
|
− --grey: #f2f2f2; |
|
15 |
+ /* ---- ACCENT Lou-Ka (surcharge officielle des jetons ka-ui) ---- */ |
|
16 |
+ --accent: #ff6a00; |
|
17 |
+ --accent-soft: #fff1e6; |
|
18 |
+ --accent-deep: #cc5500; |
|
19 |
+ --on-accent: #ffffff; |
|
20 |
+ --lime: var(--accent); |
|
21 |
+ --lime-soft: var(--accent-soft); |
|
22 |
+ |
|
23 |
+ /* ---- Alias hérités de l'ancienne identité marine/bleu — remappés sur |
|
24 |
+ les jetons communs (le fond redevient papier via tokens.css) ---- */ |
|
25 |
+ --navy: var(--ink); |
|
26 |
+ --navy-soft: var(--surface-2); |
|
27 |
+ --blue: var(--green); |
|
28 |
+ --blue-soft: #e8f0ea; |
|
29 |
+ --orange: var(--accent); |
|
30 |
+ --orange-soft: var(--accent-soft); |
|
31 |
+ --orange-deep: var(--accent-deep); |
|
32 |
+ --grey: var(--surface-2); |
| 19 |
33 |
--white: #ffffff; |
| 20 |
|
− |
| 21 |
|
− /* dérivés (nuances des couleurs officielles) */ |
| 22 |
|
− --orange-deep: #e55f00; |
| 23 |
|
− --orange-soft: #fff1e6; |
| 24 |
|
− --blue-soft: #e9efff; |
| 25 |
|
− --navy-soft: #eef0f6; |
| 26 |
|
− |
| 27 |
|
− /* jetons sémantiques */ |
| 28 |
|
− --paper: var(--white); |
| 29 |
|
− --surface: var(--white); |
| 30 |
|
− --surface-2: var(--grey); |
| 31 |
|
− --ink: var(--navy); |
| 32 |
|
− --ink-2: #3e4560; |
| 33 |
|
− --ink-3: #8a90a5; |
| 34 |
|
− --line: rgba(11, 19, 48, 0.1); |
| 35 |
|
− --line-strong: rgba(11, 19, 48, 0.16); |
| 36 |
|
− --danger: #d64545; |
| 37 |
|
− |
| 38 |
|
− /* alias hérités (compatibilité) */ |
| 39 |
|
− --green: var(--blue); |
| 40 |
|
− --green-deep: var(--navy); |
| 41 |
|
− --lime: var(--orange); |
| 42 |
|
− --lime-soft: var(--orange-soft); |
| 43 |
|
− --amber: var(--orange); |
| 44 |
|
− --amber-soft: var(--orange-soft); |
| 45 |
|
− |
| 46 |
|
− /* géométrie : coins très arrondis, contrôles pill */ |
| 47 |
|
− --r-card: 18px; |
| 48 |
|
− --r-ctl: 12px; |
| 49 |
|
− --r-pill: 999px; |
| 50 |
|
− |
| 51 |
|
− /* ombres douces et diffuses, jamais dures */ |
| 52 |
|
− --shadow-flat: 0 1px 3px rgba(11, 19, 48, 0.06); |
| 53 |
|
− --shadow-off: 0 16px 40px rgba(11, 19, 48, 0.14); |
| 54 |
|
− --shadow-off-soft: 0 8px 24px rgba(11, 19, 48, 0.08); |
| 55 |
|
− |
| 56 |
|
− --font-display: "Inter", "SF Pro Display", system-ui, sans-serif; |
| 57 |
|
− --font-body: "Inter", "SF Pro Text", system-ui, sans-serif; |
| 58 |
|
− --font-mono: "Inter", "SF Pro Text", system-ui, sans-serif; |
| 59 |
|
−} |
| 60 |
|
− |
| 61 |
|
−* { box-sizing: border-box; } |
| 62 |
|
−html { scroll-behavior: smooth; } |
| 63 |
|
−body { |
| 64 |
|
− margin: 0; |
| 65 |
|
− background: var(--paper); |
| 66 |
|
− color: var(--ink); |
| 67 |
|
− font-family: var(--font-body); |
| 68 |
|
− font-size: 15px; |
| 69 |
|
− line-height: 1.55; |
| 70 |
|
− -webkit-font-smoothing: antialiased; |
| 71 |
|
− padding-bottom: env(safe-area-inset-bottom); |
| 72 |
34 |
} |
| 73 |
|
−#root { position: relative; z-index: 1; } |
| 74 |
35 |
|
| 75 |
|
−h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 0; } |
| 76 |
|
−a { color: inherit; text-decoration: none; } |
|
36 |
+#root { position: relative; z-index: 1; } |
|
37 |
+a { text-decoration: none; } |
| 77 |
38 |
button { font-family: inherit; } |
| 78 |
|
−img { display: block; } |
| 79 |
|
−::selection { background: var(--orange); color: var(--white); } |
| 80 |
39 |
|
| 81 |
40 |
.mono { font-family: var(--font-mono); } |
| 82 |
|
−/* mot-clé accentué des titres — toujours orange (« chez-vous. ») */ |
| 83 |
|
−h1 .hl, h2 .hl { color: var(--orange); } |
| 84 |
|
−.kicker { |
| 85 |
|
− font-family: var(--font-body); font-size: 12px; font-weight: 600; |
| 86 |
|
− text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); |
| 87 |
|
− display: inline-flex; align-items: center; gap: 8px; |
| 88 |
|
−} |
| 89 |
|
−.kicker::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--orange); } |
| 90 |
|
− |
| 91 |
|
−.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; } |
| 92 |
|
−@media (max-width: 640px) { .container { padding: 0 16px; } } |
| 93 |
41 |
|
| 94 |
42 |
/* ================= Header ================= */ |
| 95 |
43 |
.header { |
| 143 |
91 |
letter-spacing: -0.03em; max-width: 900px; margin-top: 14px; color: var(--navy); |
| 144 |
92 |
} |
| 145 |
93 |
.hero h1 .outline { color: var(--navy); } |
| 146 |
|
−.hero h1 .hl { color: var(--orange); } |
| 147 |
94 |
.hero p.lede { color: var(--ink-2); font-size: 17px; max-width: 640px; margin: 18px 0 0; } |
| 148 |
95 |
.stat-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; } |
| 149 |
96 |
.stat-chip { |
| 150 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); |
|
97 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-pill); |
| 151 |
98 |
padding: 8px 16px; font-size: 12.5px; font-weight: 500; |
| 152 |
99 |
color: var(--ink-2); display: flex; gap: 8px; align-items: center; |
| 153 |
100 |
box-shadow: var(--shadow-flat); |
| 181 |
128 |
|
| 182 |
129 |
/* ================= Filter bar ================= */ |
| 183 |
130 |
.filterbar { |
| 184 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); |
|
131 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 185 |
132 |
box-shadow: var(--shadow-off-soft); padding: 14px; margin: 30px 0 6px; |
| 186 |
133 |
display: flex; flex-direction: column; gap: 0; min-width: 0; |
| 187 |
134 |
} |
| 197 |
144 |
} |
| 198 |
145 |
.f-search:focus-within { |
| 199 |
146 |
background: var(--white); border-color: var(--blue); |
| 200 |
|
− box-shadow: 0 0 0 3px rgba(34, 88, 255, 0.15); |
|
147 |
+ box-shadow: 0 0 0 3px rgba(28, 92, 65, 0.15); |
| 201 |
148 |
} |
| 202 |
149 |
.f-search input { |
| 203 |
150 |
border: none; background: none; outline: none; flex: 1; min-width: 0; |
| 210 |
157 |
} |
| 211 |
158 |
.f-ctl { |
| 212 |
159 |
flex: 0 1 auto; min-width: 0; display: flex; flex-direction: column; justify-content: center; |
| 213 |
|
− gap: 2px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); |
|
160 |
+ gap: 2px; border: 1.5px solid var(--ink); border-radius: 14px; background: var(--surface); |
| 214 |
161 |
padding: 7px 14px 6px; min-height: 52px; cursor: pointer; |
| 215 |
162 |
transition: box-shadow 0.15s ease, border-color 0.15s ease; |
| 216 |
163 |
} |
| 217 |
|
−.f-ctl:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(34, 88, 255, 0.15); } |
|
164 |
+.f-ctl:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 92, 65, 0.15); } |
| 218 |
165 |
.f-ctl > span { |
| 219 |
166 |
font-size: 9.5px; font-weight: 700; |
| 220 |
167 |
text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); |
| 224 |
171 |
font-weight: 700; font-size: 14.5px; color: var(--navy); cursor: pointer; |
| 225 |
172 |
appearance: none; -webkit-appearance: none; padding-right: 16px; min-width: 0; max-width: 170px; |
| 226 |
173 |
text-overflow: ellipsis; |
| 227 |
|
− background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%230B1330'/%3E%3C/svg%3E"); |
|
174 |
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%23141814'/%3E%3C/svg%3E"); |
| 228 |
175 |
background-repeat: no-repeat; background-position: right center; |
| 229 |
176 |
} |
| 230 |
177 |
.range-pair { display: flex; align-items: center; gap: 4px; } |
| 231 |
178 |
.range-pair select { max-width: 86px; } |
| 232 |
179 |
.range-sep { color: var(--ink-3); font-size: 11px; } |
| 233 |
180 |
.f-more { |
| 234 |
|
− flex: none; align-self: stretch; border: 1px solid var(--line-strong); border-radius: var(--r-pill); |
|
181 |
+ flex: none; align-self: stretch; border: 1.5px solid var(--ink); border-radius: var(--r-pill); |
| 235 |
182 |
background: var(--surface); color: var(--navy); padding: 0 20px; cursor: pointer; |
| 236 |
183 |
font-family: var(--font-display); font-weight: 600; font-size: 14px; min-height: 52px; |
| 237 |
184 |
transition: all 0.13s ease; |
| 254 |
201 |
.f-group-end { justify-content: flex-end; } |
| 255 |
202 |
.f-group .btn:disabled { opacity: 0.4; cursor: default; } |
| 256 |
203 |
.f-native { |
| 257 |
|
− border: 1px solid var(--line); background: var(--grey); border-radius: var(--r-ctl); |
|
204 |
+ border: 1.5px solid var(--ink); background: var(--grey); border-radius: var(--r-ctl); |
| 258 |
205 |
padding: 10px 30px 10px 14px; font-size: 14px; color: var(--ink); outline: none; |
| 259 |
206 |
font-family: inherit; min-height: 42px; width: 100%; min-width: 0; |
| 260 |
207 |
appearance: none; -webkit-appearance: none; |
| 261 |
|
− background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230B1330'/%3E%3C/svg%3E"); |
|
208 |
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23141814'/%3E%3C/svg%3E"); |
| 262 |
209 |
background-repeat: no-repeat; background-position: right 12px center; |
| 263 |
210 |
} |
| 264 |
|
−.f-native:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(34, 88, 255, 0.15); background: var(--white); } |
|
211 |
+.f-native:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 92, 65, 0.15); background: var(--white); } |
| 265 |
212 |
|
| 266 |
213 |
/* segments (pilules soudées) */ |
| 267 |
214 |
.seg { display: inline-flex; flex-wrap: wrap; row-gap: 6px; } |
| 268 |
215 |
.seg button { |
| 269 |
|
− border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-2); |
|
216 |
+ border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink-2); |
| 270 |
217 |
padding: 8px 14px; font-family: var(--font-display); font-weight: 600; font-size: 13px; |
| 271 |
218 |
cursor: pointer; margin-left: -1px; white-space: nowrap; min-height: 38px; |
| 272 |
219 |
transition: all 0.12s ease; |
| 280 |
227 |
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 2px; } |
| 281 |
228 |
.pill { |
| 282 |
229 |
display: inline-flex; align-items: center; gap: 7px; |
| 283 |
|
− border: 1px solid rgba(34, 88, 255, 0.3); background: var(--blue-soft); color: var(--blue); |
|
230 |
+ border: 1px solid rgba(28, 92, 65, 0.3); background: var(--blue-soft); color: var(--blue); |
| 284 |
231 |
border-radius: var(--r-pill); padding: 6px 14px; font-size: 12.5px; font-weight: 600; |
| 285 |
232 |
cursor: pointer; transition: all 0.13s ease; |
| 286 |
233 |
} |
| 299 |
246 |
text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); padding-left: 2px; |
| 300 |
247 |
} |
| 301 |
248 |
.field input, .field select { |
| 302 |
|
− border: 1px solid var(--line); background: var(--grey); border-radius: var(--r-ctl); |
|
249 |
+ border: 1.5px solid var(--ink); background: var(--grey); border-radius: var(--r-ctl); |
| 303 |
250 |
padding: 11px 14px; font-size: 15px; color: var(--ink); outline: none; font-family: inherit; |
| 304 |
251 |
transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; min-height: 44px; |
| 305 |
252 |
appearance: none; -webkit-appearance: none; |
| 306 |
253 |
} |
| 307 |
254 |
.field select { |
| 308 |
|
− background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230B1330'/%3E%3C/svg%3E"); |
|
255 |
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23141814'/%3E%3C/svg%3E"); |
| 309 |
256 |
background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px; |
| 310 |
257 |
} |
| 311 |
258 |
.field input:focus, .field select:focus { |
| 312 |
259 |
border-color: var(--blue); background: var(--white); |
| 313 |
|
− box-shadow: 0 0 0 3px rgba(34, 88, 255, 0.15); |
|
260 |
+ box-shadow: 0 0 0 3px rgba(28, 92, 65, 0.15); |
| 314 |
261 |
} |
| 315 |
|
−.btn { |
| 316 |
|
− border: 1px solid transparent; border-radius: var(--r-pill); padding: 11px 22px; |
| 317 |
|
− font-weight: 600; font-size: 14px; cursor: pointer; min-height: 44px; |
| 318 |
|
− transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease; |
| 319 |
|
− font-family: var(--font-display); letter-spacing: 0.01em; |
| 320 |
|
−} |
| 321 |
|
−.btn:active { transform: translateY(1px); } |
| 322 |
|
−.btn-primary { |
| 323 |
|
− background: var(--orange); color: var(--white); |
| 324 |
|
− box-shadow: 0 6px 18px rgba(255, 106, 0, 0.32); |
| 325 |
|
−} |
| 326 |
|
−.btn-primary:hover { background: var(--orange-deep); } |
| 327 |
|
−.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); } |
| 328 |
|
−.btn-ghost:hover { background: var(--navy-soft); border-color: var(--navy); } |
|
262 |
+/* .btn / .btn-primary / .btn-ghost : fournis par tokens.css (ka-ui). */ |
| 329 |
263 |
|
| 330 |
264 |
/* ================= Chips ================= */ |
| 331 |
265 |
.chips { display: flex; gap: 8px; margin: 16px 0 4px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; } |
| 332 |
266 |
.chips::-webkit-scrollbar { display: none; } |
| 333 |
267 |
.chip { |
| 334 |
|
− border: 1px solid var(--line-strong); background: var(--surface); color: var(--navy); |
| 335 |
|
− border-radius: var(--r-pill); padding: 8px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; |
|
268 |
+ border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink); |
|
269 |
+ border-radius: var(--r-pill); padding: 8px 18px; font-size: 13px; font-weight: 700; cursor: pointer; |
| 336 |
270 |
font-family: var(--font-display); white-space: nowrap; min-height: 40px; |
| 337 |
|
− transition: all 0.13s ease; |
|
271 |
+ transition: transform 0.13s, box-shadow 0.13s, background 0.13s, color 0.13s; |
| 338 |
272 |
} |
| 339 |
|
−.chip:hover { background: var(--blue-soft); border-color: var(--blue); color: var(--blue); transform: translateY(-1px); } |
| 340 |
|
−.chip.on { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 6px 16px rgba(34, 88, 255, 0.28); } |
|
273 |
+.chip:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); } |
|
274 |
+.chip.on { background: var(--ink); border-color: var(--ink); color: var(--accent); box-shadow: 3px 3px 0 var(--accent); } |
| 341 |
275 |
|
| 342 |
276 |
/* ================= Results ================= */ |
| 343 |
277 |
.results-head { display: flex; align-items: baseline; gap: 14px; margin: 28px 0 18px; } |
| 350 |
284 |
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 48px; } } |
| 351 |
285 |
|
| 352 |
286 |
.card { |
| 353 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); |
|
287 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 354 |
288 |
overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-flat); |
| 355 |
289 |
transition: transform 0.16s ease, box-shadow 0.16s ease; |
| 356 |
290 |
} |
| 357 |
291 |
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-off); } |
| 358 |
|
−.card:focus-visible { outline: 3px solid rgba(34, 88, 255, 0.4); outline-offset: 2px; } |
|
292 |
+.card:focus-visible { outline: 3px solid rgba(28, 92, 65, 0.4); outline-offset: 2px; } |
| 359 |
293 |
.card-img { position: relative; aspect-ratio: 16/10.5; background: var(--grey); overflow: hidden; } |
| 360 |
294 |
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; } |
| 361 |
295 |
.card:hover .card-img img { transform: scale(1.05); } |
| 385 |
319 |
|
| 386 |
320 |
/* ================= Skeletons ================= */ |
| 387 |
321 |
@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } } |
| 388 |
|
−.skel { border-radius: var(--r-card); border: 1px solid var(--line); overflow: hidden; background: var(--surface); } |
|
322 |
+.skel { border-radius: var(--r-card); border: 1.5px solid var(--ink); overflow: hidden; background: var(--surface); } |
| 389 |
323 |
.skel .sk-img, .skel .sk-line { |
| 390 |
324 |
background: linear-gradient(90deg, #ececef 25%, #f7f7f9 50%, #ececef 75%); |
| 391 |
325 |
background-size: 800px 100%; animation: shimmer 1.4s infinite linear; |
| 415 |
349 |
|
| 416 |
350 |
.gallery { display: flex; flex-direction: column; gap: 10px; } |
| 417 |
351 |
.gallery-main { |
| 418 |
|
− border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); |
|
352 |
+ border-radius: var(--r-card); overflow: hidden; border: 1.5px solid var(--ink); |
| 419 |
353 |
aspect-ratio: 16/10; background: var(--grey); cursor: zoom-in; box-shadow: var(--shadow-off-soft); |
| 420 |
354 |
} |
| 421 |
355 |
.gallery-main img { width: 100%; height: 100%; object-fit: cover; } |
| 429 |
363 |
.thumbs img { width: 100%; height: 100%; object-fit: cover; } |
| 430 |
364 |
|
| 431 |
365 |
.panel { |
| 432 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); |
|
366 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 433 |
367 |
box-shadow: var(--shadow-off-soft); padding: 26px; position: sticky; top: 120px; |
| 434 |
368 |
} |
| 435 |
369 |
@media (max-width: 900px) { .panel { position: static; } } |
| 442 |
376 |
.kv .cell { background: var(--grey); border-radius: var(--r-ctl); padding: 10px 14px; } |
| 443 |
377 |
.kv .cell .k { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; } |
| 444 |
378 |
.kv .cell .v { font-weight: 700; font-size: 14.5px; margin-top: 2px; font-family: var(--font-display); color: var(--navy); } |
| 445 |
|
−.klabel { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; margin-bottom: 8px; } |
|
379 |
+/* .klabel : fourni par tokens.css (ka-ui). */ |
|
380 |
+.panel .klabel, .f-bloc .klabel { display: block; margin-bottom: 8px; } |
| 446 |
381 |
.amenity-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 20px; } |
| 447 |
382 |
.amenity { |
| 448 |
383 |
background: var(--blue-soft); color: var(--blue); font-size: 12px; font-weight: 600; |
| 449 |
|
− border: 1px solid rgba(34, 88, 255, 0.25); border-radius: var(--r-pill); padding: 5px 13px; |
|
384 |
+ border: 1px solid rgba(28, 92, 65, 0.25); border-radius: var(--r-pill); padding: 5px 13px; |
| 450 |
385 |
} |
| 451 |
386 |
.cta { |
| 452 |
387 |
display: block; text-align: center; background: var(--orange); color: var(--white); |
| 460 |
395 |
|
| 461 |
396 |
/* ================= Lightbox ================= */ |
| 462 |
397 |
.lightbox { |
| 463 |
|
− position: fixed; inset: 0; background: rgba(11, 19, 48, 0.94); z-index: 100; |
|
398 |
+ position: fixed; inset: 0; background: rgba(20, 24, 20, 0.94); z-index: 100; |
| 464 |
399 |
display: flex; align-items: center; justify-content: center; cursor: zoom-out; |
| 465 |
400 |
padding: max(16px, env(safe-area-inset-top)) 16px; |
| 466 |
401 |
} |
| 470 |
405 |
.sources { padding: 44px 0 90px; } |
| 471 |
406 |
.sources h1 { font-size: clamp(28px, 4vw, 40px); margin: 10px 0 6px; color: var(--navy); } |
| 472 |
407 |
.sources .sub { color: var(--ink-2); margin-bottom: 30px; max-width: 700px; } |
| 473 |
|
−.src-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); background: var(--surface); } |
|
408 |
+.src-wrap { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); background: var(--surface); } |
| 474 |
409 |
.src-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 720px; } |
| 475 |
410 |
.src-table th { |
| 476 |
411 |
text-align: left; font-size: 10.5px; text-transform: uppercase; |
| 480 |
415 |
.src-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; } |
| 481 |
416 |
.src-table tr:last-child td { border-bottom: none; } |
| 482 |
417 |
.src-table tr:hover td { background: var(--navy-soft); } |
| 483 |
|
−.src-table a { color: var(--blue); font-weight: 600; border-bottom: 1.5px solid rgba(34, 88, 255, 0.35); } |
|
418 |
+.src-table a { color: var(--blue); font-weight: 600; border-bottom: 1.5px solid rgba(28, 92, 65, 0.35); } |
| 484 |
419 |
.pill { display: inline-block; border-radius: var(--r-pill); padding: 3px 10px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; } |
| 485 |
420 |
.pill.ok { background: var(--blue-soft); color: var(--blue); } |
| 486 |
421 |
.pill.todo { background: var(--orange-soft); color: var(--orange-deep); } |
| 493 |
428 |
|
| 494 |
429 |
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 30px; } |
| 495 |
430 |
.tile { |
| 496 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); |
|
431 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 497 |
432 |
padding: 18px 20px; box-shadow: var(--shadow-flat); |
| 498 |
433 |
} |
| 499 |
434 |
.tile-v { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; line-height: 1.05; color: var(--navy); } |
| 503 |
438 |
.hero-tile .tile-k { color: rgba(255, 255, 255, 0.6); } |
| 504 |
439 |
|
| 505 |
440 |
.viz-card { |
| 506 |
|
− background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); |
|
441 |
+ background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 507 |
442 |
box-shadow: var(--shadow-off-soft); padding: 26px 28px 20px; margin-bottom: 22px; |
| 508 |
443 |
} |
| 509 |
444 |
.viz-card h2 { font-size: 19px; letter-spacing: -0.01em; color: var(--navy); } |
| 529 |
464 |
gap: 12px; align-items: center; min-height: 26px; cursor: default; |
| 530 |
465 |
} |
| 531 |
466 |
.hbar-label { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } |
| 532 |
|
−.hbar-label a { border-bottom: 1.5px solid rgba(34, 88, 255, 0.35); } |
|
467 |
+.hbar-label a { border-bottom: 1.5px solid rgba(28, 92, 65, 0.35); } |
| 533 |
468 |
.hbar-label a:hover { color: var(--blue); } |
| 534 |
469 |
.hbar-track { background: var(--grey); border-radius: var(--r-pill); height: 18px; overflow: hidden; } |
| 535 |
470 |
.hbar-fill { |
| 551 |
486 |
position: fixed; z-index: 120; pointer-events: none; max-width: 180px; |
| 552 |
487 |
background: var(--navy); color: var(--white); border-radius: 12px; |
| 553 |
488 |
padding: 9px 12px; font-size: 12px; line-height: 1.5; |
| 554 |
|
− box-shadow: 0 8px 24px rgba(11, 19, 48, 0.35); |
|
489 |
+ box-shadow: 0 8px 24px rgba(20, 24, 20, 0.35); |
| 555 |
490 |
} |
| 556 |
491 |
.viz-tip-title { font-family: var(--font-display); font-weight: 700; color: var(--orange); margin-bottom: 2px; } |
| 557 |
492 |
|
| 601 |
536 |
margin: 0; border-radius: 24px 24px 0 0; border: none; |
| 602 |
537 |
max-height: 82dvh; overflow-y: auto; -webkit-overflow-scrolling: touch; |
| 603 |
538 |
padding: 16px 18px calc(18px + env(safe-area-inset-bottom)); |
| 604 |
|
− box-shadow: 0 -16px 48px rgba(11, 19, 48, 0.28); |
|
539 |
+ box-shadow: 0 -16px 48px rgba(20, 24, 20, 0.28); |
| 605 |
540 |
animation: sheet-up 0.22s ease; |
| 606 |
541 |
} |
| 607 |
542 |
@keyframes sheet-up { from { transform: translateY(30%); opacity: 0.4; } to { transform: none; opacity: 1; } } |
| 613 |
548 |
border-bottom: 1px solid var(--line); margin-bottom: 2px; z-index: 1; |
| 614 |
549 |
} |
| 615 |
550 |
.sheet-close { |
| 616 |
|
− border: 1px solid var(--line-strong); background: var(--surface); border-radius: 50%; |
|
551 |
+ border: 1.5px solid var(--ink); background: var(--surface); border-radius: 50%; |
| 617 |
552 |
width: 36px; height: 36px; font-size: 15px; cursor: pointer; line-height: 1; color: var(--navy); |
| 618 |
553 |
} |
| 619 |
554 |
.filterbar.open .sheet-apply { display: block; width: 100%; } |
| 620 |
555 |
.sheet-backdrop { |
| 621 |
556 |
display: block; position: fixed; inset: 0; z-index: 90; |
| 622 |
|
− background: rgba(11, 19, 48, 0.45); backdrop-filter: blur(2px); |
|
557 |
+ background: rgba(20, 24, 20, 0.45); backdrop-filter: blur(2px); |
| 623 |
558 |
} |
| 624 |
559 |
|
| 625 |
560 |
/* Bouton flottant */ |
| 688 |
623 |
/* --- Carte interactive (mission 4) --------------------------------------- */ |
| 689 |
624 |
.results-tools { display: flex; align-items: center; gap: 14px; } |
| 690 |
625 |
.view-toggle { |
| 691 |
|
− display: inline-flex; border: 1px solid var(--line-strong); |
|
626 |
+ display: inline-flex; border: 1.5px solid var(--ink); |
| 692 |
627 |
border-radius: var(--r-pill); overflow: hidden; background: var(--surface); |
| 693 |
628 |
box-shadow: var(--shadow-flat); |
| 694 |
629 |
} |
| 709 |
644 |
} |
| 710 |
645 |
.map-list .card { margin: 0; flex: 0 0 auto; } |
| 711 |
646 |
.mapview { |
| 712 |
|
− width: 100%; height: 100%; border: 1px solid var(--line); |
|
647 |
+ width: 100%; height: 100%; border: 1.5px solid var(--ink); |
| 713 |
648 |
border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); |
| 714 |
649 |
overflow: hidden; background: var(--grey); |
| 715 |
650 |
} |
| 728 |
663 |
/* popup MapLibre au style Lou-Ka */ |
| 729 |
664 |
.maplibregl-popup-content { |
| 730 |
665 |
padding: 0; border-radius: var(--r-card); overflow: hidden; |
| 731 |
|
− border: 1px solid var(--line); box-shadow: var(--shadow-off); |
|
666 |
+ border: 1.5px solid var(--ink); box-shadow: var(--shadow-off); |
| 732 |
667 |
font-family: var(--font-body); |
| 733 |
668 |
} |
| 734 |
669 |
.maplibregl-popup-close-button { |
| 735 |
670 |
font-size: 18px; padding: 2px 8px; color: var(--white); z-index: 2; |
| 736 |
|
− text-shadow: 0 0 4px rgba(11, 19, 48, 0.8); |
|
671 |
+ text-shadow: 0 0 4px rgba(20, 24, 20, 0.8); |
| 737 |
672 |
} |
| 738 |
673 |
.mv-pop img, .mv-noimg { width: 100%; height: 130px; object-fit: cover; } |
| 739 |
674 |
.mv-noimg { display: flex; align-items: center; justify-content: center; |
| 772 |
707 |
.menu-btn { |
| 773 |
708 |
display: none; position: relative; z-index: 60; |
| 774 |
709 |
width: 44px; height: 44px; margin-left: auto; |
| 775 |
|
− border: 1px solid var(--line-strong); border-radius: var(--r-ctl); |
|
710 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-ctl); |
| 776 |
711 |
background: var(--surface); cursor: pointer; padding: 0; |
| 777 |
712 |
flex-direction: column; align-items: center; justify-content: center; gap: 5px; |
| 778 |
713 |
box-shadow: var(--shadow-flat); |
| 790 |
725 |
.mobile-menu { |
| 791 |
726 |
display: none; position: absolute; left: 0; right: 0; top: 100%; |
| 792 |
727 |
background: var(--white); border-bottom: 1px solid var(--line); |
| 793 |
|
− box-shadow: 0 18px 30px rgba(11, 19, 48, 0.14); |
|
728 |
+ box-shadow: 0 18px 30px rgba(20, 24, 20, 0.14); |
| 794 |
729 |
padding: 8px 16px calc(16px + env(safe-area-inset-bottom)); |
| 795 |
730 |
max-height: 0; overflow: hidden; opacity: 0; |
| 796 |
731 |
transition: max-height 0.3s ease, opacity 0.22s ease; |
| 817 |
752 |
} |
| 818 |
753 |
.mm-backdrop { |
| 819 |
754 |
position: fixed; inset: 0; z-index: 40; |
| 820 |
|
− background: rgba(11, 19, 48, 0.35); backdrop-filter: blur(2px); |
|
755 |
+ background: rgba(20, 24, 20, 0.35); backdrop-filter: blur(2px); |
| 821 |
756 |
} |
| 822 |
757 |
@media (max-width: 760px) { |
| 823 |
758 |
.menu-btn { display: flex; } |
| 834 |
769 |
@keyframes cookie-in { from { transform: translateY(24px); opacity: 0; } } |
| 835 |
770 |
.cookie-inner { |
| 836 |
771 |
max-width: 720px; margin: 0 auto; background: var(--surface); |
| 837 |
|
− border: 1px solid var(--line); border-radius: var(--r-card); |
|
772 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 838 |
773 |
box-shadow: var(--shadow-off); padding: 16px 18px; |
| 839 |
774 |
} |
| 840 |
775 |
.cookie-text { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; } |
| 873 |
808 |
} |
| 874 |
809 |
@media (max-width: 640px) { .q-grid { grid-template-columns: repeat(2, 1fr); } } |
| 875 |
810 |
.q-cell { |
| 876 |
|
− background: var(--surface); border: 1px solid var(--line); |
|
811 |
+ background: var(--surface); border: 1.5px solid var(--ink); |
| 877 |
812 |
border-radius: var(--r-card); padding: 12px 14px; box-shadow: var(--shadow-flat); |
| 878 |
813 |
} |
| 879 |
814 |
.q-val { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--navy); } |
| 893 |
828 |
.q-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; } |
| 894 |
829 |
.q-badge { |
| 895 |
830 |
display: inline-flex; align-items: center; gap: 6px; |
| 896 |
|
− border: 1px solid var(--line-strong); border-radius: var(--r-pill); |
|
831 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-pill); |
| 897 |
832 |
padding: 7px 14px; font-size: 12.5px; background: var(--surface); |
| 898 |
833 |
} |
| 899 |
|
−.q-badge.cool { background: var(--blue-soft); border-color: rgba(34, 88, 255, 0.3); color: var(--blue); } |
|
834 |
+.q-badge.cool { background: var(--blue-soft); border-color: rgba(28, 92, 65, 0.3); color: var(--blue); } |
| 900 |
835 |
.q-badge.hot { background: var(--orange-soft); border-color: rgba(255, 106, 0, 0.35); color: var(--orange-deep); } |
| 901 |
836 |
.quartier .fine { margin-top: 10px; } |
| 902 |
837 |
|
| 917 |
852 |
|
| 918 |
853 |
/* galerie à balayage natif */ |
| 919 |
854 |
.carousel { position: relative; border-radius: var(--r-card); overflow: hidden; |
| 920 |
|
− border: 1px solid var(--line); background: var(--grey); box-shadow: var(--shadow-off-soft); } |
|
855 |
+ border: 1.5px solid var(--ink); background: var(--grey); box-shadow: var(--shadow-off-soft); } |
| 921 |
856 |
.carousel-track { |
| 922 |
857 |
display: flex; overflow-x: auto; scroll-snap-type: x mandatory; |
| 923 |
858 |
-webkit-overflow-scrolling: touch; scrollbar-width: none; aspect-ratio: 16/11; |
| 931 |
866 |
aspect-ratio: 16/11; font-size: 48px; } |
| 932 |
867 |
.carousel-count { |
| 933 |
868 |
position: absolute; right: 12px; bottom: 12px; z-index: 2; |
| 934 |
|
− background: rgba(11, 19, 48, 0.78); color: var(--white); |
|
869 |
+ background: rgba(20, 24, 20, 0.78); color: var(--white); |
| 935 |
870 |
font-size: 12px; font-weight: 600; |
| 936 |
871 |
padding: 4px 11px; border-radius: var(--r-pill); |
| 937 |
872 |
backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); |
| 938 |
873 |
} |
| 939 |
874 |
.carousel-nav { |
| 940 |
875 |
position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; |
| 941 |
|
− width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); |
|
876 |
+ width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ink); |
| 942 |
877 |
background: rgba(255, 255, 255, 0.92); color: var(--navy); font-size: 22px; cursor: pointer; |
| 943 |
878 |
display: flex; align-items: center; justify-content: center; line-height: 1; |
| 944 |
879 |
box-shadow: var(--shadow-flat); |
| 951 |
886 |
.deal-badge { |
| 952 |
887 |
display: inline-flex; align-items: center; gap: 6px; margin: 8px 0 4px; |
| 953 |
888 |
border-radius: var(--r-pill); padding: 7px 14px; font-size: 13px; font-weight: 600; |
| 954 |
|
− border: 1px solid var(--line-strong); |
|
889 |
+ border: 1.5px solid var(--ink); |
| 955 |
890 |
} |
| 956 |
|
−.deal-good { background: var(--blue-soft); border-color: rgba(34, 88, 255, 0.3); color: var(--blue); } |
|
891 |
+.deal-good { background: var(--blue-soft); border-color: rgba(28, 92, 65, 0.3); color: var(--blue); } |
| 957 |
892 |
.deal-ok { background: var(--surface); color: var(--ink-2); } |
| 958 |
893 |
.deal-high { background: var(--orange-soft); border-color: rgba(255, 106, 0, 0.35); color: var(--orange-deep); } |
| 959 |
894 |
.f-hero h1 { font-size: clamp(20px, 4.5vw, 26px); margin-top: 8px; } |
| 987 |
922 |
|
| 988 |
923 |
/* description restructurée */ |
| 989 |
924 |
.enbref { |
| 990 |
|
− background: var(--blue-soft); border: 1px solid rgba(34, 88, 255, 0.25); |
|
925 |
+ background: var(--blue-soft); border: 1px solid rgba(28, 92, 65, 0.25); |
| 991 |
926 |
border-radius: var(--r-card); padding: 12px 16px; color: var(--navy); |
| 992 |
927 |
font-size: 15px; margin: 0 0 14px; |
| 993 |
928 |
} |
| 1002 |
937 |
.texte-original p { color: var(--ink-3); font-size: 13px; white-space: pre-line; } |
| 1003 |
938 |
|
| 1004 |
939 |
/* inclusions : confirmées vs mentionnées */ |
| 1005 |
|
−.amenity.confirmed { background: var(--blue-soft); border-color: rgba(34, 88, 255, 0.25); color: var(--blue); font-weight: 600; } |
|
940 |
+.amenity.confirmed { background: var(--blue-soft); border-color: rgba(28, 92, 65, 0.25); color: var(--blue); font-weight: 600; } |
| 1006 |
941 |
.amenity.unconfirmed { background: transparent; border-style: dashed; border-color: var(--line-strong); color: var(--ink-3); } |
| 1007 |
942 |
|
| 1008 |
943 |
/* détails pratiques : historique de prix */ |
| 1009 |
944 |
.prix-histo { |
| 1010 |
945 |
margin-top: 12px; padding: 10px 14px; border-radius: var(--r-card); |
| 1011 |
|
− border: 1px solid var(--line-strong); font-size: 13.5px; background: var(--surface); |
|
946 |
+ border: 1.5px solid var(--ink); font-size: 13.5px; background: var(--surface); |
| 1012 |
947 |
} |
| 1013 |
|
−.prix-histo.down { background: var(--blue-soft); border-color: rgba(34, 88, 255, 0.3); color: var(--blue); } |
|
948 |
+.prix-histo.down { background: var(--blue-soft); border-color: rgba(28, 92, 65, 0.3); color: var(--blue); } |
| 1014 |
949 |
|
| 1015 |
950 |
/* quartier compacté sur mobile */ |
| 1016 |
951 |
@media (max-width: 640px) { |
| 1022 |
957 |
.q-badge-sub { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 400; margin-left: 4px; } |
| 1023 |
958 |
|
| 1024 |
959 |
/* POI groupés repliables */ |
| 1025 |
|
−.poi-groupe { border: 1px solid var(--line); border-radius: var(--r-card); |
|
960 |
+.poi-groupe { border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 1026 |
961 |
margin-bottom: 8px; background: var(--surface); overflow: hidden; } |
| 1027 |
962 |
.poi-groupe summary { |
| 1028 |
963 |
display: flex; justify-content: space-between; align-items: center; gap: 10px; |
| 1060 |
995 |
} |
| 1061 |
996 |
.pass-card { |
| 1062 |
997 |
width: 100%; max-width: 520px; background: var(--surface); |
| 1063 |
|
− border: 1px solid var(--line); border-radius: var(--r-card); |
|
998 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-card); |
| 1064 |
999 |
box-shadow: var(--shadow-off); padding: 30px 28px; text-align: center; |
| 1065 |
1000 |
} |
| 1066 |
1001 |
.pass-brands { |
| 1084 |
1019 |
.pass-gestionnaire { |
| 1085 |
1020 |
font-family: var(--font-display); font-weight: 700; font-size: 19px; |
| 1086 |
1021 |
display: inline-flex; align-items: center; gap: 8px; |
| 1087 |
|
− background: var(--blue-soft); border: 1px solid rgba(34, 88, 255, 0.25); |
|
1022 |
+ background: var(--blue-soft); border: 1px solid rgba(28, 92, 65, 0.25); |
| 1088 |
1023 |
border-radius: var(--r-pill); padding: 6px 16px; color: var(--blue); |
| 1089 |
1024 |
} |
| 1090 |
1025 |
.pass-card h1 { font-size: 20px; letter-spacing: -0.02em; } |
| 1117 |
1052 |
.onglets::-webkit-scrollbar { display: none; } |
| 1118 |
1053 |
.onglet { |
| 1119 |
1054 |
flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; |
| 1120 |
|
− border: 1px solid var(--line-strong); |
|
1055 |
+ border: 1.5px solid var(--ink); |
| 1121 |
1056 |
border-radius: var(--r-pill); |
| 1122 |
1057 |
background: var(--surface); color: var(--ink-2); cursor: pointer; |
| 1123 |
1058 |
padding: 10px 18px; font-weight: 600; font-size: 13.5px; min-height: 44px; |
| 1159 |
1094 |
.pager-btn { |
| 1160 |
1095 |
min-width: 38px; height: 38px; padding: 0 10px; |
| 1161 |
1096 |
display: inline-flex; align-items: center; justify-content: center; |
| 1162 |
|
− background: var(--surface); border: 1px solid var(--line-strong); |
|
1097 |
+ background: var(--surface); border: 1.5px solid var(--ink); |
| 1163 |
1098 |
border-radius: var(--r-pill); cursor: pointer; |
| 1164 |
1099 |
font-size: 13px; font-weight: 600; |
| 1165 |
1100 |
color: var(--navy); transition: all 0.12s ease; |
| 1203 |
1138 |
background: var(--navy); border: none; |
| 1204 |
1139 |
border-radius: var(--r-pill); font-weight: 600; font-size: 13.5px; color: var(--white); |
| 1205 |
1140 |
transition: all 0.12s ease; white-space: nowrap; |
| 1206 |
|
− box-shadow: 0 4px 14px rgba(11, 19, 48, 0.22); |
|
1141 |
+ box-shadow: 0 4px 14px rgba(20, 24, 20, 0.22); |
| 1207 |
1142 |
} |
| 1208 |
1143 |
.login-btn:hover { background: var(--blue); } |
| 1209 |
1144 |
.account { position: relative; margin-left: 10px; } |
| 1217 |
1152 |
.account-backdrop { position: fixed; inset: 0; z-index: 90; } |
| 1218 |
1153 |
.account-menu { |
| 1219 |
1154 |
position: absolute; right: 0; top: calc(100% + 10px); z-index: 91; |
| 1220 |
|
− min-width: 220px; background: var(--surface); border: 1px solid var(--line); |
|
1155 |
+ min-width: 220px; background: var(--surface); border: 1.5px solid var(--ink); |
| 1221 |
1156 |
border-radius: var(--r-card); box-shadow: var(--shadow-off); overflow: hidden; |
| 1222 |
1157 |
} |
| 1223 |
1158 |
.account-id { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-bottom: 1px solid var(--line); } |
| 1233 |
1168 |
/* ================= Profil — carte de membre Groupe KA ================= */ |
| 1234 |
1169 |
.profil { padding-top: 40px; padding-bottom: 60px; } |
| 1235 |
1170 |
.profil h1 { font-size: clamp(30px, 5vw, 44px); margin: 10px 0 26px; color: var(--navy); } |
| 1236 |
|
−.profil h1 .hl { color: var(--orange); } |
| 1237 |
1171 |
.profil .lede { max-width: 520px; color: var(--ink-2); margin-bottom: 22px; } |
| 1238 |
1172 |
|
| 1239 |
1173 |
.pc { |
| 1285 |
1219 |
gap: 12px; margin-top: 30px; max-width: 760px; |
| 1286 |
1220 |
} |
| 1287 |
1221 |
.pg-item { |
| 1288 |
|
− background: var(--surface); border: 1px solid var(--line); |
|
1222 |
+ background: var(--surface); border: 1.5px solid var(--ink); |
| 1289 |
1223 |
border-radius: var(--r-card); padding: 14px 16px; |
| 1290 |
1224 |
display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-flat); |
| 1291 |
1225 |
} |
| 1313 |
1247 |
.public-link { |
| 1314 |
1248 |
display: flex; align-items: center; gap: 10px; flex-wrap: wrap; |
| 1315 |
1249 |
margin-top: 14px; padding: 12px 14px; background: var(--blue-soft); |
| 1316 |
|
− border: 1px solid rgba(34, 88, 255, 0.25); border-radius: var(--r-card); |
|
1250 |
+ border: 1px solid rgba(28, 92, 65, 0.25); border-radius: var(--r-card); |
| 1317 |
1251 |
} |
| 1318 |
1252 |
.public-link a { font-size: 13px; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; } |
| 1319 |
1253 |
|
| 1320 |
1254 |
/* ================= Bienvenue — choix du rôle ================= */ |
| 1321 |
1255 |
.bienvenue { padding-top: 44px; padding-bottom: 70px; } |
| 1322 |
1256 |
.bienvenue h1 { font-size: clamp(30px, 5vw, 46px); margin: 10px 0 14px; color: var(--navy); } |
| 1323 |
|
−.bienvenue h1 .hl { color: var(--orange); } |
| 1324 |
1257 |
.bienvenue .lede { max-width: 480px; color: var(--ink-2); margin-bottom: 30px; } |
| 1325 |
1258 |
.role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; max-width: 780px; } |
| 1326 |
1259 |
.role-card { |
| 1327 |
1260 |
display: flex; flex-direction: column; align-items: flex-start; gap: 10px; |
| 1328 |
1261 |
text-align: left; padding: 24px 24px 20px; cursor: pointer; |
| 1329 |
|
− background: var(--surface); border: 1px solid var(--line); |
|
1262 |
+ background: var(--surface); border: 1.5px solid var(--ink); |
| 1330 |
1263 |
border-radius: var(--r-card); box-shadow: var(--shadow-flat); |
| 1331 |
1264 |
font-family: var(--font-body); transition: all 0.15s ease; |
| 1332 |
1265 |
} |
| 1361 |
1294 |
.claim-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; max-width: 640px; } |
| 1362 |
1295 |
.claim-row select { |
| 1363 |
1296 |
flex: 1; min-width: 260px; padding: 11px 14px; font-size: 14px; |
| 1364 |
|
− border: 1px solid var(--line-strong); border-radius: var(--r-ctl); |
|
1297 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-ctl); |
| 1365 |
1298 |
background: var(--surface); font-family: var(--font-body); |
| 1366 |
1299 |
} |
| 1367 |
1300 |
.claim-error { color: var(--danger); font-size: 13.5px; font-weight: 600; margin-top: 10px; } |
| 1373 |
1306 |
.org-form label span { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); } |
| 1374 |
1307 |
.org-form input, .org-form textarea { |
| 1375 |
1308 |
padding: 10px 14px; font-size: 14px; font-family: var(--font-body); |
| 1376 |
|
− border: 1px solid var(--line-strong); border-radius: var(--r-ctl); background: var(--surface); |
|
1309 |
+ border: 1.5px solid var(--ink); border-radius: var(--r-ctl); background: var(--surface); |
| 1377 |
1310 |
} |
| 1378 |
1311 |
.org-form textarea { resize: vertical; } |
| 1379 |
|
−.org-form input:focus, .org-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(34, 88, 255, 0.15); } |
|
1312 |
+.org-form input:focus, .org-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 92, 65, 0.15); } |
| 1380 |
1313 |
.org-form-row { display: flex; gap: 12px; flex-wrap: wrap; } |
| 1381 |
1314 |
.org-form .btn { align-self: flex-start; } |
| 1382 |
1315 |
|
| 1383 |
1316 |
/* ================= Page publique /g/{source} ================= */ |
| 1384 |
1317 |
.orgpub-head { display: flex; gap: 20px; align-items: flex-start; margin-top: 8px; } |
| 1385 |
|
−.orgpub-logo { width: 84px; height: 84px; object-fit: contain; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 8px; flex: none; box-shadow: var(--shadow-flat); } |
|
1318 |
+.orgpub-logo { width: 84px; height: 84px; object-fit: contain; background: var(--surface); border: 1.5px solid var(--ink); border-radius: 18px; padding: 8px; flex: none; box-shadow: var(--shadow-flat); } |
| 1386 |
1319 |
.orgpub-id h1 { font-size: clamp(26px, 4.4vw, 40px); margin: 6px 0 8px; color: var(--navy); } |
| 1387 |
1320 |
.orgpub-tagline { font-size: 16px; color: var(--ink-2); margin: 0 0 12px; max-width: 640px; } |
| 1388 |
1321 |
.orgpub-meta { display: flex; gap: 8px; flex-wrap: wrap; } |
| 1389 |
1322 |
.orgpub-meta a.stat-chip:hover { background: var(--blue-soft); } |
| 1390 |
|
−.orgpub-verified { background: var(--blue-soft); border-color: rgba(34, 88, 255, 0.3); color: var(--blue); font-weight: 600; } |
|
1323 |
+.orgpub-verified { background: var(--blue-soft); border-color: rgba(28, 92, 65, 0.3); color: var(--blue); font-weight: 600; } |
| 1391 |
1324 |
.orgpub-desc { max-width: 720px; color: var(--ink-2); margin: 18px 0 6px; white-space: pre-line; } |
| 1392 |
1325 |
.orgpub .results-head h2 { display: inline-flex; align-items: center; gap: 8px; } |
| 1393 |
1326 |
@media (max-width: 560px) { .orgpub-head { flex-direction: column; } } |
| 1429 |
1362 |
.pub-social { |
| 1430 |
1363 |
display: flex; align-items: center; justify-content: center; |
| 1431 |
1364 |
width: 44px; height: 44px; background: var(--surface); |
| 1432 |
|
− border: 1px solid var(--line-strong); border-radius: 14px; color: var(--navy); |
|
1365 |
+ border: 1.5px solid var(--ink); border-radius: 14px; color: var(--navy); |
| 1433 |
1366 |
transition: all 0.12s ease; |
| 1434 |
1367 |
} |
| 1435 |
1368 |
.pub-social:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-off-soft); } |
| 1439 |
1372 |
Jetons du design system appliqués au chrome de la carte + sync liste↔carte. |
| 1440 |
1373 |
----------------------------------------------------------------------------- */ |
| 1441 |
1374 |
.mapview .ka-map { |
| 1442 |
|
− --ka-accent: var(--blue); |
| 1443 |
|
− --ka-on-accent: var(--white); |
|
1375 |
+ --ka-accent: var(--accent); |
|
1376 |
+ --ka-on-accent: var(--on-accent); |
| 1444 |
1377 |
--ka-surface: var(--surface); |
| 1445 |
1378 |
--ka-ink: var(--navy); |
| 1446 |
1379 |
--ka-line: var(--line-strong); |
| 1447 |
1380 |
--ka-radius: var(--r-ctl); |
| 1448 |
|
− --ka-shadow: 0 8px 24px rgba(11, 19, 48, 0.14); |
|
1381 |
+ --ka-shadow: 0 8px 24px rgba(20, 24, 20, 0.14); |
| 1449 |
1382 |
--ka-font: var(--font-body); |
| 1450 |
1383 |
} |
| 1451 |
1384 |
.mapview { position: relative; overflow: hidden; } |
| 1453 |
1386 |
|
| 1454 |
1387 |
/* mini-carte 3D de la fiche (Emplacement) — bâtiment de l'annonce en orange */ |
| 1455 |
1388 |
.lmap3d { |
| 1456 |
|
− position: relative; height: 340px; border: 1px solid var(--line); |
|
1389 |
+ position: relative; height: 340px; border: 1.5px solid var(--ink); |
| 1457 |
1390 |
border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); |
| 1458 |
1391 |
overflow: hidden; background: var(--grey); |
| 1459 |
1392 |
} |
| 1460 |
1393 |
.lmap3d .ka-map { |
| 1461 |
|
− --ka-accent: var(--blue); |
| 1462 |
|
− --ka-on-accent: var(--white); |
|
1394 |
+ --ka-accent: var(--accent); |
|
1395 |
+ --ka-on-accent: var(--on-accent); |
| 1463 |
1396 |
--ka-surface: var(--surface); |
| 1464 |
1397 |
--ka-ink: var(--navy); |
| 1465 |
1398 |
--ka-line: var(--line-strong); |
| 1466 |
1399 |
--ka-radius: var(--r-ctl); |
| 1467 |
|
− --ka-shadow: 0 8px 24px rgba(11, 19, 48, 0.14); |
|
1400 |
+ --ka-shadow: 0 8px 24px rgba(20, 24, 20, 0.14); |
| 1468 |
1401 |
--ka-font: var(--font-body); |
| 1469 |
1402 |
position: absolute; inset: 0; |
| 1470 |
1403 |
} |
| 1475 |
1408 |
.lmap3d-legende { |
| 1476 |
1409 |
position: absolute; left: 10px; bottom: 10px; z-index: 5; |
| 1477 |
1410 |
display: inline-flex; align-items: center; gap: 6px; |
| 1478 |
|
− padding: 4px 10px; border: 1px solid var(--line); |
|
1411 |
+ padding: 4px 10px; border: 1.5px solid var(--ink); |
| 1479 |
1412 |
border-radius: var(--r-pill); background: var(--surface); |
| 1480 |
1413 |
font-size: 10.5px; font-weight: 500; color: var(--ink-2); |
| 1481 |
1414 |
pointer-events: none; |
| 1482 |
1415 |
} |
| 1483 |
1416 |
.lmap3d-legende i { |
| 1484 |
1417 |
width: 10px; height: 10px; border-radius: 3px; |
| 1485 |
|
− background: var(--orange); border: 1px solid rgba(11, 19, 48, 0.25); |
|
1418 |
+ background: var(--orange); border: 1px solid rgba(20, 24, 20, 0.25); |
| 1486 |
1419 |
} |
| 1487 |
1420 |
@media (max-width: 780px) { .lmap3d { height: 280px; } } |
| 1488 |
1421 |
.ka-preview .mv-pop img, .ka-preview .mv-noimg { height: 120px; } |
| 1492 |
1425 |
/* carte de liste synchronisée avec la carte (survol / sélection) */ |
| 1493 |
1426 |
.map-card { border-radius: var(--r-card); } |
| 1494 |
1427 |
.map-card-sel { outline: 2px solid var(--blue); outline-offset: 2px; } |
|
1428 |
+ |
|
1429 |
+/* ============================================================================= |
|
1430 |
+ HARMONISATION « ÉDITORIAL SHARP » (Groupe KA) — couche finale posée après |
|
1431 |
+ les styles historiques : géométrie 10/6 px, bordures encre 1,5 px, ombres |
|
1432 |
+ décalées dures, accent orange Lou-Ka. La carte Ka Maps (Mapbox) conserve |
|
1433 |
+ son propre thème marine/orange à l'intérieur du canevas. |
|
1434 |
+============================================================================= */ |
|
1435 |
+ |
|
1436 |
+/* — contrôles : plus de pilules (les chips/badges gardent --r-pill) — */ |
|
1437 |
+.nav a, .login-btn, .cta, .mv-pop-cta, .f-search, .f-more, .pager-btn, |
|
1438 |
+.onglet, .view-toggle, .fab, .f-ctl, .pass-gestionnaire, .hbar-track, |
|
1439 |
+.q-bar-track, .pass-progress { border-radius: var(--r-ctl); } |
|
1440 |
+.seg button:first-child { border-radius: var(--r-ctl) 0 0 var(--r-ctl); } |
|
1441 |
+.seg button:last-child { border-radius: 0 var(--r-ctl) var(--r-ctl) 0; } |
|
1442 |
+ |
|
1443 |
+/* — header : papier translucide + trait d'encre — */ |
|
1444 |
+.header { |
|
1445 |
+ background: rgba(245, 243, 238, 0.92); |
|
1446 |
+ border-bottom: 1.5px solid var(--ink); |
|
1447 |
+} |
|
1448 |
+.nav a { font-family: var(--font-display); } |
|
1449 |
+.nav a:hover { color: var(--accent-deep); background: var(--accent-soft); } |
|
1450 |
+.nav a.active { background: var(--ink); color: var(--accent); } |
|
1451 |
+.brand .ka { |
|
1452 |
+ background: var(--accent); color: var(--on-accent); |
|
1453 |
+ border-radius: 6px; padding: 0 6px 2px; margin-left: 2px; transform: rotate(-2deg); |
|
1454 |
+} |
|
1455 |
+.header .gk-badge { margin-left: 4px; flex: none; } |
|
1456 |
+@media (max-width: 1080px) { .header .gk-badge { display: none; } } |
|
1457 |
+.mm-badge { |
|
1458 |
+ display: flex; align-items: center; min-height: var(--touch); |
|
1459 |
+ padding: 8px 10px 2px; |
|
1460 |
+} |
|
1461 |
+ |
|
1462 |
+/* — ticker : encre + mono — */ |
|
1463 |
+.ticker { font-family: var(--font-mono); border-bottom: 1.5px solid var(--ink); } |
|
1464 |
+ |
|
1465 |
+/* — états sélectionnés : encre + accent (fini le bleu) — */ |
|
1466 |
+.seg button.on, .onglet.on, .view-toggle button.on, .f-more.on { |
|
1467 |
+ background: var(--ink); border-color: var(--ink); color: var(--accent); |
|
1468 |
+} |
|
1469 |
+.pager-btn.on { background: var(--ink); border-color: var(--ink); color: var(--accent); } |
|
1470 |
+ |
|
1471 |
+/* — CTA / FAB : aplat accent, bordure encre, ombre décalée — */ |
|
1472 |
+.cta, .mv-pop-cta, .fab { |
|
1473 |
+ background: var(--accent); color: var(--on-accent); |
|
1474 |
+ border: 1.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); |
|
1475 |
+ font-family: var(--font-display); font-weight: 700; |
|
1476 |
+} |
|
1477 |
+.cta:hover, .mv-pop-cta:hover, .fab:hover { background: var(--accent-deep); } |
|
1478 |
+.cta:active, .fab:active { box-shadow: none; } |
|
1479 |
+.fab { box-shadow: 4px 4px 0 var(--ink), 0 10px 28px rgba(20, 24, 20, 0.25); } |
|
1480 |
+.login-btn { |
|
1481 |
+ background: var(--ink); color: var(--accent); |
|
1482 |
+ border: 1.5px solid var(--ink); box-shadow: none; |
|
1483 |
+ font-family: var(--font-display); font-weight: 700; |
|
1484 |
+} |
|
1485 |
+.login-btn:hover { background: var(--accent-deep); color: var(--on-accent); } |
|
1486 |
+ |
|
1487 |
+/* — cartes : levée nette diagonale (signature du groupe) — */ |
|
1488 |
+.card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-off); } |
|
1489 |
+.role-card:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: var(--shadow-off); border-color: var(--ink); } |
|
1490 |
+.badge { border: 1.5px solid var(--ink); border-radius: var(--r-ctl); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; font-size: 10px; } |
|
1491 |
+.badge.type { background: var(--accent); color: var(--on-accent); } |
|
1492 |
+.source-tag { font-family: var(--font-mono); } |
|
1493 |
+ |
|
1494 |
+/* — barre d'onglets mobile : papier + encre, actif = accent orange — */ |
|
1495 |
+@media (max-width: 760px) { |
|
1496 |
+ .tabbar { background: rgba(245, 243, 238, 0.95); border-top: 1.5px solid var(--ink); } |
|
1497 |
+ .tabbar a { font-family: var(--font-display); } |
|
1498 |
+ .tabbar a.active { color: var(--accent); } |
|
1499 |
+} |
|
1500 |
+.mobile-menu { background: var(--paper); border-bottom: 1.5px solid var(--ink); } |
|
1501 |
+ |
|
1502 |
+/* — carte de membre KA : encre plutôt que marine — */ |
|
1503 |
+.pc { background: linear-gradient(135deg, #1d231d 0%, var(--ink) 55%, #0b0e0b 100%); } |
|
1504 |
+ |
|
1505 |
+/* — micro-étiquettes en mono (système) — */ |
|
1506 |
+.f-ctl > span, .f-group > label, .field label, .tile-k, .pg-label, |
|
1507 |
+.pc-label, .pc-id-label, .crumbs, .viz-sub { font-family: var(--font-mono); } |
|
1508 |
+ |
|
1509 |
+/* — page Contact (design system) — */ |
|
1510 |
+.contact-page { padding: 44px 0 90px; } |
|
1511 |
+.contact-page h1 { margin: 10px 0 8px; } |
|
1512 |
+.contact-page .lede { color: var(--ink-2); max-width: 640px; margin: 0 0 26px; } |
|
1513 |
+.contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 26px 0; } |
|
1514 |
+@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } } |
|
1515 |
+.contact-card { padding: 18px 20px; } |
|
1516 |
+.contact-card .klabel { display: block; margin-bottom: 6px; } |
|
1517 |
+.contact-card a.mail { |
|
1518 |
+ font-family: var(--font-mono); font-weight: 700; font-size: 13.5px; |
|
1519 |
+ color: var(--accent-deep); word-break: break-all; |
|
1520 |
+ text-decoration: underline; text-underline-offset: 3px; |
|
1521 |
+} |
|
1522 |
+.contact-card p { margin: 6px 0 0; color: var(--ink-2); font-size: 13.5px; } |
|
1523 |
+.contact-note { |
|
1524 |
+ border-left: 3px solid var(--accent); background: var(--surface); |
|
1525 |
+ border-top: 1.5px solid var(--ink); border-right: 1.5px solid var(--ink); |
|
1526 |
+ border-bottom: 1.5px solid var(--ink); border-radius: 0 var(--r-card) var(--r-card) 0; |
|
1527 |
+ padding: 14px 18px; max-width: 720px; color: var(--ink-2); font-size: 14px; |
|
1528 |
+} |
|
1529 |
+.contact-note b { color: var(--ink); } |
|
1530 |
+.contact-sites { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; } |
|
1531 |
+.contact-sites a { |
|
1532 |
+ display: inline-flex; align-items: center; min-height: 34px; |
|
1533 |
+ padding: 4px 12px; border: 1.5px solid var(--ink); border-radius: var(--r-pill); |
|
1534 |
+ background: var(--surface); font-family: var(--font-mono); font-size: 11px; |
|
1535 |
+ font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; |
|
1536 |
+ transition: transform 0.12s, box-shadow 0.12s; |
|
1537 |
+} |
|
1538 |
+.contact-sites a:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); } |
|
1539 |
+.contact-hub { margin-top: 26px; } |
|
1540 |
+ |
|
1541 |
+/* — rangée de navigation locale au-dessus du footer commun — */ |
|
1542 |
+.prefooter { border-top: 1.5px solid var(--ink); background: var(--surface-2); padding: 18px 0; } |
|
1543 |
+.prefooter .container { |
|
1544 |
+ display: flex; flex-wrap: wrap; align-items: center; gap: 6px 20px; |
|
1545 |
+ font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; |
|
1546 |
+ text-transform: uppercase; letter-spacing: 0.08em; |
|
1547 |
+} |
|
1548 |
+.prefooter a, .prefooter .flink { |
|
1549 |
+ color: var(--ink-2); text-decoration: none; text-transform: uppercase; |
|
1550 |
+ letter-spacing: 0.08em; font-family: var(--font-mono); font-weight: 700; font-size: 11.5px; |
|
1551 |
+ min-height: var(--touch); display: inline-flex; align-items: center; |
|
1552 |
+} |
|
1553 |
+.prefooter a:hover, .prefooter .flink:hover { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 4px; } |
|
1554 |
+.prefooter .baseline { width: 100%; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--ink-2); text-transform: none; letter-spacing: 0; } |
|
1555 |
+.ka-footer { margin-top: 0; } |
|
1556 |
+@media (max-width: 760px) { .ka-footer { padding-bottom: calc(72px + env(safe-area-inset-bottom)); } } |