| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
| |
| <script> |
| window.addEventListener('scroll', () => { |
| const navbar = document.querySelector('.navbar'); |
| if (window.scrollY > 50) { |
| navbar.classList.add('bg-white/80', 'shadow-md'); |
| } else { |
| navbar.classList.remove('bg-white/80', 'shadow-md'); |
| } |
| }); |
| </script> |
| |
| <style> |
| body { |
| font-family: 'Poppins', sans-serif; |
| } |
| |
| .main-bg { |
| background: linear-gradient(to bottom, #fcf1db 0%, #fffaf3 100%); |
| position: relative; |
| } |
| |
| .navbar { |
| backdrop-filter: blur(12px); |
| background-color: rgba(255, 255, 255, 0.7); |
| color: #fcf1db; |
| |
| padding: 1rem 1.5rem; |
| position: fixed; |
| top: 0; |
| left: 0; |
| right: 0; |
| z-index: 50; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| |
| .nav-link { |
| position: relative; |
| text-decoration: none; |
| color: #608b4d; |
| font-weight: 500; |
| margin-left: 2rem; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: #c40a0a; |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| |
| .nav-link.active::after { |
| width: 100%; |
| } |
| |
| .clip-path-diagonal { |
| clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); |
| } |
| |
| @keyframes slide-in { |
| from { opacity: 0; transform: translateY(20px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| .animate-slide-in { |
| animation: slide-in 0.8s ease-out forwards; |
| } |
| </style> |
| </head> |
| <body> |
| |
| |
| <nav class="navbar"> |
| <a href="#home" class="flex items-center space-x-2 font-bold text-xl" style="text-decoration: none;"> |
| <img src="logo.png" alt="Logo" class="h-12 w-12 object-contain"> |
| <span style="color: #608b4d;">Roam-eo & </span><span style="color: #0c265b;">Juli-jet</span> |
| </a> |
| <div class="flex space-x-8"> |
| <a href="#" class="nav-link active" onclick="showPage('home')">Home</a> |
| <a href="chatbot.html" class="nav-link" style="color: #0c265b;">Trip Planner</a> |
| </div> |
| </nav> |
| |
| <div id="home"> |
| <section class="main-bg min-h-screen flex items-center justify-center text-center relative overflow-hidden"> |
| <div class="absolute top-0 left-0 w-full h-full z-0 bg-[#fcf1db] clip-path-diagonal"></div> |
| |
| <div class="px-4 max-w-4xl mx-auto z-10 relative"> |
| <h1 class="text-5xl md:text-6xl font-bold mb-6 text-[#0c265b] animate-slide-in"> |
| Roam-eo & <span style="color: #608b4d;">Juli-jet</span> |
| </h1> |
| <p class="text-xl md:text-2xl mb-8 text-[#333]"> |
| <span class="font-semibold" style="color: #C40A0A;">Love </span> at first flight! |
| </p> |
| <a href="chatbot.html" class="bg-[#0c265b] hover:bg-[#608b4d] text-white font-bold py-3 px-8 rounded-full transition duration-300 inline-block"> |
| Plan Out Your Trip |
| </a> |
| </div> |
| |
| </section> |
| </div> |
| </body> |
| <footer style="background-color: #0c265b;" class="text-white py-12 px-4"> |
| <div class="max-w-7xl mx-auto text-center"> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div> |
| <h3 class="text-xl font-bold mb-1">Roam-eo & Juli-jet</h3> |
| <p class="text-base italic text-gray-300 -mt-1">Love at first sight</p> |
| </div> |
| <div> |
| <h4 class="font-bold mb-4">Quick Links</h4> |
| <ul class="space-y-2"> |
| <li><a href="index.html" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
| <li><a href="chatbot.html" class="text-gray-400 hover:text-white transition duration-300">Trip Planner</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-bold mb-4">Our Mission</h4> |
| <p class="text-gray-400">Allowing you to travel anywhere without a worry.</p> |
| </div> |
| </div> |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"> |
| <p>© 2025 Roam-eo & Juli-jet. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
| </html> |