Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Azure Dives - Summer Beach Adventures</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=Poppins:wght@300;400;600;700&display=swap'); | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| background-color: #f0f9ff; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #1d4ed8 100%); | |
| } | |
| .wave-shape { | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| width: 100%; | |
| overflow: hidden; | |
| line-height: 0; | |
| } | |
| .wave-shape svg { | |
| position: relative; | |
| display: block; | |
| width: calc(100% + 1.3px); | |
| height: 150px; | |
| } | |
| .wave-shape .shape-fill { | |
| fill: #f0f9ff; | |
| } | |
| .dive-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); | |
| } | |
| .parallax { | |
| background-attachment: fixed; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| } | |
| .water-effect { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .water-effect::after { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%); | |
| animation: waterShimmer 3s infinite linear; | |
| } | |
| @keyframes waterShimmer { | |
| 0% { transform: translateY(-100%); } | |
| 100% { transform: translateY(100%); } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Navigation --> | |
| <nav class="bg-blue-900 text-white shadow-lg fixed w-full z-50"> | |
| <div class="container mx-auto px-6 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-4"> | |
| <i class="fas fa-water text-3xl text-blue-300"></i> | |
| <span class="font-bold text-2xl">Azure<span class="text-blue-300">Dives</span></span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#" class="hover:text-blue-300 transition">Home</a> | |
| <a href="#dives" class="hover:text-blue-300 transition">Dive Spots</a> | |
| <a href="#courses" class="hover:text-blue-300 transition">Courses</a> | |
| <a href="#gallery" class="hover:text-blue-300 transition">Gallery</a> | |
| <a href="#contact" class="hover:text-blue-300 transition">Contact</a> | |
| </div> | |
| <button class="md:hidden focus:outline-none"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient text-white pt-32 pb-20 relative overflow-hidden"> | |
| <div class="container mx-auto px-6 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Dive Into <span class="text-blue-200">Summer</span> Adventures</h1> | |
| <p class="text-xl mb-8">Explore the most beautiful underwater worlds with our certified instructors. Perfect for beginners and experienced divers alike.</p> | |
| <div class="flex space-x-4"> | |
| <button class="bg-white text-blue-600 px-8 py-3 rounded-full font-bold hover:bg-blue-100 transition">Book Now</button> | |
| <button class="border-2 border-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-blue-600 transition">Learn More</button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 relative"> | |
| <img src="https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Diver underwater" class="rounded-xl shadow-2xl transform rotate-3 border-8 border-white"> | |
| <div class="absolute -bottom-6 -right-6 bg-blue-500 p-4 rounded-xl shadow-lg"> | |
| <div class="text-center"> | |
| <p class="text-2xl font-bold">50+</p> | |
| <p class="text-sm">Dive Locations</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="wave-shape"> | |
| <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> | |
| <!-- Features Section --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-blue-900 mb-16">Why Choose <span class="text-blue-500">Azure Dives</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-12"> | |
| <div class="text-center px-6"> | |
| <div class="bg-blue-100 w-20 h-20 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-shield-alt text-blue-600 text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Safety First</h3> | |
| <p class="text-gray-600">All our instructors are PADI certified with years of experience. Your safety is our top priority.</p> | |
| </div> | |
| <div class="text-center px-6"> | |
| <div class="bg-blue-100 w-20 h-20 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-map-marked-alt text-blue-600 text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Best Locations</h3> | |
| <p class="text-gray-600">We've carefully selected the most breathtaking dive spots with vibrant marine life.</p> | |
| </div> | |
| <div class="text-center px-6"> | |
| <div class="bg-blue-100 w-20 h-20 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-sun text-blue-600 text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Summer Specials</h3> | |
| <p class="text-gray-600">Enjoy our exclusive summer packages with discounts on group bookings and equipment rental.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Dive Spots Section --> | |
| <section id="dives" class="py-20 bg-blue-50"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-blue-900 mb-16">Featured <span class="text-blue-500">Dive Spots</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Dive Spot 1 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg dive-card transition duration-300"> | |
| <div class="relative overflow-hidden h-64"> | |
| <img src="https://images.unsplash.com/photo-1560279966-06d6f6a3e1f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Coral Reef" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-blue-900 to-transparent opacity-70"></div> | |
| <div class="absolute bottom-4 left-4 text-white"> | |
| <span class="bg-blue-500 text-xs px-2 py-1 rounded-full">Beginner</span> | |
| <h3 class="text-xl font-bold mt-2">Coral Paradise</h3> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <div class="flex items-center text-yellow-400"> | |
| <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> | |
| <span class="text-gray-600 ml-2">4.7</span> | |
| </div> | |
| <span class="text-blue-600 font-bold">$89/person</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Shallow reef perfect for beginners with colorful corals and tropical fish.</p> | |
| <div class="flex justify-between text-sm text-gray-500"> | |
| <span><i class="fas fa-clock mr-1"></i> 3 hours</span> | |
| <span><i class="fas fa-ruler-combined mr-1"></i> 5-10m depth</span> | |
| <span><i class="fas fa-users mr-1"></i> Small groups</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Dive Spot 2 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg dive-card transition duration-300"> | |
| <div class="relative overflow-hidden h-64"> | |
| <img src="https://images.unsplash.com/photo-1581595219315-a187dd40c322?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Shipwreck" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-blue-900 to-transparent opacity-70"></div> | |
| <div class="absolute bottom-4 left-4 text-white"> | |
| <span class="bg-blue-700 text-xs px-2 py-1 rounded-full">Advanced</span> | |
| <h3 class="text-xl font-bold mt-2">Sunken Treasure</h3> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <div class="flex items-center text-yellow-400"> | |
| <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> | |
| <span class="text-gray-600 ml-2">4.9</span> | |
| </div> | |
| <span class="text-blue-600 font-bold">$129/person</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Explore a historic shipwreck teeming with marine life in crystal clear waters.</p> | |
| <div class="flex justify-between text-sm text-gray-500"> | |
| <span><i class="fas fa-clock mr-1"></i> 4 hours</span> | |
| <span><i class="fas fa-ruler-combined mr-1"></i> 15-25m depth</span> | |
| <span><i class="fas fa-users mr-1"></i> Private guide</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Dive Spot 3 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg dive-card transition duration-300"> | |
| <div class="relative overflow-hidden h-64"> | |
| <img src="https://images.unsplash.com/photo-1560279966-8ff6a1e7d0b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Manta Rays" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-blue-900 to-transparent opacity-70"></div> | |
| <div class="absolute bottom-4 left-4 text-white"> | |
| <span class="bg-blue-600 text-xs px-2 py-1 rounded-full">Intermediate</span> | |
| <h3 class="text-xl font-bold mt-2">Manta Point</h3> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <div class="flex items-center text-yellow-400"> | |
| <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> | |
| <span class="text-gray-600 ml-2">5.0</span> | |
| </div> | |
| <span class="text-blue-600 font-bold">$159/person</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Swim with majestic manta rays in their natural habitat - a once in a lifetime experience.</p> | |
| <div class="flex justify-between text-sm text-gray-500"> | |
| <span><i class="fas fa-clock mr-1"></i> 6 hours</span> | |
| <span><i class="fas fa-ruler-combined mr-1"></i> 8-15m depth</span> | |
| <span><i class="fas fa-users mr-1"></i> Small groups</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="bg-blue-600 text-white px-8 py-3 rounded-full font-bold hover:bg-blue-700 transition">View All Locations</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Courses Section --> | |
| <section id="courses" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-blue-900 mb-16">Diving <span class="text-blue-500">Courses</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
| <!-- Course 1 --> | |
| <div class="bg-blue-50 rounded-xl p-6 text-center hover:shadow-lg transition"> | |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-swimmer text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Discover Scuba</h3> | |
| <p class="text-gray-600 mb-4">Perfect introduction for first-time divers in a controlled environment.</p> | |
| <div class="text-blue-600 font-bold mb-4">$99</div> | |
| <button class="text-blue-600 border border-blue-600 px-4 py-2 rounded-full text-sm hover:bg-blue-600 hover:text-white transition">Learn More</button> | |
| </div> | |
| <!-- Course 2 --> | |
| <div class="bg-blue-50 rounded-xl p-6 text-center hover:shadow-lg transition"> | |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-certificate text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Open Water Diver</h3> | |
| <p class="text-gray-600 mb-4">Get PADI certified with our comprehensive beginner course.</p> | |
| <div class="text-blue-600 font-bold mb-4">$399</div> | |
| <button class="text-blue-600 border border-blue-600 px-4 py-2 rounded-full text-sm hover:bg-blue-600 hover:text-white transition">Learn More</button> | |
| </div> | |
| <!-- Course 3 --> | |
| <div class="bg-blue-50 rounded-xl p-6 text-center hover:shadow-lg transition"> | |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-fish text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Advanced Diver</h3> | |
| <p class="text-gray-600 mb-4">Expand your skills with deep diving, navigation, and specialty dives.</p> | |
| <div class="text-blue-600 font-bold mb-4">$349</div> | |
| <button class="text-blue-600 border border-blue-600 px-4 py-2 rounded-full text-sm hover:bg-blue-600 hover:text-white transition">Learn More</button> | |
| </div> | |
| <!-- Course 4 --> | |
| <div class="bg-blue-50 rounded-xl p-6 text-center hover:shadow-lg transition"> | |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-camera text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-blue-900">Underwater Photography</h3> | |
| <p class="text-gray-600 mb-4">Learn to capture stunning images of marine life with professional guidance.</p> | |
| <div class="text-blue-600 font-bold mb-4">$249</div> | |
| <button class="text-blue-600 border border-blue-600 px-4 py-2 rounded-full text-sm hover:bg-blue-600 hover:text-white transition">Learn More</button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-20 bg-blue-900 text-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center mb-16">What Our <span class="text-blue-300">Divers Say</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-blue-800 rounded-xl p-8 relative"> | |
| <div class="absolute -top-4 -left-4 bg-blue-600 w-12 h-12 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-quote-left text-white"></i> | |
| </div> | |
| <p class="mb-6 italic">"The best diving experience of my life! The instructors were patient and knowledgeable, and the marine life was breathtaking. Can't wait to come back next summer!"</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah J.</h4> | |
| <div class="flex text-yellow-400 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> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-blue-800 rounded-xl p-8 relative"> | |
| <div class="absolute -top-4 -left-4 bg-blue-600 w-12 h-12 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-quote-left text-white"></i> | |
| </div> | |
| <p class="mb-6 italic">"As a beginner, I was nervous about my first dive, but the team made me feel completely safe. The coral reef was like something from a dream. Highly recommend!"</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Michael T.</h4> | |
| <div class="flex text-yellow-400 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> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-blue-800 rounded-xl p-8 relative"> | |
| <div class="absolute -top-4 -left-4 bg-blue-600 w-12 h-12 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-quote-left text-white"></i> | |
| </div> | |
| <p class="mb-6 italic">"The underwater photography course exceeded all my expectations. The instructor helped me capture amazing shots of turtles and reef sharks. Worth every penny!"</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma L." class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Emma L.</h4> | |
| <div class="flex text-yellow-400 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> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Gallery Section --> | |
| <section id="gallery" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-blue-900 mb-16">Underwater <span class="text-blue-500">Gallery</span></h2> | |
| <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1560279966-06d6f6a3e1f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Coral" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1581595219315-a187dd40c322?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Shipwreck" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1560279966-8ff6a1e7d0b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Manta Ray" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Diver" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Turtle" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1560279966-8ff6a1e7d0b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Shark" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Jellyfish" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="overflow-hidden rounded-xl h-48 water-effect"> | |
| <img src="https://images.unsplash.com/photo-1560279966-06d6f6a3e1f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Coral Reef" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="bg-blue-600 text-white px-8 py-3 rounded-full font-bold hover:bg-blue-700 transition">View Full Gallery</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Summer Special Section --> | |
| <section class="py-20 parallax" style="background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80')"> | |
| <div class="container mx-auto px-6 text-center text-white"> | |
| <div class="max-w-3xl mx-auto bg-blue-900 bg-opacity-80 p-12 rounded-xl"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Summer <span class="text-blue-300">Special Offer</span></h2> | |
| <p class="text-xl mb-8">Book before July 31st and get 20% off all dive packages and courses!</p> | |
| <div class="flex justify-center"> | |
| <div class="bg-white text-blue-900 px-6 py-2 rounded-full font-bold inline-flex items-center"> | |
| <i class="fas fa-clock mr-2"></i> | |
| <span id="countdown" class="font-mono">30 days 00:00:00</span> | |
| </div> | |
| </div> | |
| <button class="mt-8 bg-blue-500 text-white px-8 py-3 rounded-full font-bold hover:bg-blue-600 transition">Claim Your Discount</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-blue-50"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-blue-900 mb-16">Get In <span class="text-blue-500">Touch</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-6 text-blue-900">Contact Information</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-blue-900">Location</h4> | |
| <p class="text-gray-600">123 Beachfront Avenue, Coral Bay, FL 33139</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-blue-900">Phone</h4> | |
| <p class="text-gray-600">+1 (305) 555-0199</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-blue-900">Email</h4> | |
| <p class="text-gray-600">info@azuredives.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-blue-900">Hours</h4> | |
| <p class="text-gray-600">Daily 8:00 AM - 6:00 PM</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8"> | |
| <h4 class="font-bold text-blue-900 mb-4">Follow Us</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="bg-blue-100 w-10 h-10 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="bg-blue-100 w-10 h-10 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="bg-blue-100 w-10 h-10 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="bg-blue-100 w-10 h-10 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition"> | |
| <i class="fab fa-youtube"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-6 text-blue-900">Send Us a Message</h3> | |
| <form class="space-y-4"> | |
| <div> | |
| <label for="name" class="block text-gray-700 mb-2">Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-gray-700 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:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div> | |
| <label for="subject" class="block text-gray-700 mb-2">Subject</label> | |
| <select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <option>General Inquiry</option> | |
| <option>Booking Question</option> | |
| <option>Course Information</option> | |
| <option>Feedback</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-gray-700 mb-2">Message</label> | |
| <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> | |
| </div> | |
| <button type="submit" class="bg-blue-600 text-white px-6 py-3 rounded-lg font-bold hover:bg-blue-700 transition w-full">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-blue-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 space-x-2 mb-4"> | |
| <i class="fas fa-water text-2xl text-blue-300"></i> | |
| <span class="font-bold text-xl">Azure<span class="text-blue-300">Dives</span></span> | |
| </div> | |
| <p class="text-blue-200">Your gateway to unforgettable underwater adventures. Dive into summer with us!</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Home</a></li> | |
| <li><a href="#dives" class="text-blue-200 hover:text-white transition">Dive Spots</a></li> | |
| <li><a href="#courses" class="text-blue-200 hover:text-white transition">Courses</a></li> | |
| <li><a href="#gallery" class="text-blue-200 hover:text-white transition">Gallery</a></li> | |
| <li><a href="#contact" class="text-blue-200 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Dive Centers</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Florida Keys</a></li> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Bahamas</a></li> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Hawaii</a></li> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Bonaire</a></li> | |
| <li><a href="#" class="text-blue-200 hover:text-white transition">Cozumel</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Newsletter</h4> | |
| <p class="text-blue-200 mb-4">Subscribe to get updates on special offers and new locations.</p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900 w-full"> | |
| <button type="submit" class="bg-blue-600 px-4 py-2 rounded-r-lg hover:bg-blue-700 transition"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="border-t border-blue-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-blue-300 text-sm mb-4 md:mb-0">© 2023 Azure Dives. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-blue-300 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-blue-300 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-blue-300 hover:text-white transition">Sitemap</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Countdown timer for summer special | |
| function updateCountdown() { | |
| const endDate = new Date(); | |
| endDate.setDate(endDate.getDate() + 30); // 30 days from now | |
| const now = new Date().getTime(); | |
| const distance = endDate - now; | |
| const days = Math.floor(distance / (1000 * 60 * 60 * 24)); | |
| const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); | |
| const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); | |
| const seconds = Math.floor((distance % (1000 * 60)) / 1000); | |
| document.getElementById("countdown").innerHTML = `${days} days ${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`; | |
| } | |
| updateCountdown(); | |
| setInterval(updateCountdown, 1000); | |
| // Smooth scrolling for navigation | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Mobile menu toggle (would need more implementation) | |
| document.querySelector('.md\\:hidden').addEventListener('click', function() { | |
| // This would toggle a mobile menu in a real implementation | |
| console.log('Mobile menu clicked'); | |
| }); | |
| </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=chatkenneth/demo-3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |