File size: 33,366 Bytes
e535598 | 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 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AutoLuxe - Vente de voitures d'exception</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
height: 90vh;
}
.car-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.05);
}
.contact-form input, .contact-form textarea {
transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 1s ease-in;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Header/Navigation -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<i class="fas fa-car text-blue-600 text-3xl mr-2"></i>
<span class="text-xl font-bold text-gray-800">AutoLuxe</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#accueil" class="text-gray-800 hover:text-blue-600 font-medium">Accueil</a>
<a href="#vehicules" class="text-gray-800 hover:text-blue-600 font-medium">Véhicules</a>
<a href="#services" class="text-gray-800 hover:text-blue-600 font-medium">Services</a>
<a href="#about" class="text-gray-800 hover:text-blue-600 font-medium">À propos</a>
<a href="#contact" class="text-gray-800 hover:text-blue-600 font-medium">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-btn" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4">
<a href="#accueil" class="block py-2 text-gray-800 hover:text-blue-600">Accueil</a>
<a href="#vehicules" class="block py-2 text-gray-800 hover:text-blue-600">Véhicules</a>
<a href="#services" class="block py-2 text-gray-800 hover:text-blue-600">Services</a>
<a href="#about" class="block py-2 text-gray-800 hover:text-blue-600">À propos</a>
<a href="#contact" class="block py-2 text-gray-800 hover:text-blue-600">Contact</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="accueil" class="hero flex items-center justify-center text-white fade-in">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Votre concessionnaire de confiance</h1>
<p class="text-xl md:text-2xl mb-8">Découvrez notre sélection exclusive de véhicules d'exception</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#vehicules" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-medium transition duration-300">Voir nos véhicules</a>
<a href="#contact" class="bg-transparent hover:bg-white hover:text-gray-900 border-2 border-white text-white px-8 py-3 rounded-lg font-medium transition duration-300">Nous contacter</a>
</div>
</div>
</section>
<!-- Featured Cars -->
<section id="vehicules" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Nos véhicules phares</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Découvrez notre sélection de véhicules premium soigneusement sélectionnés pour leur qualité et leur performance.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Car 1 -->
<div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Porsche 911" class="w-full h-64 object-cover">
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-medium">Nouveau</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Porsche 911 Turbo S</h3>
<span class="text-blue-600 font-bold">€185,000</span>
</div>
<div class="flex items-center text-gray-600 mb-4">
<i class="fas fa-tachometer-alt mr-2"></i>
<span class="mr-4">12,500 km</span>
<i class="fas fa-calendar-alt mr-2"></i>
<span>2022</span>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">650ch</span>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button>
</div>
</div>
<!-- Car 2 -->
<div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1493238792000-811adca7d5e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Range Rover" class="w-full h-64 object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Range Rover Autobiography</h3>
<span class="text-blue-600 font-bold">€135,000</span>
</div>
<div class="flex items-center text-gray-600 mb-4">
<i class="fas fa-tachometer-alt mr-2"></i>
<span class="mr-4">25,300 km</span>
<i class="fas fa-calendar-alt mr-2"></i>
<span>2021</span>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">525ch</span>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button>
</div>
</div>
<!-- Car 3 -->
<div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1616788494707-18628cdf4253?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mercedes-Benz" class="w-full h-64 object-cover">
<div class="absolute top-4 right-4 bg-red-500 text-white px-3 py-1 rounded-full text-sm font-medium">Promo</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Mercedes-Benz S 580</h3>
<span class="text-blue-600 font-bold">€120,000</span>
</div>
<div class="flex items-center text-gray-600 mb-4">
<i class="fas fa-tachometer-alt mr-2"></i>
<span class="mr-4">18,700 km</span>
<i class="fas fa-calendar-alt mr-2"></i>
<span>2022</span>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span>
<span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">503ch</span>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-gray-200 hover:bg-gray-300 text-gray-800 px-8 py-3 rounded-lg font-medium transition duration-300">Voir tous nos véhicules</a>
</div>
</div>
</section>
<!-- Services -->
<section id="services" class="py-16 bg-gray-100">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Nos services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Nous offrons une gamme complète de services pour répondre à tous vos besoins automobiles.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300">
<div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-car text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Vente de véhicules</h3>
<p class="text-gray-600">Large sélection de véhicules neufs et d'occasion, soigneusement inspectés et garantis.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300">
<div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-search-dollar text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Reprise & Échange</h3>
<p class="text-gray-600">Estimation gratuite et reprise de votre ancien véhicule au meilleur prix.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300">
<div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-tools text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Entretien & Réparation</h3>
<p class="text-gray-600">Atelier équipé des dernières technologies pour l'entretien et la réparation de votre véhicule.</p>
</div>
</div>
</div>
</section>
<!-- About Us -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<img src="https://images.unsplash.com/photo-1600880292203-75704362ea02?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Notre concession" class="rounded-lg shadow-lg w-full">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl font-bold text-gray-800 mb-6">À propos d'AutoLuxe</h2>
<p class="text-gray-600 mb-4">Fondée en 2005, AutoLuxe s'est rapidement imposée comme une référence dans la vente de véhicules haut de gamme. Notre passion pour l'automobile et notre engagement envers l'excellence nous ont permis de bâtir une réputation solide auprès d'une clientèle exigeante.</p>
<p class="text-gray-600 mb-6">Nous sélectionnons avec soin chaque véhicule de notre stock pour vous garantir qualité, performance et fiabilité. Notre équipe d'experts est à votre disposition pour vous conseiller et vous accompagner dans votre projet automobile.</p>
<div class="grid grid-cols-2 gap-4 mb-8">
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700">15 ans d'expérience</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700">+500 véhicules vendus</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700">98% de clients satisfaits</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700">Garantie 12 mois</span>
</div>
</div>
<a href="#contact" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Rencontrer notre équipe</a>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Témoignages</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Ce que nos clients disent de nous</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"J'ai acheté ma Porsche chez AutoLuxe et je suis extrêmement satisfait. Le service est impeccable et le véhicule était en parfait état."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Pierre Martin</h4>
<p class="text-gray-600 text-sm">Client depuis 2021</p>
</div>
</div>
</div>
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"Professionnalisme et expertise sont les maîtres mots chez AutoLuxe. Ils ont su me conseiller parfaitement pour mon achat."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Sophie Dubois</h4>
<p class="text-gray-600 text-sm">Client depuis 2020</p>
</div>
</div>
</div>
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"Excellent rapport qualité-prix. Le suivi après-vente est remarquable. Je recommande vivement AutoLuxe pour tout achat automobile."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Jean Lefèvre</h4>
<p class="text-gray-600 text-sm">Client depuis 2019</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Contactez-nous</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Nous sommes à votre disposition pour répondre à toutes vos questions.</p>
</div>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2">
<form class="contact-form space-y-6">
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Nom complet</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500">
</div>
<div>
<label for="phone" class="block text-gray-700 font-medium mb-2">Téléphone</label>
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500">
</div>
<div>
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 rounded-lg font-medium transition duration-300">Envoyer le message</button>
</form>
</div>
<div class="lg:w-1/2">
<div class="bg-gray-100 p-8 rounded-lg h-full">
<h3 class="text-xl font-bold text-gray-800 mb-6">Nos coordonnées</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Adresse</h4>
<p class="text-gray-600">123 Avenue des Champs-Élysées, 75008 Paris</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Téléphone</h4>
<p class="text-gray-600">+33 1 23 45 67 89</p>
<p class="text-gray-600">+33 6 12 34 56 78</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email</h4>
<p class="text-gray-600">contact@autoluxe.com</p>
<p class="text-gray-600">ventes@autoluxe.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Horaires</h4>
<p class="text-gray-600">Lundi - Vendredi: 9h - 19h</p>
<p class="text-gray-600">Samedi: 10h - 18h</p>
<p class="text-gray-600">Dimanche: Fermé</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-6">Abonnez-vous à notre newsletter</h2>
<p class="max-w-2xl mx-auto mb-8">Recevez en exclusivité nos offres spéciales et les nouveautés de notre stock.</p>
<form class="max-w-md mx-auto flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Votre email" class="flex-grow px-4 py-3 rounded-lg focus:outline-none text-gray-800">
<button type="submit" class="bg-white hover:bg-gray-100 text-blue-600 px-6 py-3 rounded-lg font-medium transition duration-300">S'abonner</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-car text-blue-400 text-2xl mr-2"></i>
<span class="text-xl font-bold">AutoLuxe</span>
</div>
<p class="text-gray-400 mb-4">Leader dans la vente de véhicules haut de gamme depuis 2005.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Liens rapides</h3>
<ul class="space-y-2">
<li><a href="#accueil" class="text-gray-400 hover:text-white">Accueil</a></li>
<li><a href="#vehicules" class="text-gray-400 hover:text-white">Véhicules</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">À propos</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Vente de véhicules</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Reprise & Échange</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Financement</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Entretien & Réparation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pièces détachées</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contact</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mr-2 mt-1"></i>
<span>123 Avenue des Champs-Élysées, 75008 Paris</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-2"></i>
<span>+33 1 23 45 67 89</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-2"></i>
<span>contact@autoluxe.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 AutoLuxe. Tous droits réservés.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Mentions légales</a>
<a href="#" class="text-gray-400 hover:text-white">Politique de confidentialité</a>
<a href="#" class="text-gray-400 hover:text-white">Conditions générales</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!document.getElementById('mobile-menu').classList.contains('hidden')) {
document.getElementById('mobile-menu').classList.add('hidden');
}
});
});
// Form submission
document.querySelector('.contact-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Merci pour votre message! Nous vous contacterons bientôt.');
this.reset();
});
// Newsletter form submission
document.querySelector('section.bg-blue-600 form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Merci pour votre inscription à notre newsletter!');
this.reset();
});
// Add fade-in animation when scrolling
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInOnScroll = () => {
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementTop < windowHeight - 100) {
element.style.opacity = '1';
}
});
};
// Set initial state
fadeElements.forEach(element => {
element.style.opacity = '0';
});
// Add scroll event listener
window.addEventListener('scroll', fadeInOnScroll);
// Trigger once on page load
window.addEventListener('load', fadeInOnScroll);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=KimJaver/ecars" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |