File size: 10,627 Bytes
5620f7b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Homemade Chocolate Chip Cookies</title>
    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }



        body {

            font-family: 'Georgia', serif;

            line-height: 1.6;

            color: #333;

            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

            min-height: 100vh;

        }



        .container {

            max-width: 1000px;

            margin: 0 auto;

            padding: 20px;

        }



        .recipe-header {

            text-align: center;

            background: white;

            padding: 40px;

            border-radius: 20px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.1);

            margin-bottom: 30px;

        }



        .recipe-title {

            font-size: 2.5em;

            color: #2c3e50;

            margin-bottom: 10px;

            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);

        }



        .recipe-subtitle {

            font-size: 1.2em;

            color: #7f8c8d;

            font-style: italic;

        }



        .recipe-info {

            display: flex;

            justify-content: space-around;

            background: white;

            padding: 25px;

            border-radius: 15px;

            box-shadow: 0 8px 25px rgba(0,0,0,0.1);

            margin-bottom: 30px;

        }



        .info-item {

            text-align: center;

        }



        .info-label {

            font-weight: bold;

            color: #e74c3c;

            font-size: 0.9em;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        .info-value {

            font-size: 1.1em;

            color: #2c3e50;

            margin-top: 5px;

        }



        .ingredients-section {

            background: white;

            padding: 30px;

            border-radius: 15px;

            box-shadow: 0 8px 25px rgba(0,0,0,0.1);

            margin-bottom: 30px;

        }



        .section-title {

            font-size: 1.8em;

            color: #2c3e50;

            margin-bottom: 20px;

            border-bottom: 3px solid #e74c3c;

            padding-bottom: 10px;

        }



        .ingredients-list {

            list-style: none;

            padding: 0;

        }



        .ingredients-list li {

            padding: 10px 0;

            border-bottom: 1px solid #ecf0f1;

            font-size: 1.1em;

            position: relative;

            padding-left: 30px;

        }



        .ingredients-list li:before {

            content: "🍪";

            position: absolute;

            left: 0;

            top: 10px;

        }



        .instructions-section {

            background: white;

            padding: 30px;

            border-radius: 15px;

            box-shadow: 0 8px 25px rgba(0,0,0,0.1);

        }



        .step {

            display: flex;

            align-items: flex-start;

            margin-bottom: 30px;

            padding: 20px;

            background: #f8f9fa;

            border-radius: 12px;

            border-left: 5px solid #e74c3c;

            transition: all 0.3s ease;

        }



        .step:hover {

            transform: translateY(-2px);

            box-shadow: 0 5px 15px rgba(0,0,0,0.1);

        }



        .step-image {

            flex: 0 0 200px;

            margin-right: 25px;

            position: relative;

        }



        .image-placeholder {

            width: 200px;

            height: 150px;

            background: linear-gradient(45deg, #ecf0f1, #bdc3c7);

            border: 2px dashed #95a5a6;

            border-radius: 8px;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            cursor: pointer;

            transition: all 0.3s ease;

            position: relative;

            overflow: hidden;

        }



        .image-placeholder:hover {

            border-color: #e74c3c;

            background: linear-gradient(45deg, #fadbd8, #f1c40f);

            transform: scale(1.02);

        }



        .image-placeholder.has-image {

            border: none;

            background: none;

        }



        .uploaded-image {

            width: 100%;

            height: 100%;

            object-fit: cover;

            border-radius: 6px;

        }



        .upload-icon {

            font-size: 2em;

            color: #95a5a6;

            margin-bottom: 8px;

        }



        .upload-text {

            color: #7f8c8d;

            font-size: 0.9em;

            text-align: center;

            font-weight: 500;

        }



        .step-content {

            flex: 1;

        }



        .step-number {

            background: linear-gradient(135deg, #e74c3c, #c0392b);

            color: white;

            width: 35px;

            height: 35px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            font-weight: bold;

            margin-bottom: 15px;

            font-size: 1.1em;

            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);

        }



        .step-text {

            font-size: 1.1em;

            color: #2c3e50;

            line-height: 1.7;

        }



        .file-input {

            display: none;

        }



        img {

            max-width: 300px;

            height: auto;

        }



        @media (max-width: 768px) {

            .step {

                flex-direction: column;

            }



            .step-image {

                flex: none;

                margin-right: 0;

                margin-bottom: 20px;

                align-self: center;

            }



            .recipe-info {

                flex-direction: column;

                gap: 15px;

            }



            .container {

                padding: 10px;

            }

        }

    </style>
</head>
<body>
    <div class="container">
        <div class="recipe-header">
            <h1 class="recipe-title">How to make sarmale</h1>
            <p class="recipe-subtitle">Absolutely delicious</p>
        </div>

        

        <div class="ingredients-section">
            <h2 class="section-title">Ingredients</h2>
            <ul class="ingredients-list">
                <li>1kg of meat (chopped up)</li>
                <li>200g of rice (washed)</li>
                <li>Salt</li>
                <li>Tomato sauce (NOT KETCHUP); if you can't find it, just use tomatoes.</li>
                <li>Sauerkraut: 2 heads (for the leaves and for the bottom of the pot); If you can't find that, use vine leaves, or if you can't find that, use coltsfoot plant leafs</li>
                <li>salt, pepper, paprika, thyme, dill</li>
                <li>2 eggs</li>
                <li>Oil</li>
                <li>3 onions (chopped)</li>
                <li>2 carrots (grated)</li>
                <li>4-5 garlic cloves (chopped)</li>
                

            </ul>
        </div>

        <div class="instructions-section">
    <h2 class="section-title">Instructions</h2>

    <div class="step">
        <div class="step-image">
            <img src="https://i.postimg.cc/NMKGbqn3/image.png" alt="Step 1 Image Placeholder" class="placeholder-image">
        </div>
        <div class="step-content">
            <div class="step-number">1</div>
            <div class="step-text">Add oil to a pan on medium heat and let it heat up.</div>
        </div>
    </div>

    <div class="step">
        <div class="step-image">
            <img src="https://i.postimg.cc/T1Stmmb8/image.png" alt="Step 2 Image Placeholder" class="placeholder-image">
        </div>
        <div class="step-content">
            <div class="step-number">2</div>
            <div class="step-text">Add the onion and fry the onion in oil and add the washed rice, salt, pepper, paprika, thyme, dill, carrots, garlic and tomato paste, mix well (better than in the image). After you add all of that, add a litle bit of water, (120 ml). After the water evaporates a little, stop the heat. Let cool, then mix with the minced meat. </div>
        </div>
    </div>

    <div class="step">
        
        <div class="step-content">
            <div class="step-number">3</div>
            <div class="step-text">De-salt the leaves if they are too salty by leaving them in warm water. Cut the thick veins so that you can roll the sarmale easily. If the leaves are too big cut them in half.</div>
        </div>
    </div>

    <div class="step">
        
        <div class="step-content">
            <div class="step-number">4</div>
            <div class="step-text">Place a spoonful of filling on the cabbage leaf. Roll tightly and close the ends. Repeat for all the cabbage leaves.</div>
        </div>
    </div>

    <div class="step">
        <div class="step-image">
            <img src="https://i.postimg.cc/x1H9X3m2/image.png" alt="Step 5 Image Placeholder" class="placeholder-image">
        </div>
        <div class="step-content">
            <div class="step-number">5</div>
            <div class="step-text">Place a layer of chopped cabbage at the bottom of the pot. Arrange the rolls in layers, add smoked meat and spices. Pour in enough water to slightly cover them. Cover with a lid and place on the stove.</div>
        </div>
    </div>

    <div class="step">
        <div class="step-image">
            <img src="https://i.postimg.cc/MGpx924W/image.png" alt="Step 6 Image Placeholder" class="placeholder-image">
        </div>
        <div class="step-content">
            <div class="step-number">6</div>
            <div class="step-text">Boil on low heat for 2-3 hours. Check from time to time and add liquid if necessary. </div>
        </div>
    </div>

    <div class="step">
        <div class="step-image">
            <img src="https://i.postimg.cc/7hYg6LtF/image.png" alt="Step 7 Image Placeholder" class="placeholder-image">
        </div>
        <div class="step-content">
            <div class="step-number">7</div>
            <div class="step-text">After they cool down, eat them with sour cream on top! </div>
        </div>
    </div>
</div>
        </div>
    </div>

</body>
</html>