Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Opulent Stays | Luxury Rentals Beyond Imagination</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=Montserrat:wght@300;400;500;600&display=swap'); | |
body { | |
font-family: 'Montserrat', sans-serif; | |
scroll-behavior: smooth; | |
} | |
.heading-font { | |
font-family: 'Playfair Display', serif; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); | |
} | |
.property-card:hover { | |
transform: translateY(-10px); | |
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
} | |
.property-card { | |
transition: all 0.3s ease; | |
} | |
.testimonial-card { | |
background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%); | |
} | |
.nav-link { | |
position: relative; | |
} | |
.nav-link:after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background-color: #d4af37; | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover:after { | |
width: 100%; | |
} | |
.btn-gold { | |
background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%); | |
transition: all 0.3s ease; | |
} | |
.btn-gold:hover { | |
transform: translateY(-2px); | |
box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4); | |
} | |
.animate-float { | |
animation: float 6s ease-in-out infinite; | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-20px); } | |
100% { transform: translateY(0px); } | |
} | |
.scroll-down { | |
animation: bounce 2s infinite; | |
} | |
@keyframes bounce { | |
0%, 20%, 50%, 80%, 100% {transform: translateY(0);} | |
40% {transform: translateY(-20px);} | |
60% {transform: translateY(-10px);} | |
} | |
</style> | |
</head> | |
<body class="bg-white text-gray-800"> | |
<!-- Navigation --> | |
<nav class="fixed w-full z-50 bg-white bg-opacity-90 backdrop-filter backdrop-blur-lg shadow-sm"> | |
<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-shrink-0 flex items-center"> | |
<span class="heading-font text-2xl font-bold text-gray-900">OPULENT<span class="text-yellow-600">STAYS</span></span> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-10 flex items-baseline space-x-8"> | |
<a href="#home" class="nav-link text-gray-900 hover:text-yellow-600 px-3 py-2 text-sm font-medium">Home</a> | |
<a href="#properties" class="nav-link text-gray-900 hover:text-yellow-600 px-3 py-2 text-sm font-medium">Properties</a> | |
<a href="#services" class="nav-link text-gray-900 hover:text-yellow-600 px-3 py-2 text-sm font-medium">Services</a> | |
<a href="#testimonials" class="nav-link text-gray-900 hover:text-yellow-600 px-3 py-2 text-sm font-medium">Testimonials</a> | |
<a href="#contact" class="nav-link text-gray-900 hover:text-yellow-600 px-3 py-2 text-sm font-medium">Contact</a> | |
</div> | |
</div> | |
<div class="hidden md:block"> | |
<a href="#contact" class="btn-gold text-white font-medium rounded-full px-6 py-2">Enquire Now</a> | |
</div> | |
<div class="-mr-2 flex md:hidden"> | |
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-yellow-600 focus:outline-none"> | |
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
</svg> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg rounded-b-lg"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-yellow-600">Home</a> | |
<a href="#properties" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-yellow-600">Properties</a> | |
<a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-yellow-600">Services</a> | |
<a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-yellow-600">Testimonials</a> | |
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-yellow-600">Contact</a> | |
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium bg-yellow-600 text-white rounded-full text-center">Enquire Now</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="relative h-screen flex items-center justify-center overflow-hidden"> | |
<div class="absolute inset-0"> | |
<img src="https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2600&q=80" alt="Luxury Villa" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 hero-gradient"></div> | |
</div> | |
<div class="relative z-10 text-center px-4 sm:px-6 lg:px-8 max-w-4xl mx-auto"> | |
<h1 class="heading-font text-4xl md:text-6xl font-bold text-white mb-6">Experience <span class="text-yellow-400">Unparalleled</span> Luxury</h1> | |
<p class="text-xl text-gray-200 mb-10 max-w-2xl mx-auto">Discover the world's most exquisite properties, curated for those who demand nothing but the finest in accommodation and service.</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<a href="#properties" class="btn-gold text-white font-medium rounded-full px-8 py-3">Explore Properties</a> | |
<a href="#contact" class="bg-transparent border-2 border-white text-white font-medium rounded-full px-8 py-3 hover:bg-white hover:text-gray-900 transition">Contact Concierge</a> | |
</div> | |
</div> | |
<a href="#properties" class="absolute bottom-10 left-1/2 transform -translate-x-1/2 scroll-down"> | |
<svg class="w-8 h-8 text-white animate-bounce" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path> | |
</svg> | |
</a> | |
</section> | |
<!-- Featured Properties --> | |
<section id="properties" class="py-20 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-yellow-600 text-sm font-semibold tracking-widest">OUR COLLECTION</span> | |
<h2 class="heading-font text-3xl md:text-4xl font-bold text-gray-900 mt-2">Exquisite Properties Worldwide</h2> | |
<p class="mt-4 max-w-2xl mx-auto text-gray-600">Each property in our portfolio has been carefully selected for its exceptional quality, unique character, and prime location.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Property 1 --> | |
<div class="property-card bg-white rounded-xl overflow-hidden shadow-lg"> | |
<div class="relative h-64 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Luxury Villa" class="w-full h-full object-cover transition duration-500 hover:scale-110"> | |
<div class="absolute top-4 right-4 bg-yellow-600 text-white text-xs font-bold px-3 py-1 rounded-full">FEATURED</div> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start"> | |
<div> | |
<h3 class="heading-font text-xl font-bold text-gray-900">Villa Serenity</h3> | |
<p class="text-gray-600 flex items-center mt-1"> | |
<i class="fas fa-map-marker-alt text-yellow-600 mr-2"></i> Santorini, Greece | |
</p> | |
</div> | |
<div class="text-right"> | |
<span class="text-gray-500 text-sm line-through">$15,000/night</span> | |
<p class="text-yellow-600 font-bold text-xl">$12,500/night</p> | |
</div> | |
</div> | |
<div class="flex items-center mt-4 text-gray-600"> | |
<div class="flex items-center mr-4"> | |
<i class="fas fa-bed text-yellow-600 mr-2"></i> | |
<span>5 Bedrooms</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath text-yellow-600 mr-2"></i> | |
<span>6 Bathrooms</span> | |
</div> | |
</div> | |
<div class="mt-6"> | |
<a href="#" class="btn-gold text-white font-medium rounded-full px-6 py-2 w-full block text-center">View Details</a> | |
</div> | |
</div> | |
</div> | |
<!-- Property 2 --> | |
<div class="property-card bg-white rounded-xl overflow-hidden shadow-lg"> | |
<div class="relative h-64 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Modern Mansion" class="w-full h-full object-cover transition duration-500 hover:scale-110"> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start"> | |
<div> | |
<h3 class="heading-font text-xl font-bold text-gray-900">Skyline Penthouse</h3> | |
<p class="text-gray-600 flex items-center mt-1"> | |
<i class="fas fa-map-marker-alt text-yellow-600 mr-2"></i> New York, USA | |
</p> | |
</div> | |
<div class="text-right"> | |
<p class="text-yellow-600 font-bold text-xl">$9,800/night</p> | |
</div> | |
</div> | |
<div class="flex items-center mt-4 text-gray-600"> | |
<div class="flex items-center mr-4"> | |
<i class="fas fa-bed text-yellow-600 mr-2"></i> | |
<span>4 Bedrooms</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath text-yellow-600 mr-2"></i> | |
<span>4.5 Bathrooms</span> | |
</div> | |
</div> | |
<div class="mt-6"> | |
<a href="#" class="btn-gold text-white font-medium rounded-full px-6 py-2 w-full block text-center">View Details</a> | |
</div> | |
</div> | |
</div> | |
<!-- Property 3 --> | |
<div class="property-card bg-white rounded-xl overflow-hidden shadow-lg"> | |
<div class="relative h-64 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Chateau" class="w-full h-full object-cover transition duration-500 hover:scale-110"> | |
<div class="absolute top-4 right-4 bg-yellow-600 text-white text-xs font-bold px-3 py-1 rounded-full">NEW</div> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start"> | |
<div> | |
<h3 class="heading-font text-xl font-bold text-gray-900">Château Lumière</h3> | |
<p class="text-gray-600 flex items-center mt-1"> | |
<i class="fas fa-map-marker-alt text-yellow-600 mr-2"></i> Provence, France | |
</p> | |
</div> | |
<div class="text-right"> | |
<p class="text-yellow-600 font-bold text-xl">$18,200/night</p> | |
</div> | |
</div> | |
<div class="flex items-center mt-4 text-gray-600"> | |
<div class="flex items-center mr-4"> | |
<i class="fas fa-bed text-yellow-600 mr-2"></i> | |
<span>8 Bedrooms</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath text-yellow-600 mr-2"></i> | |
<span>10 Bathrooms</span> | |
</div> | |
</div> | |
<div class="mt-6"> | |
<a href="#" class="btn-gold text-white font-medium rounded-full px-6 py-2 w-full block text-center">View Details</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<a href="#" class="inline-flex items-center text-yellow-600 font-medium hover:text-yellow-700"> | |
View All Properties | |
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path> | |
</svg> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Luxury Services --> | |
<section id="services" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-yellow-600 text-sm font-semibold tracking-widest">WHY CHOOSE US</span> | |
<h2 class="heading-font text-3xl md:text-4xl font-bold text-gray-900 mt-2">Beyond Ordinary Stays</h2> | |
<p class="mt-4 max-w-2xl mx-auto text-gray-600">We don't just rent properties - we craft unforgettable experiences tailored to your every desire.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Service 1 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-star text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">Exclusive Properties</h3> | |
<p class="text-gray-600">Access to the world's most sought-after residences that aren't available on conventional rental platforms.</p> | |
</div> | |
<!-- Service 2 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-concierge-bell text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">24/7 Concierge</h3> | |
<p class="text-gray-600">Our dedicated team is available around the clock to fulfill your every request, from reservations to special arrangements.</p> | |
</div> | |
<!-- Service 3 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-car text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">Transportation</h3> | |
<p class="text-gray-600">Luxury vehicles and private drivers available at your disposal, including airport transfers and local transportation.</p> | |
</div> | |
<!-- Service 4 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-utensils text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">Private Chefs</h3> | |
<p class="text-gray-600">Michelin-starred chefs available to create customized menus and dining experiences in the comfort of your rental.</p> | |
</div> | |
<!-- Service 5 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-spa text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">Wellness Services</h3> | |
<p class="text-gray-600">In-house massages, yoga instructors, and wellness experts to enhance your relaxation and rejuvenation.</p> | |
</div> | |
<!-- Service 6 --> | |
<div class="text-center px-6 py-8 rounded-xl bg-gray-50 hover:bg-white hover:shadow-lg transition-all duration-300"> | |
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-lock text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="heading-font text-xl font-bold text-gray-900 mb-3">Discretion & Privacy</h3> | |
<p class="text-gray-600">Absolute confidentiality and security measures to ensure your privacy is maintained at the highest level.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials --> | |
<section id="testimonials" class="py-20 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-yellow-600 text-sm font-semibold tracking-widest">CLIENT TESTIMONIALS</span> | |
<h2 class="heading-font text-3xl md:text-4xl font-bold text-gray-900 mt-2">What Our Clients Say</h2> | |
<p class="mt-4 max-w-2xl mx-auto text-gray-600">Don't just take our word for it - hear from those who've experienced the Opulent Stays difference.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="testimonial-card p-8 rounded-xl shadow-sm"> | |
<div class="flex items-center mb-6"> | |
<div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Sarah J." class="w-full h-full object-cover"> | |
</div> | |
<div> | |
<h4 class="heading-font font-bold text-gray-900">Sarah J.</h4> | |
<p class="text-yellow-600 text-sm">CEO, Tech Innovations</p> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"The attention to detail was extraordinary. From the moment we arrived, every need was anticipated and met with impeccable service. The villa in Santorini exceeded all expectations."</p> | |
<div class="flex 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> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="testimonial-card p-8 rounded-xl shadow-sm"> | |
<div class="flex items-center mb-6"> | |
<div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-full h-full object-cover"> | |
</div> | |
<div> | |
<h4 class="heading-font font-bold text-gray-900">Michael T.</h4> | |
<p class="text-yellow-600 text-sm">Founder, Venture Capital</p> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"I've stayed in luxury properties worldwide, but Opulent Stays sets a new standard. The New York penthouse was stunning, and their concierge arranged impossible restaurant reservations and backstage passes."</p> | |
<div class="flex 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> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="testimonial-card p-8 rounded-xl shadow-sm"> | |
<div class="flex items-center mb-6"> | |
<div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Elizabeth R." class="w-full h-full object-cover"> | |
</div> | |
<div> | |
<h4 class="heading-font font-bold text-gray-900">Elizabeth R.</h4> | |
<p class="text-yellow-600 text-sm">Fashion Designer</p> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"Our family reunion at the Provence chateau was magical. The staff arranged everything from horseback riding to private wine tastings. The property was even more beautiful than the photos."</p> | |
<div class="flex 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> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="py-20 bg-yellow-600 bg-opacity-10"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
<div class="md:flex"> | |
<div class="md:w-1/2 p-12 bg-gray-900 text-white"> | |
<h2 class="heading-font text-3xl font-bold mb-6">Ready for an Unforgettable Experience?</h2> | |
<p class="text-gray-300 mb-8">Our team of luxury travel specialists is standing by to help you plan your next extraordinary getaway.</p> | |
<div class="flex items-center"> | |
<div class="mr-4"> | |
<i class="fas fa-phone-alt text-yellow-400 text-2xl"></i> | |
</div> | |
<div> | |
<p class="text-gray-400 text-sm">CALL US ANYTIME</p> | |
<p class="text-white font-bold text-xl">+1 (555) 123-4567</p> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 p-12"> | |
<h3 class="heading-font text-2xl font-bold text-gray-900 mb-6">Contact Our Concierge</h3> | |
<form> | |
<div class="mb-4"> | |
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-600"> | |
</div> | |
<div class="mb-4"> | |
<input type="email" placeholder="Email Address" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-600"> | |
</div> | |
<div class="mb-4"> | |
<input type="tel" placeholder="Phone Number" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-600"> | |
</div> | |
<div class="mb-6"> | |
<textarea placeholder="How can we assist you?" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-600"></textarea> | |
</div> | |
<button type="submit" class="btn-gold text-white font-medium rounded-full px-8 py-3 w-full">Submit Request</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer id="contact" class="bg-gray-900 text-white pt-20 pb-10"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div class="md:col-span-2"> | |
<h3 class="heading-font text-2xl font-bold mb-6">OPULENT<span class="text-yellow-600">STAYS</span></h3> | |
<p class="text-gray-400 mb-6">Redefining luxury accommodations through exceptional properties and unparalleled service for the world's most discerning travelers.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-yellow-600"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-yellow-600"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-yellow-600"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-yellow-600"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="heading-font text-lg font-bold mb-6">Quick Links</h4> | |
<ul class="space-y-3"> | |
<li><a href="#home" class="text-gray-400 hover:text-yellow-600 transition">Home</a></li> | |
<li><a href="#properties" class="text-gray-400 hover:text-yellow-600 transition">Properties</a></li> | |
<li><a href="#services" class="text-gray-400 hover:text-yellow-600 transition">Services</a></li> | |
<li><a href="#testimonials" class="text-gray-400 hover:text-yellow-600 transition">Testimonials</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-yellow-600 transition">Privacy Policy</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="heading-font text-lg font-bold mb-6">Contact Us</h4> | |
<address class="not-italic text-gray-400 space-y-3"> | |
<p class="flex items-start"> | |
<i class="fas fa-map-marker-alt text-yellow-600 mt-1 mr-3"></i> | |
<span>123 Luxury Avenue, Suite 100<br>Beverly Hills, CA 90210</span> | |
</p> | |
<p class="flex items-center"> | |
<i class="fas fa-phone-alt text-yellow-600 mr-3"></i> | |
<span>+1 (555) 123-4567</span> | |
</p> | |
<p class="flex items-center"> | |
<i class="fas fa-envelope text-yellow-600 mr-3"></i> | |
<span>[email protected]</span> | |
</p> | |
</address> | |
</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">© 2023 Opulent Stays. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-500 hover:text-yellow-600 text-sm">Terms of Service</a> | |
<a href="#" class="text-gray-500 hover:text-yellow-600 text-sm">Privacy Policy</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 navigation 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) { | |
// Close mobile menu if open | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
// Scroll to target | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
} | |
}); | |
}); | |
// Add shadow to navbar on scroll | |
window.addEventListener('scroll', function() { | |
const nav = document.querySelector('nav'); | |
if (window.scrollY > 50) { | |
nav.classList.add('shadow-lg'); | |
nav.classList.remove('shadow-sm'); | |
} else { | |
nav.classList.remove('shadow-lg'); | |
nav.classList.add('shadow-sm'); | |
} | |
}); | |
</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=Gavin-yang/luxury-rental" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
</html> |