Spaces:
Running
Running
File size: 31,072 Bytes
16573fc |
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>UATM/GASA FORMATION - Université d'Excellence</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>
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.bg-university {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('http://static.photos/education/1200x630/1');
background-size: cover;
background-position: center;
}
.transition-slow {
transition: all 0.5s ease;
}
</style>
</head>
<body class="font-sans text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-blue-900 text-white shadow-md z-50 transition-slow">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<img src="http://static.photos/education/200x200/1" alt="Logo UATM/GASA" class="h-12 mr-3 rounded-full">
<div>
<div class="text-xl font-bold">UATM/GASA</div>
<div class="text-xs">FORMATION</div>
</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#accueil" class="hover:text-blue-300 transition-slow">Accueil</a>
<a href="#formations" class="hover:text-blue-300 transition-slow">Formations</a>
<a href="#campus" class="hover:text-blue-300 transition-slow">Campus</a>
<a href="#admission" class="hover:text-blue-300 transition-slow">Admission</a>
<a href="#contact" class="hover:text-blue-300 transition-slow">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-white focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
<a href="#accueil" class="block py-2 hover:text-blue-300 transition-slow">Accueil</a>
<a href="#formations" class="block py-2 hover:text-blue-300 transition-slow">Formations</a>
<a href="#campus" class="block py-2 hover:text-blue-300 transition-slow">Campus</a>
<a href="#admission" class="block py-2 hover:text-blue-300 transition-slow">Admission</a>
<a href="#contact" class="block py-2 hover:text-blue-300 transition-slow">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="accueil" class="pt-32 pb-20 px-6 bg-university text-white">
<div class="container mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6 animate-fade-in">UATM/GASA FORMATION</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-8 animate-fade-in delay-1">L'Excellence Académique au Cœur de Votre Avenir</h2>
<div class="max-w-2xl mx-auto">
<p class="text-lg mb-8 animate-fade-in delay-2">Une institution engagée dans la formation des leaders de demain à travers des programmes innovants et un environnement d'apprentissage exceptionnel.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 animate-fade-in delay-3">
<a href="#admission" class="bg-white hover:bg-gray-100 text-blue-900 px-6 py-3 rounded-lg font-medium transition-slow">Postuler maintenant</a>
<a href="#formations" class="border-2 border-white hover:bg-blue-800 px-6 py-3 rounded-lg font-medium transition-slow">Nos formations</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 px-6 bg-white">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in">
<img src="http://static.photos/education/640x360/2" alt="Campus UATM/GASA" class="rounded-xl shadow-lg w-full">
</div>
<div class="md:w-1/2 md:pl-12 animate-fade-in delay-1">
<h2 class="text-3xl font-bold mb-6 text-blue-900">À propos de l'UATM/GASA</h2>
<p class="text-lg mb-6 text-gray-700 leading-relaxed">
Fondée sur les principes d'excellence, d'innovation et de leadership, l'UATM/GASA FORMATION s'est imposée comme une référence dans l'enseignement supérieur. Notre institution offre un environnement propice à l'épanouissement intellectuel et personnel.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="bg-blue-50 p-4 rounded-lg">
<div class="text-blue-900 text-2xl mb-2">
<i class="fas fa-graduation-cap"></i>
</div>
<h3 class="font-semibold">Programmes Innovants</h3>
<p class="text-sm text-gray-600">Formations adaptées aux besoins du marché</p>
</div>
<div class="bg-blue-50 p-4 rounded-lg">
<div class="text-blue-900 text-2xl mb-2">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<h3 class="font-semibold">Enseignants Experts</h3>
<p class="text-sm text-gray-600">Corps professoral qualifié</p>
</div>
<div class="bg-blue-50 p-4 rounded-lg">
<div class="text-blue-900 text-2xl mb-2">
<i class="fas fa-building"></i>
</div>
<h3 class="font-semibold">Infrastructures Modernes</h3>
<p class="text-sm text-gray-600">Campus équipé des dernières technologies</p>
</div>
<div class="bg-blue-50 p-4 rounded-lg">
<div class="text-blue-900 text-2xl mb-2">
<i class="fas fa-globe-africa"></i>
</div>
<h3 class="font-semibold">Ouverture Internationale</h3>
<p class="text-sm text-gray-600">Partenariats avec des institutions mondiales</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Programs Section -->
<section id="formations" class="py-16 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 text-blue-900">Nos Formations</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Program 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-slow animate-fade-in">
<div class="h-48 overflow-hidden">
<img src="http://static.photos/technology/640x360/1" alt="Informatique" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Licence en Informatique</h3>
<p class="text-gray-600 mb-4">Formation complète en développement logiciel, réseaux et systèmes d'information.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-blue-100 text-blue-900 px-3 py-1 rounded-full">3 ans</span>
<a href="#admission" class="text-blue-900 hover:text-blue-700 font-medium">En savoir plus →</a>
</div>
</div>
</div>
<!-- Program 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-slow animate-fade-in delay-1">
<div class="h-48 overflow-hidden">
<img src="http://static.photos/finance/640x360/1" alt="Gestion" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Master en Gestion</h3>
<p class="text-gray-600 mb-4">Programme d'excellence en management d'entreprise et administration.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-blue-100 text-blue-900 px-3 py-1 rounded-full">2 ans</span>
<a href="#admission" class="text-blue-900 hover:text-blue-700 font-medium">En savoir plus →</a>
</div>
</div>
</div>
<!-- Program 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-slow animate-fade-in delay-2">
<div class="h-48 overflow-hidden">
<img src="http://static.photos/engineering/640x360/1" alt="Ingénierie" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Ingénierie Industrielle</h3>
<p class="text-gray-600 mb-4">Formation technique et managériale pour les industries modernes.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-blue-100 text-blue-900 px-3 py-1 rounded-full">5 ans</span>
<a href="#admission" class="text-blue-900 hover:text-blue-700 font-medium">En savoir plus →</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-blue-900 hover:bg-blue-800 text-white px-8 py-3 rounded-lg transition-slow">
Voir toutes nos formations <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Campus Section -->
<section id="campus" class="py-16 px-6 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 text-blue-900">Notre Campus</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div class="animate-fade-in">
<div class="grid grid-cols-2 gap-4">
<div class="rounded-lg overflow-hidden">
<img src="http://static.photos/education/320x240/3" alt="Bibliothèque" class="w-full h-full object-cover">
</div>
<div class="rounded-lg overflow-hidden">
<img src="http://static.photos/education/320x240/4" alt="Amphithéâtre" class="w-full h-full object-cover">
</div>
<div class="rounded-lg overflow-hidden">
<img src="http://static.photos/education/320x240/5" alt="Laboratoire" class="w-full h-full object-cover">
</div>
<div class="rounded-lg overflow-hidden">
<img src="http://static.photos/education/320x240/6" alt="Espace détente" class="w-full h-full object-cover">
</div>
</div>
</div>
<div class="animate-fade-in delay-1">
<h3 class="text-2xl font-semibold mb-4 text-blue-900">Un Environnement d'Apprentissage Exceptionnel</h3>
<p class="text-lg mb-6 text-gray-700 leading-relaxed">
Notre campus moderne offre toutes les installations nécessaires pour un apprentissage optimal : salles de classe équipées, laboratoires high-tech, bibliothèque numérique, espaces de coworking et zones de détente.
</p>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-900 mr-2 mt-1"></i>
<span>Bibliothèque ouverte 24h/24 avec accès aux ressources numériques</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-900 mr-2 mt-1"></i>
<span>Laboratoires équipés des dernières technologies</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-900 mr-2 mt-1"></i>
<span>Réseau wifi haut débit sur tout le campus</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-900 mr-2 mt-1"></i>
<span>Restaurants universitaires et cafétérias</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Admission Section -->
<section id="admission" class="py-16 px-6 bg-blue-900 text-white">
<div class="container mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Procédure d'Admission</h2>
<p class="text-xl max-w-2xl mx-auto">Rejoignez notre communauté étudiante et démarquez-vous par l'excellence</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<div class="bg-blue-800 p-6 rounded-lg text-center animate-fade-in">
<div class="text-4xl mb-4">
<i class="fas fa-file-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">1. Dossier de Candidature</h3>
<p class="text-blue-200">Téléchargez et complétez le formulaire de candidature en ligne</p>
</div>
<div class="bg-blue-800 p-6 rounded-lg text-center animate-fade-in delay-1">
<div class="text-4xl mb-4">
<i class="fas fa-check-circle"></i>
</div>
<h3 class="text-xl font-semibold mb-2">2. Évaluation</h3>
<p class="text-blue-200">Notre équipe examine votre dossier sous 72 heures</p>
</div>
<div class="bg-blue-800 p-6 rounded-lg text-center animate-fade-in delay-2">
<div class="text-4xl mb-4">
<i class="fas fa-envelope-open-text"></i>
</div>
<h3 class="text-xl font-semibold mb-2">3. Réponse</h3>
<p class="text-blue-200">Vous recevez notre décision par email avec les étapes suivantes</p>
</div>
</div>
<div class="max-w-2xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden animate-fade-in delay-3">
<div class="bg-blue-800 p-6 text-white text-center">
<h3 class="text-xl font-semibold">Formulaire d'Adhésion</h3>
<p>Complétez ce formulaire pour initier votre processus d'admission</p>
</div>
<form class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="first-name" class="block text-gray-700 font-medium mb-2">Prénom</label>
<input type="text" id="first-name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</div>
<div>
<label for="last-name" class="block text-gray-700 font-medium mb-2">Nom</label>
<input type="text" id="last-name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</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-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</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-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</div>
<div class="md:col-span-2">
<label for="program" class="block text-gray-700 font-medium mb-2">Programme d'intérêt</label>
<select id="program" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
<option value="">Sélectionnez un programme</option>
<option value="informatique">Licence en Informatique</option>
<option value="gestion">Master en Gestion</option>
<option value="ingenierie">Ingénierie Industrielle</option>
<option value="droit">Licence en Droit</option>
<option value="communication">Master en Communication</option>
</select>
</div>
<div class="md:col-span-2">
<label for="message" class="block text-gray-700 font-medium mb-2">Message (optionnel)</label>
<textarea id="message" rows="3" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent"></textarea>
</div>
<div class="md:col-span-2 flex items-start">
<input type="checkbox" id="consent" class="mt-1 mr-2">
<label for="consent" class="text-gray-700">Je consens au traitement de mes données personnelles conformément à la politique de confidentialité</label>
</div>
</div>
<button type="submit" class="w-full bg-blue-900 hover:bg-blue-800 text-white py-3 px-6 rounded-lg mt-6 transition-slow">
Soumettre ma candidature
</button>
</form>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 text-blue-900">Contactez-nous</h2>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2 animate-fade-in">
<h3 class="text-2xl font-semibold mb-6 text-blue-900">Informations de Contact</h3>
<p class="text-lg mb-8 text-gray-700 leading-relaxed">
Vous avez des questions sur nos programmes, le processus d'admission ou souhaitez visiter notre campus? Notre équipe est disponible pour vous renseigner.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="mr-4 text-blue-900 text-xl">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold">Email</h4>
<p class="text-gray-600">info@uatm-gasa.com</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-blue-900 text-xl">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-semibold">Téléphone</h4>
<p class="text-gray-600">+33 1 23 45 67 89</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-blue-900 text-xl">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-semibold">Adresse</h4>
<p class="text-gray-600">123 Avenue des Universités, 75000 Paris, France</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-blue-900 text-xl">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-semibold">Heures d'Ouverture</h4>
<p class="text-gray-600">Lundi - Vendredi: 8h30 - 17h30</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 animate-fade-in delay-1">
<form class="bg-white p-8 rounded-xl shadow-md" action="mailto:info@uatm-gasa.com" method="post" enctype="text/plain">
<div class="mb-6">
<label for="contact-name" class="block text-gray-700 font-medium mb-2">Nom complet</label>
<input type="text" id="contact-name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" required>
</div>
<div class="mb-6">
<label for="contact-email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="contact-email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" required>
</div>
<div class="mb-6">
<label for="contact-subject" class="block text-gray-700 font-medium mb-2">Sujet</label>
<input type="text" id="contact-subject" name="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" required>
</div>
<div class="mb-6">
<label for="contact-message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="contact-message" name="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" required></textarea>
</div>
<button type="submit" class="w-full bg-blue-900 hover:bg-blue-800 text-white py-3 px-6 rounded-lg transition-slow">
Envoyer le message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-start">
<div class="mb-8 md:mb-0">
<div class="flex items-center mb-4">
<img src="http://static.photos/education/100x100/1" alt="Logo UATM/GASA" class="h-10 mr-3 rounded-full">
<div>
<div class="text-xl font-bold">UATM/GASA</div>
<div class="text-sm text-gray-400">FORMATION</div>
</div>
</div>
<p class="text-gray-400 max-w-xs">L'excellence académique au service de votre avenir professionnel.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">Navigation</h4>
<ul class="space-y-2">
<li><a href="#accueil" class="text-gray-400 hover:text-white transition-slow">Accueil</a></li>
<li><a href="#formations" class="text-gray-400 hover:text-white transition-slow">Formations</a></li>
<li><a href="#campus" class="text-gray-400 hover:text-white transition-slow">Campus</a></li>
<li><a href="#admission" class="text-gray-400 hover:text-white transition-slow">Admission</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition-slow">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Formations</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-slow">Licences</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-slow">Masters</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-slow">Formations continues</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-slow">Programmes internationaux</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Suivez-nous</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 UATM/GASA FORMATION. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').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
document.getElementById('mobile-menu').classList.add('hidden');
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 50) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
// Animation on scroll
const animateOnScroll = function() {
const elements = document.querySelectorAll('.animate-fade-in');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (elementPosition < screenPosition) {
element.classList.add('animate-fade-in');
}
});
};
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</script>
</body>
</html> |