Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Casa Loba - Luxury Vacation Rental</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=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap'); | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| } | |
| .heading-font { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| .hero-image { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1582719471385-c1c7b389a42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); | |
| background-size: cover; | |
| background-position: center; | |
| height: 80vh; | |
| } | |
| .amenity-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .amenity-card:hover .amenity-icon { | |
| transform: scale(1.1); | |
| color: #d4a373; | |
| } | |
| .datepicker-input { | |
| background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z' clip-rule='evenodd' /%3E%3C/svg%3E"); | |
| background-repeat: no-repeat; | |
| background-position: right 0.5rem center; | |
| background-size: 1.5em; | |
| } | |
| .gallery-image { | |
| transition: transform 0.3s ease; | |
| } | |
| .gallery-image:hover { | |
| transform: scale(1.03); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-md sticky top-0 z-50"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <a href="#" class="text-2xl font-bold text-gray-800 heading-font">Casa Loba</a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#home" class="text-gray-800 hover:text-amber-600 transition">Home</a> | |
| <a href="#about" class="text-gray-800 hover:text-amber-600 transition">About</a> | |
| <a href="#gallery" class="text-gray-800 hover:text-amber-600 transition">Gallery</a> | |
| <a href="#amenities" class="text-gray-800 hover:text-amber-600 transition">Amenities</a> | |
| <a href="#reviews" class="text-gray-800 hover:text-amber-600 transition">Reviews</a> | |
| <a href="#contact" class="text-gray-800 hover:text-amber-600 transition">Contact</a> | |
| </div> | |
| <div class="md:hidden"> | |
| <button class="text-gray-800 focus:outline-none"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="hero-image flex items-center justify-center text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 heading-font">Casa Loba</h1> | |
| <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">Luxury vacation rental in the heart of nature</p> | |
| <a href="#booking" class="bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 inline-block">Book Now</a> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 heading-font">About Casa Loba</h2> | |
| <p class="text-gray-700 mb-4">Nestled in a serene landscape, Casa Loba offers a perfect blend of modern luxury and rustic charm. Our property is designed to provide an unforgettable experience for those seeking tranquility and comfort.</p> | |
| <p class="text-gray-700 mb-6">With breathtaking views, premium amenities, and personalized service, we ensure your stay is nothing short of extraordinary.</p> | |
| <div class="flex flex-wrap gap-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-home text-amber-600 mr-2"></i> | |
| <span>3 Bedrooms</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-bath text-amber-600 mr-2"></i> | |
| <span>2.5 Bathrooms</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-users text-amber-600 mr-2"></i> | |
| <span>Sleeps 6</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="relative rounded-xl overflow-hidden shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Casa Loba exterior" class="w-full h-auto"> | |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6"> | |
| <h3 class="text-white text-xl font-semibold">Experience Luxury in Nature</h3> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Booking Section --> | |
| <section id="booking" class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 p-8"> | |
| <h2 class="text-3xl font-bold mb-6 heading-font">Book Your Stay</h2> | |
| <p class="text-gray-700 mb-6">Check availability and reserve your dates at Casa Loba. We offer flexible booking options to suit your travel plans.</p> | |
| <div class="flex items-center mb-6"> | |
| <i class="fas fa-star text-amber-400 mr-2"></i> | |
| <span class="font-semibold">4.9 (128 reviews)</span> | |
| </div> | |
| <div class="flex items-center mb-6"> | |
| <i class="fas fa-map-marker-alt text-amber-600 mr-2"></i> | |
| <span>Santa Teresa, Costa Rica</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-dollar-sign text-amber-600 mr-2"></i> | |
| <span class="font-semibold">From $250/night</span> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 bg-amber-50 p-8"> | |
| <form class="space-y-4"> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Check-in</label> | |
| <input type="date" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500 datepicker-input"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Check-out</label> | |
| <input type="date" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500 datepicker-input"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Guests</label> | |
| <select class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
| <option>1 guest</option> | |
| <option>2 guests</option> | |
| <option>3 guests</option> | |
| <option>4 guests</option> | |
| <option>5 guests</option> | |
| <option>6 guests</option> | |
| </select> | |
| </div> | |
| <button type="submit" class="w-full bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">Check Availability</button> | |
| </form> | |
| <div class="mt-6 text-center text-sm text-gray-600"> | |
| <p>Need help? <a href="#contact" class="text-amber-600 hover:underline">Contact us</a></p> | |
| </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 md:text-4xl font-bold mb-12 text-center heading-font">Gallery</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Living room" class="w-full h-64 object-cover"> | |
| </div> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Kitchen" class="w-full h-64 object-cover"> | |
| </div> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bedroom" class="w-full h-64 object-cover"> | |
| </div> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bathroom" class="w-full h-64 object-cover"> | |
| </div> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Dining area" class="w-full h-64 object-cover"> | |
| </div> | |
| <div class="rounded-xl overflow-hidden shadow-lg gallery-image"> | |
| <img src="https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1453&q=80" alt="Outdoor area" class="w-full h-64 object-cover"> | |
| </div> | |
| </div> | |
| <div class="text-center mt-10"> | |
| <a href="#" class="inline-block px-6 py-3 border-2 border-amber-600 text-amber-600 font-medium rounded-full hover:bg-amber-600 hover:text-white transition duration-300">View Full Gallery</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Amenities Section --> | |
| <section id="amenities" class="py-20 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center heading-font">Amenities</h2> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-wifi"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">High-Speed WiFi</h3> | |
| <p class="text-gray-700">Stay connected with our ultra-fast fiber optic internet connection throughout the property.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-swimming-pool"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Infinity Pool</h3> | |
| <p class="text-gray-700">Enjoy breathtaking views while relaxing in our temperature-controlled infinity pool.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-utensils"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Gourmet Kitchen</h3> | |
| <p class="text-gray-700">Fully equipped with premium appliances and cookware for your culinary adventures.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-hot-tub"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Hot Tub</h3> | |
| <p class="text-gray-700">Private hot tub with stunning sunset views - perfect for relaxation after a day of exploring.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-parking"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Secure Parking</h3> | |
| <p class="text-gray-700">Covered parking space for two vehicles with 24/7 security monitoring.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md amenity-card"> | |
| <div class="text-4xl mb-4 text-amber-600 amenity-icon"> | |
| <i class="fas fa-concierge-bell"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Concierge Service</h3> | |
| <p class="text-gray-700">Our local team can arrange tours, transportation, and special requests to enhance your stay.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Reviews Section --> | |
| <section id="reviews" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center heading-font">Guest Reviews</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-6 rounded-xl shadow-md testimonial-card"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-4">"Casa Loba exceeded all our expectations. The views are breathtaking, the house is beautifully designed, and every detail has been thought of. We can't wait to return!"</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Sarah J.</h4> | |
| <p class="text-sm text-gray-600">March 2023</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-xl shadow-md testimonial-card"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-4">"The perfect getaway! The infinity pool was our favorite spot, and the kitchen had everything we needed. The hosts were incredibly responsive and helpful."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T." class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Michael T.</h4> | |
| <p class="text-sm text-gray-600">January 2023</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-xl shadow-md testimonial-card"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| <i class="fas fa-star text-amber-400"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-4">"We've stayed at many vacation rentals, but Casa Loba stands out. The attention to detail, comfort, and stunning location made our family vacation unforgettable."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa M." class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Lisa M.</h4> | |
| <p class="text-sm text-gray-600">December 2022</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-amber-600 text-amber-600 rounded-full hover:bg-amber-600 hover:text-white transition duration-300"> | |
| Read More Reviews | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Location Section --> | |
| <section class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 heading-font">Our Location</h2> | |
| <p class="text-gray-700 mb-6">Casa Loba is located in the picturesque region of Santa Teresa, Costa Rica, known for its stunning beaches, lush jungles, and vibrant local culture.</p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Address</h4> | |
| <p class="text-gray-700">Playa Hermosa, Santa Teresa, Puntarenas, Costa Rica</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-plane text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Nearest Airport</h4> | |
| <p class="text-gray-700">Tambor Airport (TMU) - 30 minutes drive</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-umbrella-beach text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Beach Access</h4> | |
| <p class="text-gray-700">5-minute walk to Playa Hermosa beach</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 md:pl-10"> | |
| <div class="rounded-xl overflow-hidden shadow-xl h-96"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.982715315905!2d-84.6417229246916!3d9.9318895733641!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8fa024d9f8e3a9e5%3A0xec8b0a5e8e5a5a5e!2sPlaya%20Hermosa%2C%20Santa%20Teresa%2C%20Puntarenas%2C%20Costa%20Rica!5e0!3m2!1sen!2sus!4v1689876543210!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center heading-font">Contact Us</h2> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="bg-gray-50 rounded-xl shadow-md p-8 md:p-12"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div> | |
| <h3 class="text-2xl font-semibold mb-6 heading-font">Get in Touch</h3> | |
| <p class="text-gray-700 mb-6">Have questions about Casa Loba or ready to book your stay? Our team is here to help.</p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i class="fas fa-envelope text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Email</h4> | |
| <p class="text-gray-700">bookings@casaloba.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-phone-alt text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Phone</h4> | |
| <p class="text-gray-700">+506 8888 8888</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-clock text-amber-600 mt-1 mr-3"></i> | |
| <div> | |
| <h4 class="font-semibold">Availability</h4> | |
| <p class="text-gray-700">24/7 for urgent matters</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <form class="space-y-4"> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Name</label> | |
| <input type="text" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Email</label> | |
| <input type="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 mb-2">Message</label> | |
| <textarea rows="4" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter Section --> | |
| <section class="py-16 bg-amber-600 text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 heading-font">Stay Updated</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto">Subscribe to our newsletter for special offers and updates about Casa Loba.</p> | |
| <form class="max-w-md mx-auto flex"> | |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-900"> | |
| <button type="submit" class="bg-amber-800 hover:bg-amber-900 px-6 py-3 rounded-r-lg font-semibold transition duration-300">Subscribe</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> | |
| <h3 class="text-xl font-bold mb-4 heading-font">Casa Loba</h3> | |
| <p class="text-gray-400">Luxury vacation rental in Santa Teresa, Costa Rica. Experience nature with modern comforts.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-white transition">Home</a></li> | |
| <li><a href="#about" class="text-gray-400 hover:text-white transition">About</a></li> | |
| <li><a href="#gallery" class="text-gray-400 hover:text-white transition">Gallery</a></li> | |
| <li><a href="#amenities" class="text-gray-400 hover:text-white transition">Amenities</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Legal</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Cancellation Policy</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Connect With Us</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl transition"><i class="fab fa-facebook-f"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl transition"><i class="fab fa-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl transition"><i class="fab fa-airbnb"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl transition"><i class="fab fa-tripadvisor"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-10 pt-6 text-center text-gray-400"> | |
| <p>© 2023 Casa Loba. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple datepicker enhancement | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // Set minimum date to today for check-in | |
| const today = new Date().toISOString().split('T')[0]; | |
| const checkinInputs = document.querySelectorAll('input[type="date"]'); | |
| checkinInputs.forEach(input => { | |
| input.min = today; | |
| // Add event listener to set checkout date after checkin | |
| if(input.previousElementSibling && input.previousElementSibling.textContent.includes('Check-in')) { | |
| input.addEventListener('change', function() { | |
| const checkoutInput = this.nextElementSibling.nextElementSibling.nextElementSibling; | |
| if(this.value) { | |
| const nextDay = new Date(this.value); | |
| nextDay.setDate(nextDay.getDate() + 1); | |
| checkoutInput.min = nextDay.toISOString().split('T')[0]; | |
| // If checkout is before new min date, reset it | |
| if(checkoutInput.value && new Date(checkoutInput.value) < nextDay) { | |
| checkoutInput.value = ''; | |
| } | |
| } | |
| }); | |
| } | |
| }); | |
| // Mobile menu toggle would go here | |
| // This is just a placeholder for the functionality | |
| const mobileMenuButton = document.querySelector('.md\\:hidden button'); | |
| if(mobileMenuButton) { | |
| mobileMenuButton.addEventListener('click', function() { | |
| // This would toggle a mobile menu | |
| console.log('Mobile menu would open'); | |
| }); | |
| } | |
| }); | |
| </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=Yalexis/airbnb-rental" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |