-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
546 lines (481 loc) · 17.6 KB
/
Copy pathindex.html
File metadata and controls
546 lines (481 loc) · 17.6 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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>L'Air de Basement — Menu</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Cormorant+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* ============================================
CSS Custom Properties
============================================ */
:root {
--color-parchment: #f4eed5;
--color-parchment-dark: #e8dfbf;
--color-ink: #1a1409;
--color-ink-light: #3d3422;
--color-burgundy: #6b1d2a;
--color-burgundy-light: #8a2939;
--color-gold: #8b7340;
--color-gold-light: #b8994e;
--color-cream: #faf6e8;
--color-sepia: #704214;
--font-display: 'Cinzel Decorative', serif;
--font-heading: 'Cinzel', serif;
--font-body: 'Cormorant Garamond', serif;
--font-small-caps: 'Cormorant SC', serif;
}
/* ============================================
Reset & Base
============================================ */
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
}
body {
background-color: #2c2418;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 40px 20px;
}
/* ============================================
The Menu Page
============================================ */
.menu-page {
width: 210mm;
min-height: 297mm;
background: var(--color-parchment);
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding: 28mm 22mm 24mm;
overflow: hidden;
/* Aged paper texture via layered gradients */
background-image:
/* Subtle stains */
radial-gradient(ellipse at 15% 20%, rgba(139, 115, 64, 0.08) 0%, transparent 50%),
radial-gradient(ellipse at 80% 70%, rgba(112, 66, 20, 0.06) 0%, transparent 40%),
radial-gradient(ellipse at 50% 90%, rgba(139, 115, 64, 0.05) 0%, transparent 50%),
/* Grain effect */
url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
/* Base parchment gradient */
linear-gradient(
170deg,
var(--color-cream) 0%,
var(--color-parchment) 30%,
var(--color-parchment-dark) 70%,
var(--color-parchment) 100%
);
/* Soft aged shadow */
box-shadow:
0 2px 40px rgba(0, 0, 0, 0.4),
0 0 100px rgba(0, 0, 0, 0.2),
inset 0 0 80px rgba(139, 115, 64, 0.06);
}
/* Outer ornamental border */
.menu-page::before {
content: '';
position: absolute;
top: 10mm;
left: 10mm;
right: 10mm;
bottom: 10mm;
border: 1.5px solid var(--color-gold);
pointer-events: none;
opacity: 0.5;
}
/* Inner ornamental border */
.menu-page::after {
content: '';
position: absolute;
top: 13mm;
left: 13mm;
right: 13mm;
bottom: 13mm;
border: 0.5px solid var(--color-gold);
pointer-events: none;
opacity: 0.35;
}
/* ============================================
Corner Ornaments
============================================ */
.corner-ornament {
position: absolute;
width: 28px;
height: 28px;
color: var(--color-gold);
opacity: 0.55;
font-size: 22px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
}
.corner-tl { top: 11.5mm; left: 11.5mm; }
.corner-tr { top: 11.5mm; right: 11.5mm; }
.corner-bl { bottom: 11.5mm; left: 11.5mm; }
.corner-br { bottom: 11.5mm; right: 11.5mm; }
.corner-tr { transform: rotate(90deg); }
.corner-bl { transform: rotate(-90deg); }
.corner-br { transform: rotate(180deg); }
/* ============================================
Typography
============================================ */
.logo {
width: 160px;
height: auto;
margin-bottom: 14px;
opacity: 0.92;
display: block;
border-radius: 50%;
}
.welcome-text {
font-family: var(--font-small-caps);
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.35em;
color: var(--color-ink-light);
text-transform: uppercase;
margin-bottom: 6px;
}
.restaurant-name {
font-family: var(--font-display);
font-size: 2.2rem;
font-weight: 700;
color: var(--color-burgundy);
letter-spacing: 0.06em;
line-height: 1.2;
margin-bottom: 4px;
text-align: center;
}
.subtitle {
font-family: var(--font-body);
font-size: 1.05rem;
font-style: italic;
font-weight: 400;
color: var(--color-gold);
letter-spacing: 0.08em;
margin-bottom: 20px;
}
/* ============================================
Ornamental Dividers
============================================ */
.divider {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
width: 100%;
max-width: 260px;
margin: 14px auto;
color: var(--color-gold);
opacity: 0.6;
}
.divider-line {
flex: 1;
height: 0.5px;
background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.divider-symbol {
font-size: 0.65rem;
line-height: 1;
letter-spacing: 0.1em;
}
.divider-wide {
max-width: 340px;
}
.divider-flourish {
max-width: 180px;
margin: 18px auto;
}
.divider-flourish .divider-symbol {
font-size: 1.1rem;
opacity: 0.7;
}
/* ============================================
Event Details
============================================ */
.event-details {
text-align: center;
margin-bottom: 6px;
}
.event-detail-line {
font-family: var(--font-small-caps);
font-size: 0.78rem;
font-weight: 400;
letter-spacing: 0.3em;
color: var(--color-ink-light);
line-height: 1.9;
}
.event-detail-value {
font-family: var(--font-body);
font-weight: 500;
font-size: 0.88rem;
letter-spacing: 0.15em;
color: var(--color-ink);
}
/* ============================================
Section Headers
============================================ */
.section-header {
font-family: var(--font-heading);
font-size: 0.95rem;
font-weight: 600;
letter-spacing: 0.45em;
color: var(--color-burgundy);
text-transform: uppercase;
margin-top: 6px;
margin-bottom: 16px;
text-align: center;
}
/* ============================================
Menu Items
============================================ */
.menu-content {
width: 100%;
text-align: center;
position: relative;
z-index: 1;
}
.menu-item {
margin-bottom: 18px;
}
.dish-name {
font-family: var(--font-heading);
font-size: 1.05rem;
font-weight: 500;
color: var(--color-ink);
letter-spacing: 0.12em;
margin-bottom: 3px;
}
.dish-description {
font-family: var(--font-body);
font-size: 0.95rem;
font-style: italic;
font-weight: 400;
color: var(--color-ink-light);
letter-spacing: 0.03em;
line-height: 1.5;
max-width: 380px;
margin: 0 auto;
}
/* ============================================
Footer Quote
============================================ */
.footer-quote {
margin-top: auto;
padding-top: 12px;
text-align: center;
}
.quote-text {
font-family: var(--font-body);
font-size: 0.88rem;
font-style: italic;
font-weight: 400;
color: var(--color-sepia);
letter-spacing: 0.04em;
line-height: 1.6;
max-width: 380px;
margin: 0 auto;
}
.quote-marks {
font-family: var(--font-display);
font-size: 1.5rem;
color: var(--color-gold);
opacity: 0.5;
line-height: 1;
}
/* ============================================
Animations (screen only)
============================================ */
@media screen {
.menu-page > * {
animation: fadeInUp 0.8s ease-out both;
}
.menu-page > *:nth-child(1) { animation-delay: 0.1s; }
.menu-page > *:nth-child(2) { animation-delay: 0.2s; }
.menu-page > *:nth-child(3) { animation-delay: 0.3s; }
.menu-page > *:nth-child(4) { animation-delay: 0.35s; }
.menu-page > *:nth-child(5) { animation-delay: 0.4s; }
.menu-page > *:nth-child(6) { animation-delay: 0.5s; }
.menu-page > *:nth-child(7) { animation-delay: 0.6s; }
.menu-page > *:nth-child(8) { animation-delay: 0.7s; }
.menu-page > *:nth-child(9) { animation-delay: 0.8s; }
.menu-page > *:nth-child(10) { animation-delay: 0.9s; }
.menu-page > *:nth-child(11) { animation-delay: 1.0s; }
.menu-page > *:nth-child(12) { animation-delay: 1.1s; }
.menu-page > *:nth-child(13) { animation-delay: 1.2s; }
.menu-page > *:nth-child(14) { animation-delay: 1.3s; }
.menu-page > *:nth-child(15) { animation-delay: 1.4s; }
.menu-page > *:nth-child(16) { animation-delay: 1.5s; }
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
}
/* ============================================
Print Styles — A4 Optimized
============================================ */
@media print {
html, body {
margin: 0;
padding: 0;
background: none;
}
body {
display: block;
padding: 0;
}
.menu-page {
width: 100%;
height: 100vh;
min-height: unset;
margin: 0;
padding: 28mm 22mm 24mm;
box-shadow: none;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
@page {
size: A4 portrait;
margin: 0;
}
}
/* ============================================
Responsive — small screens
============================================ */
@media screen and (max-width: 240mm) {
.menu-page {
width: 100%;
min-height: auto;
padding: 20mm 16mm 18mm;
}
.restaurant-name {
font-size: 1.7rem;
}
}
</style>
</head>
<body>
<main class="menu-page">
<!-- Corner ornaments -->
<span class="corner-ornament corner-tl">◢</span>
<span class="corner-ornament corner-tr">◢</span>
<span class="corner-ornament corner-bl">◢</span>
<span class="corner-ornament corner-br">◢</span>
<!-- Header -->
<img src="logo.png" alt="L'Air de Basement" class="logo">
<p class="welcome-text">Velkommen til en aften på</p>
<h1 class="restaurant-name">L'Air de Basement</h1>
<p class="subtitle">– Den skjulte perle i underetasjen –</p>
<!-- Top Divider -->
<div class="divider divider-wide">
<span class="divider-line"></span>
<span class="divider-symbol">✻ ✻ ✻</span>
<span class="divider-line"></span>
</div>
<!-- Event Details -->
<div class="event-details">
<p class="event-detail-line">
Dato · <span class="event-detail-value">Lørdag 28. mars 2026</span>
</p>
<p class="event-detail-line">
Reservasjon · <span class="event-detail-value">Fruen i huset</span>
</p>
</div>
<!-- Divider before Hovedrett -->
<div class="divider divider-flourish">
<span class="divider-line"></span>
<span class="divider-symbol">☙</span>
<span class="divider-line"></span>
</div>
<!-- HOVEDRETT -->
<h2 class="section-header">Hovedrett</h2>
<div class="menu-content">
<div class="menu-item">
<p class="dish-name">Klassisk Tournedos à la Kjeller</p>
<p class="dish-description">
Mørnet biff servert med sesongens utvalgte grønnsaker.
</p>
</div>
<div class="menu-item">
<p class="dish-name">Pommes de Terre à la Crème</p>
<p class="dish-description">
Fløyelsmyke fløtepoteter stekt til gyllen perfeksjon,<br>
smaksatt med hvitløk og urter.
</p>
</div>
<div class="menu-item">
<p class="dish-name">Sauce Béarnaise</p>
<p class="dish-description">
Hjemmelaget etter alle kunstens regler,<br>
med frisk estragon og ekte smør.<br>
<span style="font-size: 0.82rem; opacity: 0.7;">(Toro)</span>
</p>
</div>
</div>
<!-- Divider before Dessert -->
<div class="divider divider-flourish">
<span class="divider-line"></span>
<span class="divider-symbol">☙</span>
<span class="divider-line"></span>
</div>
<!-- DESSERT -->
<h2 class="section-header">Dessert</h2>
<div class="menu-content">
<div class="menu-item">
<p class="dish-name">Sjokolade-ekstase under bakken</p>
<p class="dish-description">
En syndig og mørk sjokoladedelikatess<br>
som smelter på tungen.
</p>
</div>
</div>
<!-- Divider before Service -->
<div class="divider divider-flourish">
<span class="divider-line"></span>
<span class="divider-symbol">☙</span>
<span class="divider-line"></span>
</div>
<!-- SERVICE DE GARDE -->
<h2 class="section-header">Service de Garde d'Enfants</h2>
<div class="menu-content">
<div class="menu-item">
<p class="dish-name">Garde pour le petit Daniel</p>
<p class="dish-description">
Amalie, Henrik og Vilde
</p>
</div>
</div>
<!-- Footer -->
<div class="divider divider-wide" style="margin-top: auto; padding-top: 8px;">
<span class="divider-line"></span>
<span class="divider-symbol">✻ ✻ ✻</span>
<span class="divider-line"></span>
</div>
<div class="footer-quote">
<span class="quote-marks">“</span>
<p class="quote-text">
God mat, godt drikke og selskap<br>
som ikke kan måles i penger.
</p>
<span class="quote-marks">”</span>
</div>
</main>
</body>
</html>