File size: 31,541 Bytes
8ab319c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31b879e
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
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Site de la Nouvelle-France | Tourisme Saguenay-Lac-Saint-Jean</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('http://static.photos/history/1200x630/42');
            background-size: cover;
            background-position: center;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .transition-slow {
            transition: all 0.5s ease;
        }
    </style>
</head>
<body class="font-sans bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-md">
        <div class="container mx-auto px-4 py-3 flex justify-between items-center">
            <div class="flex items-center space-x-4">
                <a href="#" class="text-2xl font-bold text-blue-800">Saguenay-Lac-Saint-Jean</a>
            </div>
            <div class="hidden md:flex space-x-6">
                <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Quoi faire</a>
                <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Où manger</a>
                <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Où dormir</a>
                <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Découvrir</a>
            </div>
            <div class="flex items-center space-x-4">
                <button class="md:hidden">
                    <i data-feather="menu"></i>
                </button>
                <a href="#" class="hidden md:block bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-slow">EN</a>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-bg text-white py-20 md:py-32">
        <div class="container mx-auto px-4 text-center">
            <h1 class="text-4xl md:text-6xl font-bold mb-6" data-aos="fade-up">Site de la Nouvelle-France</h1>
            <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">
                Plongez dans la vie quotidienne de la colonie de Québec du XVIIe siècle
            </p>
            <div class="flex flex-col sm:flex-row justify-center gap-4" data-aos="fade-up" data-aos-delay="200">
                <a href="#activities" class="bg-white text-blue-800 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition-slow">
                    Découvrir les activités
                </a>
                <a href="#reservation" class="bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition-slow">
                    Réserver maintenant
                </a>
            </div>
        </div>
    </section>

    <!-- Breadcrumbs -->
    <div class="bg-gray-100 py-4">
        <div class="container mx-auto px-4">
            <nav class="flex" aria-label="Breadcrumb">
                <ol class="inline-flex items-center space-x-1 md:space-x-3">
                    <li class="inline-flex items-center">
                        <a href="#" class="text-blue-600 hover:text-blue-800">Accueil</a>
                    </li>
                    <li>
                        <div class="flex items-center">
                            <i data-feather="chevron-right" class="w-4 h-4 text-gray-400"></i>
                            <a href="#" class="ml-1 text-blue-600 hover:text-blue-800 md:ml-2">Quoi faire</a>
                        </div>
                    </li>
                    <li aria-current="page">
                        <div class="flex items-center">
                            <i data-feather="chevron-right" class="w-4 h-4 text-gray-400"></i>
                            <span class="ml-1 text-gray-500 md:ml-2">Site de la Nouvelle-France</span>
                        </div>
                    </li>
                </ol>
            </nav>
        </div>
    </div>

    <!-- Main Content -->
    <main class="container mx-auto px-4 py-12">
        <div class="flex flex-col lg:flex-row gap-12">
            <!-- Left Column -->
            <div class="lg:w-2/3">
                <!-- Gallery -->
                <div class="mb-12" data-aos="fade-up">
                    <div class="relative rounded-xl overflow-hidden bg-gray-200 h-96">
                        <img src="http://static.photos/history/1200x630/42" alt="Site de la Nouvelle-France" class="w-full h-full object-cover">
                        <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
                            <div class="flex justify-between items-center text-white">
                                <span>1/15</span>
                                <div class="flex space-x-2">
                                    <button class="p-2 bg-black bg-opacity-50 rounded-full">
                                        <i data-feather="chevron-left"></i>
                                    </button>
                                    <button class="p-2 bg-black bg-opacity-50 rounded-full">
                                        <i data-feather="chevron-right"></i>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Description -->
                <section class="mb-12" data-aos="fade-up">
                    <h2 class="text-3xl font-bold mb-6 text-gray-800">Description</h2>
                    <div class="prose max-w-none text-gray-700">
                        <p class="mb-4">
                            Le Site de la Nouvelle-France offre aux visiteurs une expérience unique de plonger dans la vie quotidienne de la colonie de Québec du XVIIe siècle. Le site présente une reconstitution authentique de la vie en Haute-Ville et Basse-Ville avec sa chapelle et son église, son Fort Saint-Louis, son auberge, ses maisons et son bord de l'eau.
                        </p>
                        <p class="mb-4">
                            Treize nouveaux bâtiments d'époque créés à l'origine pour la série télévisée Barskins ont été ajoutés en 2024 rehaussant l'authenticité. Notre tyrolienne à aventure douce à virage de plus d'un kilomètre serpentant à travers la forêt et avec une vue spectaculaire sur le Fjord-du-Saguenay vous offre des sensations uniques en toute sécurité. Plaisirs garantis !
                        </p>
                        <p class="mb-4">
                            Le Site de la Nouvelle-France est né à la suite de tournages d'un film international (Robe Noire, 1990) et d'une télésérie du Québec (Shehaweh, 1992), le Site de la Nouvelle-France a également servi au tournage des scènes extérieures d'hiver du documentaire Le rêve de Champlain.
                        </p>
                        <button class="text-blue-600 font-medium hover:text-blue-800 flex items-center">
                            Voir plus <i data-feather="chevron-down" class="ml-1 w-5 h-5"></i>
                        </button>
                    </div>
                </section>

                <!-- Activities -->
                <section id="activities" class="mb-12" data-aos="fade-up">
                    <h2 class="text-3xl font-bold mb-6 text-gray-800">Activités</h2>
                    
                    <!-- Activity Tabs -->
                    <div class="mb-6">
                        <div class="flex overflow-x-auto pb-2">
                            <button class="px-4 py-2 font-medium text-blue-600 border-b-2 border-blue-600 whitespace-nowrap">
                                Musées et centres d'interprétation
                            </button>
                            <button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600 whitespace-nowrap">
                                Tourisme scientifique
                            </button>
                            <button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600 whitespace-nowrap">
                                Randonnée pédestre
                            </button>
                            <button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600 whitespace-nowrap">
                                Tyroliennes
                            </button>
                        </div>
                    </div>
                    
                    <!-- Activity Content -->
                    <div class="bg-white rounded-xl shadow-md p-6">
                        <h3 class="text-2xl font-bold mb-4 text-gray-800">Musées, Économusées et centres d'interprétation</h3>
                        <div class="prose max-w-none text-gray-700 mb-6">
                            <p class="mb-4">
                                Des rencontres amusantes avec des personnages costumés et colorés et une visite dans la maison longue huronne ajoutent à l'expérience culturelle unique et mémorable.
                            </p>
                            <p class="mb-4">
                                Utilisez notre sentier pédestre (ou empruntez notre navette) pour vous déplacer entre les plateaux d'animation ou admirez la vue sur le Saguenay et son fjord. Laissez-vous charmer par une visite expérientielle mémorable avec nos guides et nos personnages !
                            </p>
                        </div>
                        
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
                            <div>
                                <h4 class="font-bold text-gray-800 mb-2">Services</h4>
                                <div class="flex flex-wrap gap-2">
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Accès handicapé</span>
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Boutique</span>
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Restaurant</span>
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Wi-Fi</span>
                                </div>
                            </div>
                            
                            <div>
                                <h4 class="font-bold text-gray-800 mb-2">À qui s'adresse cette activité?</h4>
                                <div class="flex flex-wrap gap-2">
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Tous</span>
                                    <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Famille</span>
                                </div>
                            </div>
                        </div>
                        
                        <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
                            <div>
                                <h4 class="font-bold text-gray-800 mb-2">Avis Google</h4>
                                <div class="flex items-center">
                                    <div class="flex text-yellow-400 mr-2">
                                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                                        <i data-feather="star" class="w-5 h-5 fill-current"></i>
                                        <i data-feather="star" class="w-5 h-5 fill-current text-gray-300"></i>
                                    </div>
                                    <span class="text-gray-700">4.3</span>
                                </div>
                                <a href="#" class="text-blue-600 text-sm hover:underline">Voir les avis</a>
                            </div>
                            
                            <div>
                                <h4 class="font-bold text-gray-800 mb-2">Tarifs</h4>
                                <a href="#" class="text-blue-600 hover:underline block">Consultez les tarifs</a>
                                <a href="#" class="text-blue-600 hover:underline block">Réservez maintenant</a>
                            </div>
                            
                            <div>
                                <h4 class="font-bold text-gray-800 mb-2">Méthodes de paiement</h4>
                                <div class="flex space-x-2">
                                    <i data-feather="credit-card" class="w-6 h-6 text-gray-600"></i>
                                    <i data-feather="dollar-sign" class="w-6 h-6 text-gray-600"></i>
                                </div>
                            </div>
                        </div>
                        
                        <div>
                            <h4 class="font-bold text-gray-800 mb-2">Horaire</h4>
                            <p class="text-gray-700 mb-2">Billetterie en ligne disponible au www.sitenouvellefrance.com</p>
                            <a href="#" class="text-blue-600 hover:underline">Voir l'horaire complet</a>
                        </div>
                    </div>
                </section>

                <!-- Nearby -->
                <section class="mb-12" data-aos="fade-up">
                    <h2 class="text-3xl font-bold mb-6 text-gray-800">À proximité</h2>
                    <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
                        <!-- Nearby Item 1 -->
                        <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-slow">
                            <div class="h-48 bg-gray-200 overflow-hidden">
                                <img src="http://static.photos/nature/600x400/1" alt="Camping municipal" class="w-full h-full object-cover">
                            </div>
                            <div class="p-6">
                                <h3 class="text-xl font-bold mb-2 text-gray-800">Camping municipal de Saint-Félix-d'Otis</h3>
                                <div class="flex items-center text-gray-600 mb-4">
                                    <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
                                    <span>Saint-Félix-d'Otis</span>
                                </div>
                                <a href="#" class="text-blue-600 hover:underline font-medium">Voir détails</a>
                            </div>
                        </div>
                        
                        <!-- Nearby Item 2 -->
                        <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-slow">
                            <div class="h-48 bg-gray-200 overflow-hidden">
                                <img src="http://static.photos/nature/600x400/2" alt="Auberge le Perchoir" class="w-full h-full object-cover">
                            </div>
                            <div class="p-6">
                                <h3 class="text-xl font-bold mb-2 text-gray-800">Auberge le Perchoir</h3>
                                <div class="flex items-center text-gray-600 mb-4">
                                    <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
                                    <span>Saint-Félix-d'Otis</span>
                                </div>
                                <a href="#" class="text-blue-600 hover:underline font-medium">Voir détails</a>
                            </div>
                        </div>
                        
                        <!-- Nearby Item 3 -->
                        <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-slow">
                            <div class="h-48 bg-gray-200 overflow-hidden">
                                <img src="http://static.photos/nature/600x400/3" alt="Nomade Quad" class="w-full h-full object-cover">
                            </div>
                            <div class="p-6">
                                <h3 class="text-xl font-bold mb-2 text-gray-800">Nomade Quad</h3>
                                <div class="flex items-center text-gray-600 mb-4">
                                    <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
                                    <span>Saguenay (La Baie bor.)</span>
                                </div>
                                <a href="#" class="text-blue-600 hover:underline font-medium">Voir détails</a>
                            </div>
                        </div>
                    </div>
                    <div class="mt-6 text-center">
                        <a href="#" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-medium">
                            Voir plus d'options à proximité
                            <i data-feather="chevron-right" class="ml-1 w-5 h-5"></i>
                        </a>
                    </div>
                </section>
            </div>

            <!-- Right Column -->
            <div class="lg:w-1/3">
                <!-- Reservation Card -->
                <div class="bg-white rounded-xl shadow-md p-6 mb-8 sticky top-4" data-aos="fade-left">
                    <h3 class="text-2xl font-bold mb-4 text-gray-800">Réservez votre visite</h3>
                    <div class="mb-6">
                        <div class="flex items-center text-yellow-400 mb-1">
                            <i data-feather="star" class="w-5 h-5 fill-current"></i>
                            <i data-feather="star" class="w-5 h-5 fill-current"></i>
                            <i data-feather="star" class="w-5 h-5 fill-current"></i>
                            <i data-feather="star" class="w-5 h-5 fill-current"></i>
                            <i data-feather="star" class="w-5 h-5 fill-current text-gray-300"></i>
                            <span class="text-gray-700 ml-2">4.3 (142 avis)</span>
                        </div>
                        <div class="flex items-center text-gray-600">
                            <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
                            <span>370 Vieux Chemin, Saint-Félix-d'Otis</span>
                        </div>
                    </div>
                    
                    <div class="space-y-4 mb-6">
                        <div>
                            <label class="block text-gray-700 font-medium mb-1">Date</label>
                            <div class="relative">
                                <input type="date" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                                <i data-feather="calendar" class="absolute right-3 top-2.5 text-gray-400"></i>
                            </div>
                        </div>
                        
                        <div>
                            <label class="block text-gray-700 font-medium mb-1">Nombre de personnes</label>
                            <select class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                                <option>1 personne</option>
                                <option>2 personnes</option>
                                <option>3 personnes</option>
                                <option>4 personnes</option>
                                <option>5+ personnes</option>
                            </select>
                        </div>
                    </div>
                    
                    <div class="mb-6">
                        <h4 class="font-bold text-gray-800 mb-2">Options disponibles</h4>
                        <div class="space-y-2">
                            <label class="flex items-center">
                                <input type="radio" name="option" class="mr-2" checked>
                                <span>Visite guidée complète</span>
                                <span class="ml-auto font-medium">$25/pers</span>
                            </label>
                            <label class="flex items-center">
                                <input type="radio" name="option" class="mr-2">
                                <span>Tyrolienne + visite</span>
                                <span class="ml-auto font-medium">$45/pers</span>
                            </label>
                            <label class="flex items-center">
                                <input type="radio" name="option" class="mr-2">
                                <span>Forfait famille (2 adultes + 2 enfants)</span>
                                <span class="ml-auto font-medium">$75</span>
                            </label>
                        </div>
                    </div>
                    
                    <button id="reservation" class="w-full bg-blue-600 text-white py-3 rounded-lg font-medium hover:bg-blue-700 transition-slow flex items-center justify-center">
                        <i data-feather="shopping-cart" class="mr-2 w-5 h-5"></i>
                        Réserver maintenant
                    </button>
                    
                    <div class="mt-4 text-center">
                        <a href="#" class="text-blue-600 hover:underline text-sm">Voir tous les tarifs</a>
                    </div>
                </div>
                
                <!-- Contact Card -->
                <div class="bg-white rounded-xl shadow-md p-6 mb-8" data-aos="fade-left" data-aos-delay="100">
                    <h3 class="text-2xl font-bold mb-4 text-gray-800">Coordonnées</h3>
                    <div class="space-y-4">
                        <div class="flex items-start">
                            <i data-feather="map-pin" class="w-5 h-5 text-blue-600 mt-1 mr-3"></i>
                            <div>
                                <p class="font-medium text-gray-800">Adresse</p>
                                <p class="text-gray-600">370 Vieux Chemin, Saint-Félix-d'Otis, Québec, G0V 1M0</p>
                                <a href="#" class="text-blue-600 hover:underline text-sm">Voir sur la carte</a>
                            </div>
                        </div>
                        
                        <div class="flex items-center">
                            <i data-feather="phone" class="w-5 h-5 text-blue-600 mr-3"></i>
                            <div>
                                <p class="font-medium text-gray-800">Téléphone</p>
                                <a href="tel:4185448027" class="text-gray-600 hover:text-blue-600">418 544-8027</a>
                            </div>
                        </div>
                        
                        <div class="flex items-center">
                            <i data-feather="globe" class="w-5 h-5 text-blue-600 mr-3"></i>
                            <div>
                                <p class="font-medium text-gray-800">Site Web</p>
                                <a href="http://www.sitenouvellefrance.com" class="text-blue-600 hover:underline">www.sitenouvellefrance.com</a>
                            </div>
                        </div>
                        
                        <div class="flex items-center">
                            <i data-feather="mail" class="w-5 h-5 text-blue-600 mr-3"></i>
                            <div>
                                <p class="font-medium text-gray-800">Courriel</p>
                                <a href="mailto:info@sitenouvellefrance.com" class="text-blue-600 hover:underline">info@sitenouvellefrance.com</a>
                            </div>
                        </div>
                    </div>
                    
                    <div class="mt-6 pt-6 border-t border-gray-200">
                        <h4 class="font-bold text-gray-800 mb-3">Retrouvez-nous sur</h4>
                        <div class="flex space-x-4">
                            <a href="#" class="w-10 h-10 bg-blue-600 text-white rounded-full flex items-center justify-center hover:bg-blue-700 transition-slow">
                                <i data-feather="facebook" class="w-5 h-5"></i>
                            </a>
                            <a href="#" class="w-10 h-10 bg-pink-600 text-white rounded-full flex items-center justify-center hover:bg-pink-700 transition-slow">
                                <i data-feather="instagram" class="w-5 h-5"></i>
                            </a>
                        </div>
                    </div>
                </div>
                
                <!-- Map -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden" data-aos="fade-left" data-aos-delay="200">
                    <div class="h-64 bg-gray-200 relative">
                        <!-- Map placeholder - would be replaced with actual map integration -->
                        <div class="absolute inset-0 flex items-center justify-center">
                            <i data-feather="map" class="w-16 h-16 text-gray-400"></i>
                        </div>
                    </div>
                    <div class="p-4">
                        <h4 class="font-bold text-gray-800 mb-2">Localisation</h4>
                        <p class="text-gray-600 mb-4">370 Vieux Chemin, Saint-Félix-d'Otis</p>
                        <a href="#" class="text-blue-600 hover:underline">Voir en grand</a>
                    </div>
                </div>
            </div>
        </div>
    </main>

    <!-- Newsletter -->
    <section class="bg-blue-800 text-white py-16">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6" data-aos="fade-up">Envie de garder contact?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">
                Abonnez-vous à notre infolettre pour recevoir les dernières nouvelles et offres spéciales.
            </p>
            <form class="max-w-md mx-auto" data-aos="fade-up" data-aos-delay="200">
                <div class="flex flex-col sm:flex-row gap-2">
                    <input type="email" placeholder="Votre adresse courriel" class="flex-grow px-4 py-3 rounded-lg text-gray-800 focus:outline-none focus:ring-2 focus:ring-blue-500">
                    <button type="submit" class="bg-white text-blue-800 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition-slow whitespace-nowrap">
                        Je m'abonne
                    </button>
                </div>
            </form>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white pt-16 pb-8">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
                <div>
                    <img src="https://via.placeholder.com/200x60?text=Logo+Saguenay" alt="Tourisme Saguenay-Lac-Saint-Jean" class="mb-6">
                    <p class="mb-4">1-877-BLEUETS (253-8387)</p>
                    <p class="mb-4">
                        <a href="mailto:info@tourismesaglac.net" class="text-blue-400 hover:underline">info@tourismesaglac.net</a>
                    </p>
                    <a href="#" class="text-blue-400 hover:underline">Nous joindre</a>
                </div>
                
                <div>
                    <h3 class="text-xl font-bold mb-6">Liens Utiles</h3>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-300 hover:text-white">Blogue</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">À propos</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Trucs et astuces</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Nouveautés</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Calculateur GES</a></li>
                    </ul>
                </div>
                
                <div>
                    <h3 class="text-xl font-bold mb-6">Infos Pratiques</h3>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-300 hover:text-white">Cartes et brochures</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Bureaux d'informations</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Ma région Acoeur</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Accès à la région</a></li>
                    </ul>
                </div>
                
                <div>
                    <h3 class="text-xl font-bold mb-6">Services</h3>
                    <ul class="space-y-3">
                        <li><a href="#" class="text-gray-300 hover:text-white">Professionnels du voyage</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Médias</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Service aux membres</a></li>
                    </ul>
                    
                    <div class="mt-8">
                        <h4 class="font-bold mb-4">Suivez-nous</h4>
                        <div class="flex space-x-4">
                            <a href="#" class="text-gray-300 hover:text-white">
                                <i data-feather="facebook" class="w-6 h-6"></i>
                            </a>
                            <a href="#" class="text-gray-300 hover:text-white">
                                <i data-feather="instagram" class="w-6 h-6"></i>
                            </a>
                            <a href="#" class="text-gray-300 hover:text-white">
                                <i data-feather="youtube" class="w-6 h-6"></i>
                            </a>
                        </div>
                    </div>
                </div>
            </div>
            
            <div class="pt-8 border-t border-gray-800 text-center text-gray-400 text-sm">
                <p>©2025 Tourisme Saguenay-Lac-Saint-Jean · <a href="#" class="hover:text-white hover:underline">Politique de confidentialité</a> · Gestion des témoins de navigation</p>
                <p class="mt-2">Site conçu, développé et hébergé par <a href="#" class="text-blue-400 hover:underline">Libéo</a></p>
            </div>
        </div>
    </footer>

    <script>
        AOS.init({
            duration: 800,
            once: true
        });
        feather.replace();
    </script>
</body>
</html>