-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.html
1453 lines (1202 loc) · 71.2 KB
/
en.html
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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<title>Manor Menu</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div class="scroll-to-top">
<button id="scrollButton" onclick="scrollToTop()">↑</button>
</div>
<div class="menu">
<header>
<button class="button-language" onclick="location.href='index.html'">RU</button>
<button class="button-language" onclick="location.href='en.html'">EN</button>
<h1>Manor Coffee</h1>
<nav>
<ul>
<li><a href="#classic">Coffee</a></li>
<li><a href="#tea">Tea</a></li>
<li><a href="#cold-drinks">Cold Drinks</a></li>
<li><a href="#alcoholic-beverages">Alcoholic beverages</a></li>
</ul>
<ul>
<li><a href="#breakfasts">Breakfast</a></li>
<li><a href="#salad">Snacks / Salad</a></li>
<li><a href="#soup">Soups</a></li>
<li><a href="#pasta">Paste/ Wok</a></li>
<li><a href="#hot">Hot meals</a></li>
<li><a href="#rolls">Rolls/ Sandwiches</a></li>
<li><a href="#sweets">Desserts</a></li>
</ul>
</nav>
<p class="established">Service 10%</p>
</header>
<hr>
<main>
<section id="classic">
<h2>Classic Coffee</h2>
<img src="images/classic.png" alt="coffee icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Espresso</p>
<p class="size">30/60ml</p>
<p class="price">600/700</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Americano</p>
<p class="size">150/250ml</p>
<p class="price">700/800</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Affogato Flat</p>
<p class="size">250ml</p>
<p class="price">1300</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Flat White</p>
<p class="size">140ml</p>
<p class="price">800</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">White Cappuccino</p>
<p class="size">180/340ml</p>
<p class="price">900/1100</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cappuccino Cream</p>
<p class="size">180/340ml</p>
<p class="price">1000/1400</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Latte</p>
<p class="size">250/450ml</p>
<p class="price">900/1200</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mocha</p>
<p class="size">350ml</p>
<p class="price">1300</p>
</div>
</article>
</section>
<section id="author">
<h2>Author's coffee</h2>
<img src="images/author.png" alt="pie icon" />
<section>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Latte «Singapore»</p>
<p class="size">300ml</p>
<p class="price">1100</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Latte«Peanut»</p>
<p class="size">300ml</p>
<p class="price">1100</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Bumble coffee</p>
<p class="size">300ml</p>
<p class="price">1100</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Caramel frappuccino</p>
<p class="size">350ml</p>
<p class="price">1200</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Classic Raf</p>
<p class="size">350ml</p>
<p class="price">1500</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Citrus Raf</p>
<p class="size">350ml</p>
<p class="price">1500</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Raf «Salted caramel»</p>
<p class="size">350ml</p>
<p class="price">1500</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Raflavender</p>
<p class="size">350ml</p>
<p class="price">1500</p>
</div>
</article>
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Raf«Hazelnut»</p>
<p class="size">350ml</p>
<p class="price">1500</p>
</div>
</article>
</section>
<section id="hot-chocolate">
<h2>Cocoa and hot chocolate</h2>
<img src="images/hotchocolate.png" alt="Hot chocolate icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cocoa with marshmallow</p>
<p class="size">350ml</p>
<p class="price">1100</p>
</div>
</article>
<h2>Toppings and coffee</h2>
<img src="images/topping.png" alt="Toppings icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Syrup</p>
<p class="size">20ml</p>
<p class="price">200</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Milk/plant milk</p>
<p class="size">50ml</p>
<p class="price">300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">A portion ofespresso in anydrink</p>
<p class="size">30ml</p>
<p class="price">600</p>
</div>
</article>
<h2>Alternative coffee</h2>
<img src="images/alter.png" alt="Alternative coffee icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">КEМEX</p>
<p class="size">500ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">AEROPRESS</p>
<p class="size">250ml</p>
<p class="price">900</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">PUROVER</p>
<p class="size">250ml</p>
<p class="price">1000</p>
</div>
</article>
</section>
<!-- ЧАЙ!!! -->
<section id="tea2">
<h2>Tea</h2>
<img src="images/tea2.png" alt="tea icon" />
<h3>Black tea</h3>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Assam</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Earl Grey</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Orange bliss</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<h3>Green</h3>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Sencha</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Milk Oolong</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Green with jasmine</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Ginger lemon</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<!-- More articles in similar format -->
<h3>Herbal Tea</h3>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Bora Bora</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
<article class="item">
<div class="tea-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Ivan tea with ginger</p>
<p class="size">350/500 ml</p>
<p class="price">800/1000</p>
</div>
</article>
</section>
<!-- Авторский чай -->
<section id="tea">
<h2>Author's tea</h2>
<img src="images/tea.png" alt="Tea icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Sea buckthorn tea</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Moroccan</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cranberry tea</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cherry with hazelnut</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Raspberry</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Apple charlotte</p>
<p class="size">500 ml</p>
<p class="price">1300</p>
</div>
</article>
</section>
<!-- холодные напитки -->
<section id="cold-drinks">
<h2>Cold drinks Smoothie</h2>
<img src="images/colds.png" alt="Cold drinks smoothies icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Fruit mix</p>
<p class="size">350 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Fresh green</p>
<p class="size">350 ml</p>
<p class="price">1500</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mango - Sea Buckthorn</p>
<p class="size">350 ml</p>
<p class="price">1600</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Currant</p>
<p class="size">350 ml</p>
<p class="price">1300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Banana-Mint</p>
<p class="size">350 ml</p>
<p class="price">1300</p>
</div>
</article>
</section>
<!-- коктейли -->
<section id="cocktails">
<h2>Cocktails</h2>
<img src="images/cocktails.png" alt="Cocktails icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Strawberry Mojito</p>
<p class="size">350 ml</p>
<p class="price">1400</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mojito Classic</p>
<p class="size">350 ml</p>
<p class="price">1200</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Icedream kiwi</p>
<p class="size">350 ml</p>
<p class="price">1300</p>
</div>
</article>
</section>
<!-- молочные коктейли -->
<section id="milk-shake">
<h2>Milkshakes</h2>
<img src="images/milk-shake.png" alt="Milk Cocktails icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">classic, strawberry, banana, chocolate</p>
<p class="size">350 ml</p>
<p class="price">1600</p>
</div>
</article>
</section>
<!-- лимонад -->
<section id="lemonades">
<h2>Mors/Lemonade</h2>
<img src="images/lemonades.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cranberryjuice</p>
<p class="size">250 ml</p>
<p class="price">700</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Lemonade Currant</p>
<p class="size">350 ml</p>
<p class="price">900</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Tarragon Lemonade</p>
<p class="size">350 ml</p>
<p class="price">900</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Lemonade Tropical fruit</p>
<p class="size">350 ml</p>
<p class="price">900</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mango Passion Fruit Lemonade</p>
<p class="size">350 ml</p>
<p class="price">1200</p>
</div>
</article>
</section>
<!-- соки -->
<section id="juices">
<h2>Juices</h2>
<img src="images/fresh.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Freshly squeezed juice
(orange, apple, grapefruit)</p>
<p class="size">200/300 ml</p>
<p class="price">1400/1800</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Juice in the assortment</p>
<p class="size">200/1000 ml</p>
<p class="price">500/1400</p>
</div>
</article>
</section>
<!-- напитки -->
<section id="beverages">
<h2>Drinks</h2>
<img src="images/juices.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Borjomi</p>
<p class="size">500 ml</p>
<p class="price">900</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Turan</p>
<p class="size">500 ml</p>
<p class="price">800</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Coca-cola / Sprite / Fanta</p>
<p class="size">250 ml</p>
<p class="price">600</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Redbull</p>
<p class="size">250 ml</p>
<p class="price">1200</p>
</div>
</article>
</section>
<!-- алкоголь -->
<section id="alcoholic-beverages">
<h2>Alcoholic beverages </h2>
<h2>Beer </h2>
<img src="images/beer.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Corona Extra</p>
<p class="price">2600</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Hoegaarden</p>
<p class="price">1800</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Bud</p>
<p class="price">1500</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Miller</p>
<p class="price">1200</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">No alcohol</p>
<p class="price">1800</p>
</div>
</article>
</section>
<!-- вино -->
<section id="wines">
<h2>Wine</h2>
<img src="images/vine.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Wine Magni cus Blanc Moelleux semi
sweet white</p>
<p class="size">150 ml</p>
<p class="price">1600</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Wine Magni cus Blanc Moelleux semi sweet red</p>
<p class="size">150 ml</p>
<p class="price">1600</p>
</div>
</article>
</section>
<!-- алкоголь коктейли -->
<section id="acocktails">
<h2>Cocktails</h2>
<img src="images/acocktails.png" alt="Mors and Lemonades icon" />
<article class="item">
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Aperol Spritz</p>
<p class="price">2500</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Whiskey Sour</p>
<p class="price">2300</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Fiero tonic</p>
<p class="price">2000</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Negroni</p>
<p class="price">2000</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Daiquiri</p>
<p class="price">1800</p>
</div>
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mojito</p>
<p class="price">2500</p>
</div>
</article>
</section>
<!-- Завтраки -->
<section id="breakfasts">
<h2>Breakfast</h2>
<img src="images/bf.png" alt="zakuski icon" />
<article class="item">
<!-- Круассан с семгой и яйцом пашот -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Croissant with salmon and poached egg</p>
<p class="price">2500</p>
</div>
<!-- Круассан с муссом из тунца -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Croissant with tuna mousse</p>
<p class="price">2100</p>
</div>
<!-- Круассан с копченым цыпленком -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Croissant with smoked chicken</p>
<p class="price">1900</p>
</div>
<!-- ... you can continue with other items in a similar manner ... -->
<!-- Detailed description for some items -->
</article>
<article class="item">
<!-- Круассан с яйцом Бенедикт и сливочным сыром -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Croissant with egg Benedict and cream cheese</p>
<p class="price">1900</p>
</div>
<!-- Венские вафли с ветчиной из говядины и сыром чеддер -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Viennese waffles with beef ham and cheddar cheese</p>
<p class="price">2100</p>
</div>
<!-- Фирменный завтрак от Шеф-повара -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Signature breakfast from the Chef</p>
<p class="price">3200</p>
</div>
<!-- Норвежский оmlет -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Norwegian omelet</p>
<!-- <p class="description">со слабосоленым лососем, вялеными томатами, сыром, сливочным маслом и американскими тостами</p> -->
<p class="price">2900</p>
</div>
<!-- Английский завтрак -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">English breakfast</p>
<p class="price">2400</p>
</div>
</article>
<article class="item">
<!-- Королевский оmlет -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Royal omelet</p>
<!-- <p class="description">нежный оmlет с куриным филе, шампиньонами, сыром и американскими тостами</p> -->
<p class="price">2100</p>
</div>
<!-- Деревенский завтрак -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Rustic breakfast</p>
<!-- <p class="description">глазунья из трёх яиц, обжаренная с картофелем, ветчиной из говядины, шампиньонами, томатным соусом и свежей зеленью, французским багетом</p> -->
<p class="price">1600</p>
</div>
</article>
<article class="item">
<!-- Оmlет с ветчиной из говядины, чеддером и свежим шпинатом -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Omelet with beef ham, cheddar and fresh spinach</p>
<p class="price">2500</p>
</div>
<!-- Сырники домашние с ягодным соусом и сметаной -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Homemade cheesecakes with berry sauce and sour cream</p>
<p class="price">1700</p>
</div>
<!-- Блинчики с малосоленым лососем и сливочным сыром -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Pancakes with lightly salted salmon and cream cheese</p>
<p class="price">2700</p>
</div>
<!-- Блинчики с куриным филе и шампиньонами -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Pancakes with chicken fillet and champignons</p>
<p class="price">1900</p>
</div>
<!-- Каша рисовая с курагой и ягодами/ курагой и орехами -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Rice porridge with dried apricots and berries/dried apricots and nuts</p>
<p class="price">1400</p>
</div>
<!-- Каша овсяная -->
<div class="coffee-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Oatmeal porridge(it is prepared on a choice ofwater, animal or vegetable milk)
</p>
<p class="price">800</p>
</div>
</article>
<article class="item">
<!-- Молинги к завтракам section -->
<h2>Breakfast Toppings
</h2>
<!-- <img src="path_to_your_image/zakuski_image.png" alt="zakuski icon" /> -->
<!-- Семга малосоленая -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Salted salmon</p>
<p class="price">800</p>
</div>
<!-- Колбаска баварская -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Bavarian sausage</p>
<p class="price">400</p>
</div>
<!-- Ветчина говяжья -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Beef ham</p>
<p class="price">300</p>
</div>
<!-- Шампиньоны -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Champignons</p>
<p class="price">400</p>
</div>
<!-- Помидоры -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Tomatoes</p>
<p class="price">200</p>
</div>
<!-- Сыр гауда -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Gouda cheese</p>
<p class="price">250</p>
</div>
<!-- Масло сливочное -->
<div class="breakfast-addon" style="display: flex; justify-content: space-between;">
<p class="flavor">Butter</p>
<p class="price">200</p>
</div>
</article>
</section>
<!-- salad -->
<section id="salad">
<h2>Snacks</h2>
<img src="images/shrimps.png" alt="zakuski icon" />
<!-- Тигровые креветки на рисовых чипсах с кремом из кукурузы -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Tiger prawns on rice chips with corn cream</p>
<p class="price">3900</p>
</div>
</article>
<!-- Сырное плато с фаршированными финиками и медом -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Cheese plateau with stuffed dates and honey</p>
<p class="price">4500</p>
</div>
</article>
<h2>Salads</h2>
<img src="images/salad.png" alt="salats icon" />
<!-- Боул с креветками, салатным миксом и авокадо -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Bowl with shrimp, salad mix and avocado</p>
<p class="price">3300</p>
</div>
</article>
<!-- Салат с маринованным лососем, креветками и пряным соусом -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Salad with pickled salmon and shrimp under a spicy dressing</p>
<p class="price">4200</p>
</div>
</article>
<!-- Цезарь с креветками -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Caesar with shrimp</p>
<p class="price">2700</p>
</div>
</article>
<!-- Салат с ростбифом и овощами под соусом релиш -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Salad with roast beef and vegetables with relish</p>
<p class="price">2500</p>
</div>
</article>
<!-- Цезарь с цыпленком -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Caesar sauce with chicken</p>
<p class="price">2300</p>
</div>
</article>
<!-- Салат с куриным филе, авокадо, клубникой и айсбергом под фирменной заправкой -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Salad with chicken fillet, avocado, strawberries and iceberg with branded dressing</p>
<p class="price">3200</p>
</div>
</article>
<!-- Боул с маринованным цыпленком -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Bowl with pickled chicken</p>
<p class="price">2700</p>
</div>
</article>
<!-- Салат из свежих овощей и запечённой свеклы -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Salad of fresh vegetables and baked beetroot</p>
<p class="price">1600</p>
</div>
</article>
<!-- Зеленый салат с кабачками, горошком и авокадо -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Green salad with zucchini, peas and avocado</p>
<p class="price">1800</p>
</div>
</article>
<!-- Салат с киноа, печеной тыквой под медово-горчичным дрессингом -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Quinoa salad, baked pumpkin with lemon honey dressing</p>
<p class="price">2400</p>
</div>
</article>
<!-- Салат с печеными баклажанами под соусом свит чили -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Baked eggplant saladwith sweet chili sauce</p>
<p class="price">1900</p>
</div>
</article>
</section>
<section id="soup">
<h2>Soups</h2>
<img src="images/soup.png" alt="soups icon" />
<!-- Суп том-ям -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Tom-yam soup</p>
<p class="price">3800</p>
</div>
</article>
<!-- Сливочный суп с сибасом и семгой -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Creamy soup with sea bass and salmon</p>
<p class="price">2800</p>
</div>
</article>
<!-- Домашний куриный суп с лапшой, перепелиным яйцом и гренками -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Homemade chicken soup with noodles,quail egg and croutons</p>
<p class="price">1200</p>
</div>
</article>
<!-- Грибной крем-суп с шампиньонами, белыми грибами и вешенками -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Mushroom cream soup with champignons,porcini mushrooms and oyster mushrooms</p>
<p class="price">1800</p>
</div>
</article>
<!-- Тыквенный крем-суп -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Lentil cream soup</p>
<p class="price">1300</p>
</div>
</article>
<!-- Чечевичный крем-суп -->
<article class="item">
<div class="dish-item" style="display: flex; justify-content: space-between;">
<p class="flavor">Pumpkin cream soup</p>
<p class="price">1100</p>
</div>
</article>