air / index.html
cdgv's picture
undefined - Initial Deployment
609cdaa verified
Raw
History Blame Contribute Delete
40.9 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voyage | Discover Your Journey</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>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
}
.heading-font {
font-family: 'Playfair Display', serif;
}
.hero-gradient {
background: linear-gradient(135deg, rgba(5, 150, 105, 0.9) 0%, rgba(16, 185, 129, 0.8) 100%);
}
.destination-card {
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.destination-card:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.gradient-text {
background: linear-gradient(90deg, #059669 0%, #10B981 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.parallax-bg {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.shape-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}
.shape-divider svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 100px;
}
.shape-divider .shape-fill {
fill: #FFFFFF;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white/90 backdrop-blur-md shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-compass text-emerald-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900 heading-font">Voyage</span>
</div>
</div>
<div class="hidden lg:flex items-center space-x-10">
<a href="#" class="text-gray-700 hover:text-emerald-600 px-3 py-2 text-sm font-medium transition-colors">Home</a>
<a href="#" class="text-gray-700 hover:text-emerald-600 px-3 py-2 text-sm font-medium transition-colors">Destinations</a>
<a href="#" class="text-gray-700 hover:text-emerald-600 px-3 py-2 text-sm font-medium transition-colors">Tours</a>
<a href="#" class="text-gray-700 hover:text-emerald-600 px-3 py-2 text-sm font-medium transition-colors">About</a>
<a href="#" class="text-gray-700 hover:text-emerald-600 px-3 py-2 text-sm font-medium transition-colors">Blog</a>
</div>
<div class="hidden lg:flex items-center">
<button class="bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white px-6 py-2 rounded-full text-sm font-medium shadow-md transition-all">
Book Now
</button>
</div>
<div class="lg:hidden flex items-center">
<button id="mobile-menu-button" class="text-gray-700 hover:text-emerald-600 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden lg:hidden bg-white/95 backdrop-blur-md pb-4 px-4">
<a href="#" class="block px-3 py-3 text-sm font-medium text-gray-700 hover:text-emerald-600 border-b border-gray-100">Home</a>
<a href="#" class="block px-3 py-3 text-sm font-medium text-gray-700 hover:text-emerald-600 border-b border-gray-100">Destinations</a>
<a href="#" class="block px-3 py-3 text-sm font-medium text-gray-700 hover:text-emerald-600 border-b border-gray-100">Tours</a>
<a href="#" class="block px-3 py-3 text-sm font-medium text-gray-700 hover:text-emerald-600 border-b border-gray-100">About</a>
<a href="#" class="block px-3 py-3 text-sm font-medium text-gray-700 hover:text-emerald-600">Blog</a>
<button class="mt-4 w-full bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white px-6 py-2 rounded-full text-sm font-medium shadow-md">
Book Now
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="relative h-screen flex items-center overflow-hidden">
<div class="absolute inset-0">
<img src="https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80"
alt="Mountain Landscape"
class="w-full h-full object-cover parallax-bg">
<div class="absolute inset-0 hero-gradient"></div>
</div>
<div class="relative z-10 text-center px-6 max-w-4xl mx-auto">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 leading-tight heading-font">
<span class="gradient-text">Discover</span> Your Perfect Journey
</h1>
<p class="text-xl md:text-2xl text-white/90 mb-8 max-w-2xl mx-auto">
Expertly crafted travel experiences that connect you with the world's most breathtaking destinations.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white hover:bg-gray-100 text-emerald-600 px-8 py-4 rounded-full text-lg font-semibold shadow-lg transition-all">
Explore Tours <i class="fas fa-arrow-right ml-2"></i>
</button>
<button class="bg-transparent hover:bg-white/20 text-white border-2 border-white/50 hover:border-white px-8 py-4 rounded-full text-lg font-semibold transition-all">
<i class="fas fa-play-circle mr-2"></i> Watch Video
</button>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#destinations" class="text-white animate-bounce">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
<div class="shape-divider">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
</svg>
</div>
</section>
<!-- Why Choose Us -->
<section class="py-20 px-4 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<span class="text-emerald-600 font-semibold">WHY CHOOSE US</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4 heading-font">Travel With Confidence</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
We go above and beyond to ensure your journey is seamless and unforgettable.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-xl p-8 text-center hover:shadow-lg transition-all">
<div class="bg-emerald-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-shield-alt text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 heading-font">Safety First</h3>
<p class="text-gray-600">
Our tours prioritize your safety with vetted accommodations, reliable transportation, and 24/7 support.
</p>
</div>
<div class="bg-gray-50 rounded-xl p-8 text-center hover:shadow-lg transition-all">
<div class="bg-emerald-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-map-marked-alt text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 heading-font">Local Experts</h3>
<p class="text-gray-600">
Our guides are locals who know hidden gems and authentic experiences you won't find in guidebooks.
</p>
</div>
<div class="bg-gray-50 rounded-xl p-8 text-center hover:shadow-lg transition-all">
<div class="bg-emerald-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-heart text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 heading-font">Sustainable Travel</h3>
<p class="text-gray-600">
We're committed to responsible tourism that benefits local communities and preserves natural wonders.
</p>
</div>
</div>
</div>
</section>
<!-- Popular Destinations -->
<section id="destinations" class="py-20 px-4 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<span class="text-emerald-600 font-semibold">EXPLORE THE WORLD</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4 heading-font">Featured Destinations</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Handpicked locations that promise unforgettable experiences and breathtaking scenery.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Destination 1 -->
<div class="destination-card bg-white rounded-2xl overflow-hidden shadow-md">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1516483638261-f4dbaf036963?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1680&q=80"
alt="Iceland"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent">
<div class="flex justify-between items-end">
<div>
<h3 class="text-xl font-bold text-white heading-font">Iceland</h3>
<div class="flex items-center text-yellow-300 mt-1">
<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>
<span class="text-white font-bold text-lg">$2,299</span>
</div>
</div>
<div class="absolute top-4 right-4">
<button class="bg-white/90 hover:bg-white text-emerald-600 p-2 rounded-full shadow-md">
<i class="fas fa-heart"></i>
</button>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-calendar-alt mr-2"></i>
<span>8 Days</span>
</div>
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-user-friends mr-2"></i>
<span>10 People</span>
</div>
</div>
<p class="text-gray-600 mb-4">
Discover Iceland's dramatic landscapes with waterfalls, glaciers, and the magical Northern Lights.
</p>
<button class="w-full bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white py-3 rounded-full font-medium shadow-md transition-all">
Book Now
</button>
</div>
</div>
<!-- Destination 2 -->
<div class="destination-card bg-white rounded-2xl overflow-hidden shadow-md">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1680&q=80"
alt="Japan"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent">
<div class="flex justify-between items-end">
<div>
<h3 class="text-xl font-bold text-white heading-font">Japan</h3>
<div class="flex items-center text-yellow-300 mt-1">
<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>
<span class="text-white font-bold text-lg">$3,599</span>
</div>
</div>
<div class="absolute top-4 right-4">
<button class="bg-white/90 hover:bg-white text-emerald-600 p-2 rounded-full shadow-md">
<i class="fas fa-heart"></i>
</button>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-calendar-alt mr-2"></i>
<span>12 Days</span>
</div>
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-user-friends mr-2"></i>
<span>8 People</span>
</div>
</div>
<p class="text-gray-600 mb-4">
Experience the perfect blend of ancient traditions and cutting-edge modernity in Japan.
</p>
<button class="w-full bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white py-3 rounded-full font-medium shadow-md transition-all">
Book Now
</button>
</div>
</div>
<!-- Destination 3 -->
<div class="destination-card bg-white rounded-2xl overflow-hidden shadow-md">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1518391846015-55a9cc003b25?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1680&q=80"
alt="Peru"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent">
<div class="flex justify-between items-end">
<div>
<h3 class="text-xl font-bold text-white heading-font">Peru</h3>
<div class="flex items-center text-yellow-300 mt-1">
<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>
<span class="text-white font-bold text-lg">$2,899</span>
</div>
</div>
<div class="absolute top-4 right-4">
<button class="bg-white/90 hover:bg-white text-emerald-600 p-2 rounded-full shadow-md">
<i class="fas fa-heart"></i>
</button>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-calendar-alt mr-2"></i>
<span>10 Days</span>
</div>
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-user-friends mr-2"></i>
<span>12 People</span>
</div>
</div>
<p class="text-gray-600 mb-4">
Trek to Machu Picchu and explore Peru's rich history, vibrant culture, and stunning landscapes.
</p>
<button class="w-full bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white py-3 rounded-full font-medium shadow-md transition-all">
Book Now
</button>
</div>
</div>
<!-- Destination 4 -->
<div class="destination-card bg-white rounded-2xl overflow-hidden shadow-md">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80"
alt="Safari"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent">
<div class="flex justify-between items-end">
<div>
<h3 class="text-xl font-bold text-white heading-font">Safari</h3>
<div class="flex items-center text-yellow-300 mt-1">
<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>
<span class="text-white font-bold text-lg">$4,199</span>
</div>
</div>
<div class="absolute top-4 right-4">
<button class="bg-white/90 hover:bg-white text-emerald-600 p-2 rounded-full shadow-md">
<i class="fas fa-heart"></i>
</button>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-calendar-alt mr-2"></i>
<span>14 Days</span>
</div>
<div class="flex items-center text-gray-500 text-sm">
<i class="fas fa-user-friends mr-2"></i>
<span>6 People</span>
</div>
</div>
<p class="text-gray-600 mb-4">
Witness the breathtaking wildlife of Africa on this once-in-a-lifetime safari adventure.
</p>
<button class="w-full bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white py-3 rounded-full font-medium shadow-md transition-all">
Book Now
</button>
</div>
</div>
</div>
<div class="text-center mt-16">
<button class="bg-transparent hover:bg-emerald-600 text-emerald-600 hover:text-white border-2 border-emerald-600 px-8 py-3 rounded-full text-lg font-semibold transition-all">
View All Destinations <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Video Section -->
<section class="py-20 px-4 bg-white">
<div class="max-w-7xl mx-auto">
<div class="bg-gray-900 rounded-3xl overflow-hidden shadow-xl">
<div class="relative aspect-w-16 aspect-h-9">
<div class="absolute inset-0 bg-gradient-to-r from-emerald-600 to-emerald-500 opacity-90"></div>
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80"
alt="Travel Video"
class="w-full h-full object-cover opacity-30">
<div class="absolute inset-0 flex items-center justify-center">
<button class="bg-white hover:bg-gray-100 text-emerald-600 rounded-full w-20 h-20 flex items-center justify-center shadow-lg transform transition-all hover:scale-110">
<i class="fas fa-play text-2xl"></i>
</button>
</div>
</div>
<div class="p-8 md:p-12 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 heading-font">Our Travel Stories</h2>
<p class="text-gray-300 max-w-2xl mx-auto mb-8">
Watch our latest travel documentary showcasing the beauty of our planet and the people who call it home.
</p>
<button class="bg-white hover:bg-gray-100 text-emerald-600 px-8 py-3 rounded-full text-lg font-semibold shadow-md transition-all">
Watch More Videos
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 px-4 bg-gray-100">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<span class="text-emerald-600 font-semibold">TRAVELER STORIES</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4 heading-font">What Our Travelers Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Hear from our community of explorers about their unforgettable journeys.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Jessica L." class="w-14 h-14 rounded-full mr-4 border-2 border-emerald-100">
<div>
<h4 class="font-bold text-gray-900">Jessica L.</h4>
<div class="flex text-yellow-300 text-sm">
<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>
</div>
<p class="text-gray-600 italic mb-6">
"The Iceland tour exceeded all expectations. Every detail was perfectly planned, and our guide's knowledge of the local culture made the experience truly special."
</p>
<div class="text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i> Iceland Adventure
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="David K." class="w-14 h-14 rounded-full mr-4 border-2 border-emerald-100">
<div>
<h4 class="font-bold text-gray-900">David K.</h4>
<div class="flex text-yellow-300 text-sm">
<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>
</div>
<p class="text-gray-600 italic mb-6">
"Our Japan cultural tour was the trip of a lifetime. Voyage's local connections got us experiences most tourists never get - something I'll never forget!"
</p>
<div class="text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i> Japan Cultural Journey
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Sophia M." class="w-14 h-14 rounded-full mr-4 border-2 border-emerald-100">
<div>
<h4 class="font-bold text-gray-900">Sophia M.</h4>
<div class="flex text-yellow-300 text-sm">
<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>
</div>
<p class="text-gray-600 italic mb-6">
"The cultural immersion in Peru was perfectly balanced - we saw iconic sights but also experienced local life in ways most tourists never do. Highly recommend!"
</p>
<div class="text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i> Peru Expedition
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 bg-gradient-to-r from-emerald-600 to-emerald-500 text-white">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6 heading-font">Ready for Your Next Adventure?</h2>
<p class="text-emerald-100 mb-8 max-w-2xl mx-auto text-lg">
Join thousands of travelers who trust us to create unforgettable experiences around the globe.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white hover:bg-gray-100 text-emerald-600 px-8 py-4 rounded-full text-lg font-semibold shadow-lg transition-all">
Book Your Trip Now
</button>
<button class="bg-transparent hover:bg-white/10 text-white border-2 border-white/30 hover:border-white px-8 py-4 rounded-full text-lg font-semibold transition-all">
<i class="fas fa-phone-alt mr-2"></i> Contact Us
</button>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 px-4 bg-white">
<div class="max-w-4xl mx-auto bg-gradient-to-r from-emerald-50 to-green-50 rounded-2xl p-8 shadow-sm">
<div class="text-center mb-8">
<h2 class="text-2xl font-bold text-gray-900 mb-2 heading-font">Travel Inspiration Straight to Your Inbox</h2>
<p class="text-gray-600">
Sign up for our newsletter and receive exclusive deals, travel tips, and destination highlights.
</p>
</div>
<div class="flex flex-col sm:flex-row gap-2 max-w-md mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow px-6 py-3 rounded-full border border-gray-300 focus:border-emerald-500 focus:ring-2 focus:ring-emerald-200 outline-none transition-all">
<button class="bg-gradient-to-r from-emerald-600 to-emerald-500 hover:from-emerald-700 hover:to-emerald-600 text-white px-8 py-3 rounded-full font-semibold shadow-md transition-all whitespace-nowrap">
Subscribe
</button>
</div>
<p class="text-gray-500 text-sm text-center mt-4">
We respect your privacy. Unsubscribe at any time.
</p>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8 px-4">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-5 gap-12">
<div class="md:col-span-2">
<div class="flex items-center mb-6">
<i class="fas fa-compass text-emerald-400 text-2xl mr-2"></i>
<span class="text-xl font-bold heading-font">Voyage</span>
</div>
<p class="text-gray-400 mb-6">
We create extraordinary travel experiences that inspire and connect people with the world's most beautiful places.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-6 heading-font">Destinations</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Europe</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Asia</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Africa</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Americas</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Oceania</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6 heading-font">Company</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Our Team</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Press</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6 heading-font">Support</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Terms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Cookie Policy</a></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-500 text-sm mb-4 md:mb-0">
&copy; 2023 Voyage Travel. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Animation on scroll
document.addEventListener('DOMContentLoaded', function() {
const animateOnScroll = function() {
const elements = document.querySelectorAll('.destination-card, .testimonial-card');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementPosition < windowHeight - 100) {
element.classList.add('opacity-100');
} else {
element.classList.remove('opacity-100');
}
});
};
// Set initial state
document.querySelectorAll('.destination-card, .testimonial-card').forEach(el => {
el.classList.add('transition-opacity', 'duration-500', 'opacity-0');
});
// Run on load and scroll
animateOnScroll();
window.addEventListener('scroll', animateOnScroll);
});
</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=cdgv/air" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>