-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
464 lines (451 loc) · 18.6 KB
/
Copy pathindex.html
File metadata and controls
464 lines (451 loc) · 18.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
<!DOCTYPE html>
<html lang="sr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LaserWood Design</title>
<link rel="icon" type="image/webp" href="mini_web_link.webp">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Outfit', sans-serif;
background: #fcfaf7;
color: #2c2c2c;
overflow-x: hidden;
}
header {
position: relative;
background: linear-gradient(135deg, #4e2a16, #9c7b5d);
color: white;
padding: 4rem 2rem;
text-align: center;
overflow: hidden;
min-height: 380px;
}
.header-bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
pointer-events: none;
}
.header-video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(30, 20, 10, 0.45);
z-index: 2;
pointer-events: none;
}
.header-content {
position: relative;
z-index: 3;
}
.video-control-btn {
position: absolute;
bottom: 24px;
right: 32px;
z-index: 4;
background: rgba(40, 30, 20, 0.85);
color: #fff;
border: none;
border-radius: 50px;
padding: 0.7rem 2.2rem;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0,0,0,0.13);
transition: background 0.2s, transform 0.2s;
}
.video-control-btn:hover {
background: #6d3e22;
transform: scale(1.05);
}
@media (max-width: 640px) {
.video-control-btn {
right: 12px;
bottom: 12px;
padding: 0.6rem 1.3rem;
font-size: 1rem;
}
header {
min-height: 220px;
}
}
header h1 {
font-size: 3.5rem;
margin: 0;
animation: fadeInDown 1s ease-out;
}
header p {
font-size: 1.4rem;
color: #f8f4f0;
}
.typed-text {
color: #ffe7c1;
font-weight: 600;
font-size: 1.2rem;
margin-top: 1rem;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.container {
max-width: 1200px;
margin: 3rem auto;
padding: 1rem;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}
.card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
position: relative;
cursor: pointer;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 14px 38px rgba(0, 0, 0, 0.15);
}
.card h3 {
margin-top: 0;
color: #4e2a16;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 3rem;
}
.gallery img {
width: 100%;
border-radius: 16px;
object-fit: cover;
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.cta {
text-align: center;
margin: 4rem 0;
}
.cta a {
background: #4e2a16;
color: white;
padding: 1rem 2.5rem;
font-size: 1.2rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
}
.cta a:hover {
background: #6d3e22;
transform: scale(1.05);
}
footer {
text-align: center;
padding: 2rem;
background: #e4ded7;
font-size: 0.9rem;
}
/* Modal styles */
.modal {
display: none;
position: fixed;
z-index: 999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
overflow-y: auto;
padding: 3rem 1rem;
}
.modal-content {
background: white;
margin: 0 auto;
padding: 2rem 2.5rem 2.5rem;
border-radius: 12px;
max-width: 600px;
text-align: center;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
position: relative;
}
.modal-content img {
max-width: 100%;
height: auto;
border-radius: 12px;
margin-bottom: 1.5rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.modal-content h2 {
margin-top: 0;
color: #4e2a16;
font-weight: 800;
}
.modal-content p {
font-size: 1.1rem;
line-height: 1.6;
color: #3b3b3b;
margin-bottom: 0;
}
.close {
position: absolute;
right: 1rem;
top: 1rem;
font-size: 1.7rem;
font-weight: 700;
color: #888;
cursor: pointer;
transition: color 0.3s ease;
}
.close:hover {
color: #4e2a16;
}
@media (max-width: 640px) {
header h1 {
font-size: 2.6rem;
}
.modal-content {
padding: 1.5rem 1.5rem 2rem;
}
}
</style>
</head>
<body>
<header>
<video id="headerBgVideo" class="header-bg-video" src="VID_20250529_222941.webm" autoplay loop muted playsinline></video>
<div class="header-video-overlay"></div>
<div class="header-content">
<h1>LaserWood Design</h1>
<p class="typed-text"></p>
</div>
<button id="videoControlBtn" class="video-control-btn" aria-label="Pauziraj/Pokreni video">Pauziraj video</button>
<script>
var typed = new Typed('.typed-text', {
strings: [
'Laser preciznost. Handmade estetika.',
'Za brend koji se pamti.',
'Spoj prirode i tehnologije.',
'Brendiranje u svakom detalju.'
],
typeSpeed: 70,
backSpeed: 70,
backDelay: 4500,
loop: true,
});
</script>
</header>
<div class="container">
<section class="features">
<div class="card" onclick="openModal('modal1')">
<h3>Lasersko Graviranje</h3>
<p>Više o nama na TikTok nalogu. Precizno graviranje na drvetu, akrilu, MDF-u i drugim materijalima.</p>
</div>
<div class="card" onclick="openModal('modal2')">
<h3>Brendirani Proizvodi</h3>
<p>Više o nama na Instagram nalogu. Od poklon kutija do luksuznih drvenih etiketa — svaki komad nosi vašu priču.</p>
</div>
<div class="card" onclick="openModal('modal3')">
<h3>QR Kod Integracije</h3>
<p>Jedan od primer kako smo odradili zahtev klijenata.</p>
</div>
<div class="card" onclick="openModal('modal4')">
<h3>Mini Web Link Stranice</h3>
<p>Klasičana vizit karta koja u sebi sadrži bas sve sto je vama potrebno. Vaš digitalni hub: recenzije, društvene mreže, meni – sve na jednoj stranici.</p>
</div>
<div class="card" onclick="window.open('https://www.google.com/maps/place/Picerija+Ti+Amo/@44.9656663,20.6957029,776m/data=!3m2!1e3!4b1!4m6!3m5!1s0x475a8197de05b8dd:0xd56e2c54c5d0a7ec!8m2!3d44.9656663!4d20.6957029!16s%2Fg%2F11ss_3llg_?entry=ttu&g_ep=EgoyMDI1MDUyNy4wIKXMDSoJLDEwMjExNDUzSAFQAw%3D%3D','_blank')">
<h3>Google Recenzije</h3>
<p>Pogledajte šta drugi kažu o našim klijentima na Google-u.</p>
</div>
</section>
<section class="gallery">
<!-- Galerija slika (video uklonjen, sada je background u headeru) -->
</section>
<div class="cta">
<p>Spreman za novu dimenziju brendiranja?</p>
<a href="mailto:laserwooooddesign@gmail.com">Zatraži Ponudu</a>
</div>
</div>
<footer>
© 2025 LaserWood Design | Milan Tošić | 📞 069 334 9457 | ✉️ laserwooooddesign@gmail.com
</footer>
<!-- Modal popups with images -->
<div id="modal1" class="modal">
<div class="modal-content" style="width:90vw; max-width:420px; min-height:340px; max-height:90vh; overflow-y:auto; padding:0; display:flex; flex-direction:column; align-items:center; position:relative;">
<span class="close" onclick="closeModal('modal1')" style="position:absolute; top:10px; right:15px; font-size:28px; font-weight:bold; color:#333; cursor:pointer; user-select:none; z-index:10;">×</span>
<div style="display:flex; flex-direction:column; align-items:center; padding:2.5rem 1.5rem 2rem; width:100%;">
<img src="Lasersko_graviranje.webp" alt="Lasersko graviranje primer" style="width:100%; max-width:340px; border-radius:14px; margin-bottom:1.2rem; box-shadow:0 4px 18px rgba(0,0,0,0.13); background:#fff;" />
<img src="https://cdn-icons-png.flaticon.com/512/3046/3046122.png" alt="TikTok logo" style="width:64px; height:64px; border-radius:16px; margin-bottom:1.2rem; box-shadow:0 4px 16px rgba(0,0,0,0.08); background:#fff;" />
<h2 style="margin:0 0 0.5rem 0; font-size:1.5rem; color:#262626; font-weight:700;">@laserwooooddesign</h2>
<p style="color:#555; font-size:1.05rem; margin:0 0 1.2rem 0; text-align:center;">
Pogledajte naše video projekte, procese izrade i inspiraciju na TikTok profilu.<br>
<br>
Na TikToku možete pronaći:
<ul style="text-align:left; margin:0 auto 1.2rem auto; max-width:320px; color:#444; font-size:1.02rem; line-height:1.6;">
<li>Demonstracije laserskog graviranja na raznim materijalima</li>
<li>Kreativne ideje za personalizovane poklone</li>
<li>Brendiranje proizvoda za firme i ugostitelje</li>
<li>Unikatne drvene etikete i kutije</li>
<li>Proces izrade od dizajna do gotovog proizvoda</li>
<li>Inspiraciju za dekoraciju enterijera</li>
<li>Prikaz najnovijih projekata i saradnji</li>
<li>Q&A i savete za održavanje proizvoda</li>
<li>Kratke tutorijale i trikove iz radionice</li>
<li>Specijalne akcije i nagradne igre</li>
</ul>
</p>
<a href="https://www.tiktok.com/@laserwooooddesign" target="_blank" rel="noopener" style="display:inline-block; background:#000; color:#fff; font-weight:600; padding:0.8rem 2.2rem; border-radius:30px; font-size:1.1rem; text-decoration:none; box-shadow:0 2px 8px rgba(0,0,0,0.08); transition:background 0.2s;">Pogledaj na TikToku</a>
</div>
</div>
</div>
<div id="modal2" class="modal">
<div class="modal-content" style="width:90vw; max-width:420px; min-height:420px; max-height:90vh; overflow-y:auto; padding:0; display:flex; flex-direction:column; align-items:center; position:relative;">
<span class="close" onclick="closeModal('modal2')" style="position:absolute; top:10px; right:15px; font-size:28px; font-weight:bold; color:#333; cursor:pointer; user-select:none; z-index:10;">×</span>
<div style="display:flex; flex-direction:column; align-items:center; padding:2.5rem 1.5rem 2rem; width:100%;">
<img src="Brendirani_proizvodi.webp" alt="Brendirani proizvodi primer" style="width:100%; max-width:340px; border-radius:14px; margin-bottom:1.2rem; box-shadow:0 4px 18px rgba(0,0,0,0.13); background:#fff;" />
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png" alt="Instagram logo" style="width:64px; height:64px; border-radius:16px; margin-bottom:1.2rem; box-shadow:0 4px 16px rgba(0,0,0,0.08);" />
<h2 style="margin:0 0 0.5rem 0; font-size:1.5rem; color:#262626; font-weight:700;">@laser_wooood_design</h2>
<p style="color:#555; font-size:1.05rem; margin:0 0 1.2rem 0; text-align:center;">
Pratite nas na Instagramu za najnovije projekte, inspiraciju i brendirane proizvode iz naše radionice.<br><br>
Na Instagram profilu možete pronaći:
<ul style="text-align:left; margin:0 auto 1.2rem auto; max-width:320px; color:#444; font-size:1.02rem; line-height:1.6;">
<li>Fotografije gotovih proizvoda i detalja iz izrade</li>
<li>Inspiraciju za poklone i dekoraciju</li>
<li>Brendirane kutije, etikete i unikatne predmete</li>
<li>Pre i posle transformacije proizvoda</li>
<li>Rešenja za firme, ugostitelje i male biznise</li>
<li>Story-je sa aktuelnim projektima i radionicom</li>
<li>Recenzije i utiske zadovoljnih klijenata</li>
<li>Najave akcija i novih kolekcija</li>
<li>Direktan kontakt i komunikaciju sa timom</li>
</ul>
</p>
<!-- Instagram preview slike uklonjene po zahtevu korisnika -->
<a href="https://www.instagram.com/laser_wooood_design/" target="_blank" rel="noopener" style="display:inline-block; background:linear-gradient(90deg,#f58529,#dd2a7b,#8134af,#515bd4); color:white; font-weight:600; padding:0.8rem 2.2rem; border-radius:30px; font-size:1.1rem; text-decoration:none; box-shadow:0 2px 8px rgba(221,42,123,0.08); transition:background 0.2s;">Pogledaj na Instagramu</a>
</div>
</div>
</div>
<div id="modal3" class="modal">
<div class="modal-content" style="width:95vw; max-width:900px; height:95vh; max-height:98vh; overflow-y:auto; padding:0; display:flex; flex-direction:column;">
<span class="close" onclick="closeModal('modal3')" style="position:absolute; top:10px; right:15px; font-size:28px; font-weight:bold; color:#333; cursor:pointer; user-select:none; z-index:10;">×</span>
<div style="display:flex; flex-direction:column; align-items:center; padding:2.5rem 1.5rem 2rem; width:100%; height:auto;">
<img src="https://cdn-icons-png.flaticon.com/512/3062/3062634.png" alt="QR kod ikona" style="width:64px; height:64px; border-radius:16px; margin-bottom:1.2rem; box-shadow:0 4px 16px rgba(0,0,0,0.08); background:#fff;" />
<h2 style="margin:0 0 0.5rem 0; font-size:1.5rem; color:#262626; font-weight:700;">QR Kod Integracije</h2>
<p style="color:#555; font-size:1.05rem; margin:0 0 1.2rem 0; text-align:center;">
Digitalni meni i informacije dostupni jednim skeniranjem!<br><br>
Šta dobijate QR kod integracijom:
<ul style="text-align:left; margin:0 auto 1.2rem auto; max-width:320px; color:#444; font-size:1.02rem; line-height:1.6;">
<li>Brz pristup digitalnom meniju ili web stranici</li>
<li>Jednostavno deljenje informacija sa gostima</li>
<li>Personalizovani QR kod dizajn u skladu sa vašim brendom</li>
<li>Integracija na proizvode, ambalažu, vizit karte</li>
<li>Bezbedno i moderno rešenje za ugostitelje i firme</li>
<li>Praćenje posećenosti i analitika (na zahtev)</li>
</ul>
</p>
<img src="Ti_amo_QRTabla.webp" alt="QR tabla Picerija Ti Amo" style="width:100%; max-width:340px; border-radius:14px; margin-bottom:1.2rem; box-shadow:0 4px 18px rgba(0,0,0,0.13); background:#fff;" />
<iframe
src="https://unlimitededition.github.io/meni/"
title="Digitalni meni"
style="width:100%; min-height:400px; height:60vh; border:none; border-radius:12px; margin-bottom:1rem;"
allowfullscreen
loading="lazy"
></iframe>
</div>
</div>
</div>
<div id="modal4" class="modal">
<div class="modal-content" style="width:95vw; max-width:900px; height:95vh; max-height:98vh; overflow-y:auto; padding:0; display:flex; flex-direction:column;">
<span class="close" onclick="closeModal('modal4')" style="position:absolute; top:10px; right:15px; font-size:28px; font-weight:bold; color:#333; cursor:pointer; user-select:none; z-index:10;">×</span>
<div style="display:flex; flex-direction:column; align-items:center; padding:2.5rem 1.5rem 2rem; width:100%; height:auto;">
<img src="https://cdn-icons-png.flaticon.com/512/545/545680.png" alt="Web link ikona" style="width:64px; height:64px; border-radius:16px; margin-bottom:1.2rem; box-shadow:0 4px 16px rgba(0,0,0,0.08); background:#fff;" />
<h2 style="margin:0 0 0.5rem 0; font-size:1.5rem; color:#262626; font-weight:700;">Mini Web Link Stranice</h2>
<p style="color:#555; font-size:1.05rem; margin:0 0 1.2rem 0; text-align:center;">
Sve vaše važne informacije na jednom mestu!<br><br>
Mini web link stranica omogućava:
<ul style="text-align:left; margin:0 auto 1.2rem auto; max-width:320px; color:#444; font-size:1.02rem; line-height:1.6;">
<li>Prikaz recenzija, društvenih mreža i menija na jednoj stranici</li>
<li>Jednostavno deljenje linka sa klijentima i gostima</li>
<li>Personalizovan dizajn u skladu sa vašim brendom</li>
<li>Brzu izmenu i ažuriranje informacija</li>
<li>Direktan kontakt i poziv na akciju</li>
<li>Veću online vidljivost i profesionalan nastup</li>
</ul>
</p>
<img src="mini_web_link.webp" alt="Mini web link primer" style="width:100%; max-width:340px; border-radius:14px; margin-bottom:1.2rem; box-shadow:0 4px 18px rgba(0,0,0,0.13); background:#fff;" />
<iframe
src="https://unlimitededition.github.io/laserwood-design/index.html"
title="Mini Web Link Stranice"
style="width:100%; min-height:400px; height:60vh; border:none; border-radius:12px; margin-bottom:1rem;"
allowfullscreen
loading="lazy"
></iframe>
</div>
</div>
</div>
<script>
function openModal(modalId) {
document.getElementById(modalId).style.display = "block";
document.body.style.overflow = "hidden"; // onemogući scroll dok je popup otvoren
}
function closeModal(modalId) {
document.getElementById(modalId).style.display = "none";
document.body.style.overflow = "auto";
}
// Klik van modal sadržaja zatvara popup
window.onclick = function(event) {
const modals = ['modal1', 'modal2', 'modal3', 'modal4', 'modalRecenzije'];
modals.forEach(id => {
let modal = document.getElementById(id);
if (event.target === modal) {
closeModal(id);
}
});
}
// Video background kontrola
const headerBgVideo = document.getElementById('headerBgVideo');
const videoControlBtn = document.getElementById('videoControlBtn');
function updateVideoBtn() {
if (headerBgVideo.paused) {
videoControlBtn.textContent = 'Pokreni video';
} else {
videoControlBtn.textContent = 'Pauziraj video';
}
}
videoControlBtn.addEventListener('click', function() {
if (headerBgVideo.paused) {
headerBgVideo.play();
} else {
headerBgVideo.pause();
}
updateVideoBtn();
});
headerBgVideo.addEventListener('play', updateVideoBtn);
headerBgVideo.addEventListener('pause', updateVideoBtn);
// Inicijalno postavi dugme
updateVideoBtn();
</script>
</body>
</html>