-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
509 lines (425 loc) · 25.1 KB
/
index.html
File metadata and controls
509 lines (425 loc) · 25.1 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
<!DOCTYPE html>
<html lang="es-ES" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GO! Tacos Fuenlabrada | Tacos, hamburguesas, pizzas y más</title>
<meta name="description"
content="GO! Tacos es un local de comida rápida en Fuenlabrada (Madrid) con tacos, hamburguesas, pizzas, wraps y más. Consulta la carta, promociones y ubicación y pide para llevar o recoger.">
<!-- Favicon para modo claro -->
<link rel="icon" href="./assets/img/logo-black.ico" media="(prefers-color-scheme: light)">
<!-- Favicon para modo oscuro -->
<link rel="icon" href="./assets/img/logo-white.png" media="(prefers-color-scheme: dark)">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<!-- bg-[#FFF8F0]/10 dark:bg-gray-900/80 -->
<body class="bg-[#FFF8F0] dark:bg-gray-900 text-black dark:text-white">
<header id="main-header"
class="fixed top-0 left-0 w-full bg-[#FFF8F0]/90 dark:bg-[#3b3c47]/90 z-50 shadow-md dark:shadow-light transition-transform duration-300">
<div class="max-w-7xl mx-auto flex items-center justify-between h-[104px] px-6">
<!-- DIV 1: Logo + Nombre -->
<div class="flex items-center cursor-pointer hidden md:flex"
onclick="window.scrollTo({top:0, behavior:'smooth'})">
<!-- Logo -->
<div class="size-20 flex items-center justify-center">
<img src="./assets/img/logo-black.svg" class="dark:hidden w-full h-full" alt="Logo Claro">
<img src="./assets/img/logo-white.png" class="hidden dark:block w-full h-full" alt="Logo Oscuro">
</div>
<!-- Nombre -->
<div class="ml-3 text-3xl font-bold flex items-center">
<span class="text-red-600">GO!</span>
<span class="ml-1 text-gray-900 dark:text-white">TACOS</span>
</div>
</div>
<div class="flex items-center cursor-pointer md:hidden flex"
onclick="window.scrollTo({top:0, behavior:'smooth'})">
<!-- Logo -->
<div class="size-20 flex items-center justify-center">
<img src="./assets/img/logo-black.svg" class="dark:hidden w-full h-full" alt="Logo Claro">
<img src="./assets/img/logo-white.png" class="hidden dark:block w-full h-full" alt="Logo Oscuro">
</div>
</div>
<div class="flex items-center cursor-pointer md:hidden flex"
onclick="window.scrollTo({top:0, behavior:'smooth'})">
<!-- Nombre -->
<div class="m-2 text-3xl font-bold flex items-center">
<span class="text-red-600">GO!</span>
<span class="ml-1 text-gray-900 dark:text-white">TACOS</span>
</div>
</div>
<!-- DIV 2: Menú de secciones (Desktop) -->
<nav class="hidden md:flex space-x-6 text-gray-900 dark:text-white font-bold">
<a href="#inicio" class="block hover:text-red-600 dark:hover:text-red-500">Inicio</a>
<a href="#carta" class="block hover:text-red-600 dark:hover:text-red-500">Carta</a>
<a href="#promociones" class="block hover:text-red-600 dark:hover:text-red-500">Promocion</a>
<a href="#ubicacion" class="block hover:text-red-600 dark:hover:text-red-500">Ubicación</a>
<a href="#contacto" class="block hover:text-red-600 dark:hover:text-red-500">Contacto</a>
</nav>
<!-- DIV 3: Dark Mode (Desktop) + Botón menú móvil -->
<div class="flex items-center space-x-6">
<!-- Botón Dark Mode (Desktop) -->
<button id="theme-toggle-desktop" class="p-2 rounded bg-gray-200 dark:bg-gray-800 hidden md:block">
<!-- Icono para modo oscuro: sol -->
<img src="assets/img/sun.svg" alt="Modo oscuro" class="w-6 hidden dark:block" />
<!-- Icono para modo claro: luna -->
<img src="assets/img/moon.svg" alt="Modo claro" class="w-6 block dark:hidden" />
</button>
<!-- Botón menú móvil -->
<button id="mobile-menu-btn" class="p-2 rounded bg-gray-200 dark:bg-gray-800 md:hidden">
<!-- Menú hamburguesa para modo oscuro -->
<img src="assets/img/menu-white.svg" alt="Menú oscuro" class="w-6 hidden dark:block" />
<!-- Menú hamburguesa para modo claro -->
<img src="assets/img/menu-black.svg" alt="Menú claro" class="w-6 block dark:hidden" />
</button>
</div>
</div>
<!-- Menú móvil desplegable -->
<nav id="mobile-menu"
class="hidden flex-col bg-[#FFF8F0]/10 dark:bg-[#3b3c47]/10 text-gray-900 dark:text-white px-4 py-4 space-y-2 md:hidden">
<a href="#inicio" class="block hover:text-red-600 dark:hover:text-red-500">Inicio</a>
<a href="#carta" class="block hover:text-red-600 dark:hover:text-red-500">Carta</a>
<a href="#promociones" class="block hover:text-red-600 dark:hover:text-red-500">Promocion</a>
<a href="#ubicacion" class="block hover:text-red-600 dark:hover:text-red-500">Ubicación</a>
<a href="#contacto" class="block hover:text-red-600 dark:hover:text-red-500">Contacto</a>
<!-- Botón Dark Mode (Móvil) -->
<button id="theme-toggle-mobile"
class="mt-2 p-2 rounded bg-gray-200 dark:bg-gray-800 w-1/6 flex items-center justify-center">
<!-- Icono para modo oscuro: sol -->
<img src="assets/img/sun.svg" alt="Modo oscuro" class="w-6 hidden dark:block" />
<!-- Icono para modo claro: luna -->
<img src="assets/img/moon.svg" alt="Modo claro" class="w-6 block dark:hidden" />
</button>
</nav>
</header>
<!-- Contenido principal -->
<main class="relative z-10">
<!-- SECCION INICIO -->
<section id="inicio" class="relative w-full h-screen overflow-hidden">
<!-- Fondo con opacidad -->
<div class="absolute inset-0 bg-[url('../img/GOKU.png')] bg-cover md:bg-contain bg-no-repeat bg-center opacity-90 pointer-events-none"
style="background-position-y: 120px;"></div>
<div class="absolute inset-0
bg-gradient-to-b
from-stone-100/50 via-stone-100/30 to-transparent
dark:from-stone-950/60 dark:via-stone-950/40
md:from-stone-100/60 md:via-stone-100/40
md:dark:from-stone-950/70 md:dark:via-stone-950/60
md:to-transparent">
</div>
<!-- Contenido centrado -->
<div class="relative z-20 flex flex-col items-center justify-start h-full text-center px-4 pt-28">
<!-- Logos claro/oscuro -->
<img src="./assets/img/logo-black.svg" class="dark:hidden w-40 md:w-48 mb-4" alt="Logo Claro">
<img src="./assets/img/logo-white.png" class="hidden dark:block w-40 md:w-48 mb-4" alt="Logo Oscuro">
<h1 class="text-6xl md:text-6xl font-bold text-stone-100 dark:text-stone-950">
<span class="text-red-600">GO!</span>
<span class="ml-1 text-gray-900 dark:text-white">TACOS</span>
</h1>
<h3 class="mt-4 text-2xl md:text-2xl text-stone-950 dark:text-stone-100 font-mono font-bold max-w-2xl">
Descubre nuestra carta
</h3>
<h3 class="mt-4 text-2xl md:text-2xl text-stone-950 dark:text-stone-100 font-mono max-w-2xl">
Gran variedad <span class="font-bold">100%</span> halal
</h3>
<div class="mt-6 flex flex-col sm:flex-row gap-4">
<a href="#carta-title"
class="px-6 py-3 bg-red-600 text-white rounded-lg shadow-lg hover:bg-red-700 transition">
Ver menú
</a>
</div>
</div>
</section>
<!-- SECCIÓN CARTA -->
<!-- <h2 class="text-3xl font-bold text-center mb-8 text-gray-900 dark:text-gray-100">
Menu
</h2>
<nav id="nav-categorias"
class="sticky top-0 z-50 bg-[#FFF8F0]/90 dark:bg-[#3b3c47]/90 shadow-md dark:shadow-light transition-transform duration-300 flex justify-start gap-3 py-3 px-4 text-sm font-semibold border-b border-gray-200 dark:border-white overflow-x-auto max-w-full">
Aquí van los botones generados por JS --><!--
</nav>
<section id="carta" class="max-w-5xl mx-auto px-6 py-8 space-y-12">
Se genera todo desde JS --><!--
<div id="menu-dinamico" class="grid gap-4 sm:grid-cols-2"></div>
</section> -->
<!-- SECCIÓN CARTA -->
<section id="carta" aria-labelledby="carta-title" class="max-w-5xl mx-auto px-6 py-8 space-y-12 scroll-mt-32">
<h2 id="carta-title" class="text-3xl font-bold text-center mb-8 text-gray-900 dark:text-gray-100">
Menú
</h2>
<nav id="nav-categorias"
class="sticky top-28 z-40 bg-[#FFF8F0]/90 dark:bg-[#3b3c47]/90 shadow-md dark:shadow-light transition-transform duration-300 flex items-center md:justify-center justify-start gap-3 py-3 pl-4 pr-12 text-sm font-semibold border-b border-x rounded-b-lg border-gray-200 dark:border-white overflow-x-auto overflow-y-hidden max-w-full">
<!-- Aquí van los botones generados por JS -->
</nav>
<!-- Se genera todo desde JS -->
<div id="menu-dinamico" class="flex flex-col gap-6"></div>
</section>
<!-- PROMOCIONES -->
<section id="promociones" class="max-w-5xl mx-auto px-6 py-8 space-y-8 scroll-mt-32">
<h2 class="text-3xl font-bold text-center mb-8 text-gray-900 dark:text-gray-100">Promociones</h2>
<div id="promos-dinamico" class="grid gap-6 sm:grid-cols-1 md:grid-cols-2">
<!-- Promo 1 -->
<article
class="flex items-start gap-4 p-4 border rounded-lg backdrop-blur-[3px] shadow-md border-red-500 hover:shadow-lg transition transform hover:scale-105">
<div class="text-2xl">🔥</div>
<div>
<h3 class="font-bold text-xl text-stone-950 dark:text-stone-100">¡OFFERTÓN!</h3>
<p class="text-sm text-stone-950 dark:text-stone-100">
Martes y Jueves: Tu taco de pollo, ternera o mixto por solo
<span class="font-bold text-red-500">6€</span>
</p>
</div>
</article>
<!-- Promo 2 -->
<article
class="flex items-start gap-4 p-4 border rounded-lg backdrop-blur-[3px] shadow-md border-red-500 hover:shadow-lg transition transform hover:scale-105">
<div class="text-2xl">💥</div>
<div>
<h3 class="font-bold text-xl text-stone-950 dark:text-stone-100">Promo Doble Taco</h3>
<p class="text-sm text-stone-950 dark:text-stone-100">
2 tacos a elegir por solo
<span class="font-bold text-red-500">7€</span> — todos los días.
</p>
</div>
</article>
<!-- Promo 3 -->
<article
class="flex items-start gap-4 p-4 border rounded-lg backdrop-blur-[3px] shadow-md border-red-500 hover:shadow-lg transition transform hover:scale-105">
<div class="text-2xl">🥤</div>
<div>
<h3 class="font-bold text-xl text-stone-950 dark:text-stone-100">Bebida GRATIS</h3>
<p class="text-sm text-stone-950 dark:text-stone-100">
Pide cualquier menú y llévate una bebida gratis.
</p>
</div>
</article>
<!-- Promo 4 -->
<article
class="flex items-start gap-4 p-4 border rounded-lg backdrop-blur-[3px] shadow-md border-red-500 hover:shadow-lg transition transform hover:scale-105">
<div class="text-2xl">⭐</div>
<div>
<h3 class="font-bold text-xl text-stone-950 dark:text-stone-100">Menú Especial del Día</h3>
<p class="text-sm text-stone-950 dark:text-stone-100">
Taco + Nachos pequeños por solo
<span class="font-bold text-red-500">8€</span>.
</p>
</div>
</article>
</div>
</section>
<!-- UBICACION -->
<section id="ubicacion" class="max-w-5xl mx-auto px-6 py-12 scroll-mt-32">
<!-- TITULO CENTRADO -->
<h2 class="text-3xl font-bold text-center mb-8 text-gray-900 dark:text-gray-100">
Ubicación
</h2>
<!-- GRID: 1 columna móvil / 2 columnas desktop -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<!-- MAPA (primero en móvil, izquierda en desktop) -->
<div class="order-1 md:order-1 relative">
<!-- Overlay clicable SOLO EN MÓVIL -->
<a href="https://www.google.com/maps?q=C.+Luis+Sauquillo,+93,+28944+Fuenlabrada,+Madrid,+España"
target="_blank" class="absolute inset-0 z-10 block md:hidden"></a>
<!-- Iframe -->
<iframe class="w-full rounded-xl border-4
md:h-80 md:w-full
h-96 w-full
border-black dark:border-white" loading="lazy" allowfullscreen
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3066.486321904747!2d-3.806778424027474!3d40.28299916686159!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd418cffcb1f40bb%3A0xe5b2f7a8f0ef6e7d!2sC.%20Luis%20Sauquillo%2C%2093%2C%2028944%20Fuenlabrada%2C%20Madrid!5e0!3m2!1ses!2ses!4v1732878250000!5m2!1ses!2ses">
</iframe>
</div>
<!-- TEXTO (segundo en móvil, derecha en desktop) -->
<div class="order-2 md:order-2 block p-4 rounded-lg text-gray-900 dark:text-gray-100">
<p class="mb-2 text-lg font-semibold">
📍 Dirección:
</p>
<p class="mb-2">
<a href="https://www.google.com/maps?q=C.+Luis+Sauquillo,+93,+28944+Fuenlabrada,+Madrid,+España"
target="_blank"
class="text-blue-600 dark:text-blue-400 hover:underline transition-transform transform hover:-translate-y-1 hover:scale-105 duration-300">
C. Luis Sauquillo, 93,<br>
28944 Fuenlabrada, Madrid, España
</a>
</p>
<p class="text-gray-600 dark:text-gray-300">
Estamos ubicados muy cerca del McDonald's de Luis Sauquillo, con fácil acceso.
</p>
</div>
</div>
</section>
<!-- SECCIÓN CONTACTO -->
<section id="contacto" class="max-w-5xl mx-auto px-6 py-12 space-y-6">
<header class="space-y-2">
<h2 class="text-3xl font-bold text-center mb-8 text-gray-900 dark:text-gray-100">
Contacto
</h2>
<p class="text-base leading-relaxed text-gray-900 dark:text-gray-100 font-semibold">
Haz tu pedido, consúltanos dudas o encarga para llevar.
Te atendemos por teléfono, WhatsApp o redes sociales.
</p>
</header>
<div class="grid gap-8 md:grid-cols-2">
<!-- Columna 1: Teléfonos + WhatsApp -->
<div class="space-y-5 text-[15px] leading-relaxed text-gray-900 dark:text-gray-100 font-semibold">
<div>
<p class="inline-flex items-center gap-2 text-[11px] font-bold uppercase tracking-wide
bg-amber-100/90 text-amber-900 dark:bg-amber-900/40 dark:text-amber-100
px-3 py-1 rounded-full mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-amber-500"></span>
Teléfono y WhatsApp
</p>
<p class="mt-1">
Móvil / WhatsApp:<br>
<a href="tel:+34613726739" class="font-bold text-emerald-700 dark:text-emerald-300
underline underline-offset-4 decoration-2 decoration-emerald-500
hover:text-emerald-800 hover:decoration-emerald-600 transition">
+34 613 72 67 39
</a>
</p>
<p class="mt-2">
Escríbenos directamente por WhatsApp:<br>
<a href="https://wa.me/34613726739" class="font-bold text-emerald-700 dark:text-emerald-300
underline underline-offset-4 decoration-2 decoration-emerald-500
hover:text-emerald-800 hover:decoration-emerald-600 transition" target="_blank"
rel="noopener noreferrer">
Abrir chat de WhatsApp
</a>
</p>
<p class="mt-3">
Teléfono fijo:<br>
<a href="tel:+34910000000" class="font-bold text-emerald-700 dark:text-emerald-300
underline underline-offset-4 decoration-2 decoration-emerald-500
hover:text-emerald-800 hover:decoration-emerald-600 transition">
91 000 00 00
</a>
</p>
</div>
<div>
<p class="inline-flex items-center gap-2 text-[11px] font-bold uppercase tracking-wide
bg-amber-100/90 text-amber-900 dark:bg-amber-900/40 dark:text-amber-100
px-3 py-1 rounded-full mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-amber-500"></span>
Dirección
</p>
<p class="mt-1">
C. Luis Sauquillo, 93<br>
28944 Fuenlabrada, Madrid, España
</p>
<p class="mt-1 text-xs text-gray-500 dark:text-gray-400 font-normal">
*La ubicación detallada la tienes en la sección “Ubicación”.*
</p>
</div>
</div>
<!-- Columna 2: Horario + Redes -->
<div class="space-y-5 text-[15px] leading-relaxed text-gray-900 dark:text-gray-100 font-semibold">
<div>
<p class="inline-flex items-center gap-2 text-[11px] font-bold uppercase tracking-wide
bg-amber-100/90 text-amber-900 dark:bg-amber-900/40 dark:text-amber-100
px-3 py-1 rounded-full mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-amber-500"></span>
Horario
</p>
<p class="mt-1">
🗓️ <span class="font-bold">Todos los días (excepto miércoles)</span><br>
⏰ 14:00 – 00:00
</p>
<p class="mt-2">
🗓️ <span class="font-bold">Miércoles</span><br>
⏰ 20:00 – 00:00
</p>
</div>
<div>
<p class="inline-flex items-center gap-2 text-[11px] font-bold uppercase tracking-wide
bg-amber-100/90 text-amber-900 dark:bg-amber-900/40 dark:text-amber-100
px-3 py-1 rounded-full mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-amber-500"></span>
Redes sociales
</p>
<ul class="mt-1 space-y-1">
<li>
Instagram:
<a href="https://instagram.com/go.tacos" class="font-bold text-emerald-700 dark:text-emerald-300
underline underline-offset-4 decoration-2 decoration-emerald-500
hover:text-emerald-800 hover:decoration-emerald-600 transition" target="_blank"
rel="noopener noreferrer">
@go.tacos
</a>
</li>
<li>
TikTok:
<a href="https://www.tiktok.com/@go.tacos" class="font-bold text-emerald-700 dark:text-emerald-300
underline underline-offset-4 decoration-2 decoration-emerald-500
hover:text-emerald-800 hover:decoration-emerald-600 transition" target="_blank"
rel="noopener noreferrer">
@go.tacos
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer id="footer"
class="mt-12 border-t border-gray-200 dark:border-gray-700 bg-[#FFF8F0] dark:bg-[#151824] text-gray-800 dark:text-gray-200">
<div class="max-w-5xl mx-auto px-6 py-8 space-y-6">
<!-- Fila superior -->
<div class="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
<!-- Marca -->
<div>
<h2 class="text-lg font-extrabold tracking-tight">
GO! Tacos <span class="text-lime-600 dark:text-lime-400">Fuenlabrada</span>
</h2>
<p class="text-xs text-gray-600 dark:text-gray-400">
Street food francesa en tu barrio.
</p>
</div>
<!-- Enlaces rápidos -->
<nav class="flex flex-wrap gap-4 text-sm">
<a href="#carta" class="hover:text-lime-600 dark:hover:text-lime-400 transition-colors">
Carta
</a>
<a href="#contacto" class="hover:text-lime-600 dark:hover:text-lime-400 transition-colors">
Contacto
</a>
<a href="#ubicacion" class="hover:text-lime-600 dark:hover:text-lime-400 transition-colors">
Cómo llegar
</a>
<!-- Si tienes pedido online en el futuro -->
<!-- <a href="#pedidos" class="hover:text-lime-600 dark:hover:text-lime-400 transition-colors">
Pedir online
</a> -->
</nav>
</div>
<!-- Fila inferior -->
<div
class="pt-4 border-t border-gray-200 dark:border-gray-700 flex flex-col gap-3 md:flex-row md:items-center md:justify-between">
<p class="text-xs text-gray-600 dark:text-gray-400">
© <span id="footer-year"></span> GO! Tacos Fuenlabrada. Todos los derechos reservados.
</p>
<div class="flex flex-wrap gap-4 text-xs text-gray-600 dark:text-gray-400">
<a href="#" class="hover:text-lime-600 dark:hover:text-lime-400 underline-offset-2 hover:underline">
Aviso legal
</a>
<a href="#" class="hover:text-lime-600 dark:hover:text-lime-400 underline-offset-2 hover:underline">
Privacidad
</a>
<a href="#" class="hover:text-lime-600 dark:hover:text-lime-400 underline-offset-2 hover:underline">
Cookies
</a>
<!-- Crédito opcional desarrollador -->
<span class="hidden md:inline text-gray-400">|</span>
<span class="text-gray-500">
Web desarrollada por
<a href="#"
class="hover:text-lime-600 dark:hover:text-lime-400 underline-offset-2 hover:underline">
Gelaaas99
</a>
</span>
</div>
</div>
</div>
</footer>
<script src="./assets/js/script.js"></script>
<script src="assets/js/menu.js"></script>
</body>
</html>