| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Windwalls | Premium Wind Protection Solutions</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;800&display=swap'); |
| |
| body { |
| font-family: 'Montserrat', sans-serif; |
| overflow-x: hidden; |
| background-color: #f8f8f8; |
| } |
| |
| .wind-animation { |
| position: absolute; |
| width: 100%; |
| height: 100%; |
| top: 0; |
| left: 0; |
| pointer-events: none; |
| z-index: 10; |
| overflow: hidden; |
| } |
| |
| .wind-particle { |
| position: absolute; |
| background: rgba(255, 255, 255, 0.5); |
| border-radius: 50%; |
| animation: wind linear infinite; |
| opacity: 0.6; |
| } |
| |
| @keyframes wind { |
| 0% { |
| transform: translateX(0) translateY(0); |
| } |
| 100% { |
| transform: translateX(100vw) translateY(-100vh); |
| } |
| } |
| |
| .hero-gradient { |
| background: linear-gradient(135deg, #111827 0%, #1f2937 100%); |
| } |
| |
| .section-divider { |
| height: 150px; |
| background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #f8f8f8 100%); |
| margin-top: -150px; |
| z-index: 1; |
| } |
| |
| .product-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); |
| } |
| |
| .testimonial-card { |
| background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%); |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); |
| } |
| |
| .stats-item { |
| background: linear-gradient(145deg, #1f2937 0%, #111827 100%); |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link:after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: #ffffff; |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover:after { |
| width: 100%; |
| } |
| |
| .btn-wind { |
| background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); |
| transition: all 0.3s ease; |
| } |
| |
| .btn-wind:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); |
| } |
| |
| .video-container { |
| position: relative; |
| padding-bottom: 56.25%; |
| height: 0; |
| overflow: hidden; |
| } |
| |
| .video-container iframe { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| } |
| </style> |
| </head> |
| <body class="text-gray-800"> |
| |
| <div class="wind-animation" id="windAnimation"></div> |
| |
| |
| <nav class="bg-gray-900 text-white fixed w-full z-50 shadow-lg"> |
| <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"> |
| <span class="text-blue-400">WIND</span><span class="text-white">WALLS</span> |
| </a> |
| </div> |
| |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#products" class="nav-link">Products</a> |
| <a href="#features" class="nav-link">Features</a> |
| <a href="#industries" class="nav-link">Industries</a> |
| <a href="#about" class="nav-link">About</a> |
| <a href="#contact" class="nav-link">Contact</a> |
| </div> |
| |
| <div class="md:hidden"> |
| <button class="outline-none mobile-menu-button"> |
| <svg class="w-6 h-6" 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="M4 6h16M4 12h16M4 18h16"></path> |
| </svg> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="hidden mobile-menu bg-gray-800"> |
| <div class="container mx-auto px-6 py-4"> |
| <a href="#products" class="block py-2">Products</a> |
| <a href="#features" class="block py-2">Features</a> |
| <a href="#industries" class="block py-2">Industries</a> |
| <a href="#about" class="block py-2">About</a> |
| <a href="#contact" class="block py-2">Contact</a> |
| </div> |
| </div> |
| </nav> |
| |
| |
| <section class="hero-gradient text-white pt-24 pb-32 relative overflow-hidden"> |
| <div class="container mx-auto px-6"> |
| <div class="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-5xl font-bold mb-6 leading-tight">Redefining Outdoor Spaces with <span class="text-blue-400">Wind Protection</span></h1> |
| <p class="text-lg mb-8 text-gray-300">Engineered to withstand winds up to 125 mph while maintaining elegance and transparency. Family-owned and proudly manufactured in Miami, FL.</p> |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
| <a href="#contact" class="btn-wind px-8 py-3 rounded-full text-white font-semibold text-center">Get a Quote</a> |
| <a href="#products" class="px-8 py-3 rounded-full border-2 border-white text-white font-semibold text-center hover:bg-white hover:text-gray-900 transition">Explore Products</a> |
| </div> |
| </div> |
| <div class="md:w-1/2 relative"> |
| <div class="video-container rounded-xl shadow-2xl overflow-hidden"> |
| |
| <div class="absolute inset-0 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-play text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| <div class="section-divider"></div> |
| |
| |
| <section class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-6"> |
| <div class="stats-item p-6 rounded-xl text-white text-center"> |
| <div class="text-4xl font-bold mb-2">125+</div> |
| <div class="text-gray-300">MPH Wind Resistance</div> |
| </div> |
| <div class="stats-item p-6 rounded-xl text-white text-center"> |
| <div class="text-4xl font-bold mb-2">50%</div> |
| <div class="text-gray-300">Noise Reduction</div> |
| </div> |
| <div class="stats-item p-6 rounded-xl text-white text-center"> |
| <div class="text-4xl font-bold mb-2">19</div> |
| <div class="text-gray-300">Utility Patents</div> |
| </div> |
| <div class="stats-item p-6 rounded-xl text-white text-center"> |
| <div class="text-4xl font-bold mb-2">50+</div> |
| <div class="text-gray-300">Years of Experience</div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section id="products" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="text-blue-600">Product</span> Line</h2> |
| <p class="max-w-2xl mx-auto text-gray-600">Modular solutions designed for versatility, durability, and aesthetic appeal</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="product-card bg-white rounded-xl overflow-hidden shadow-lg transition duration-300"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-igloo text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Expandable Domes</h3> |
| <p class="text-gray-600 mb-4">Versatile transparent structures that can be expanded and interconnected to create unique configurations.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">250-1125 sq.ft.</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">40-90 people</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Climate Control</span> |
| </div> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">Learn more →</a> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-xl overflow-hidden shadow-lg transition duration-300"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-volume-off text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Acoustic Sound Shells</h3> |
| <p class="text-gray-600 mb-4">Engineered to optimize sound control, reducing noise complaints in residential areas.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">50% Noise Reduction</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">250 sq.ft.</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Event Ready</span> |
| </div> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">Learn more →</a> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-xl overflow-hidden shadow-lg transition duration-300"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-shield-alt text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Wind Barriers</h3> |
| <p class="text-gray-600 mb-4">Purpose-built to withstand tropical storm winds while maintaining transparency and views.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">5'-15' Heights</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Lego-like Stacking</span> |
| <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">60 lbs/panel</span> |
| </div> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">Learn more →</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section id="features" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Key <span class="text-blue-600">Features</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-600">What sets Windwalls apart from conventional solutions</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-wind text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Extreme Wind Resistance</h3> |
| <p class="text-gray-600">Certified to withstand winds up to 125 mph, providing unmatched protection in extreme weather conditions while maintaining transparency and views.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-volume-mute text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Noise Reduction</h3> |
| <p class="text-gray-600">Acoustic panels and sound shells reduce noise pollution by up to 50%, perfect for venues in residential communities at risk for noise complaints.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-snowflake text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Climate Control</h3> |
| <p class="text-gray-600">Integrated ventilation systems with options for heating or cooling ensure comfort in all weather conditions, making outdoor spaces usable year-round.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-puzzle-piece text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Modular Design</h3> |
| <p class="text-gray-600">Expandable and interconnectable structures allow for tailored configurations to fit any space requirement, with easy reconfiguration and storage.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-leaf text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Sustainable Materials</h3> |
| <p class="text-gray-600">Made from recyclable materials with a low carbon footprint, aligning with modern sustainability goals and qualifying for green initiatives.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="mr-6"> |
| <div class="bg-blue-100 text-blue-800 rounded-full w-14 h-14 flex items-center justify-center"> |
| <i class="fas fa-building text-2xl"></i> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Permitting Advantages</h3> |
| <p class="text-gray-600">Semi-permanent designs bypass many stringent permitting requirements, saving time and reducing costs compared to permanent structures.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section id="industries" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Serving <span class="text-blue-600">Industries</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-600">Windwalls solutions are tailored for diverse markets and applications</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-utensils text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Hospitality</h3> |
| <p class="text-gray-600 mb-4">Hotels, resorts, and restaurants use our solutions to optimize terraces, rooftops, and poolside areas for guest comfort and expanded seating capacity.</p> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">View case studies →</a> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-calendar-check text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Events</h3> |
| <p class="text-gray-600 mb-4">Event planners rely on our durable, weather-resistant structures for weddings, corporate gatherings, trade shows, and festivals.</p> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">View case studies →</a> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="h-48 bg-gray-800 flex items-center justify-center"> |
| <i class="fas fa-home text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Residential</h3> |
| <p class="text-gray-600 mb-4">Luxury homeowners and architects use our solutions for patios, poolside areas, and outdoor entertainment spaces with sophisticated protection.</p> |
| <a href="#" class="text-blue-600 font-semibold hover:underline">View case studies →</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Client <span class="text-blue-600">Testimonials</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-600">Hear what our clients say about Windwalls solutions</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <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> |
| <p class="text-gray-700 mb-6">"Our rooftop bar was losing business every time the wind picked up. Windwalls transformed our space into a year-round destination with their transparent barriers that don't obstruct our amazing views."</p> |
| <div class="flex items-center"> |
| <div class="bg-gray-300 rounded-full w-12 h-12"></div> |
| <div class="ml-4"> |
| <h4 class="font-bold">Michael Rodriguez</h4> |
| <p class="text-gray-600 text-sm">Director of Operations, Oceanview Resort</p> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <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> |
| <p class="text-gray-700 mb-6">"As event planners, weather is our biggest uncertainty. Windwalls' domes gave us the confidence to host outdoor weddings regardless of forecasts, and our clients love the elegant transparent aesthetic."</p> |
| <div class="flex items-center"> |
| <div class="bg-gray-300 rounded-full w-12 h-12"></div> |
| <div class="ml-4"> |
| <h4 class="font-bold">Sarah Chen</h4> |
| <p class="text-gray-600 text-sm">CEO, Elite Event Planning</p> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <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> |
| <p class="text-gray-700 mb-6">"The acoustic sound shells solved our noise complaints from neighbors while maintaining our venue's open-air feel. Installation was quick and the modular design allows us to reconfigure for different events."</p> |
| <div class="flex items-center"> |
| <div class="bg-gray-300 rounded-full w-12 h-12"></div> |
| <div class="ml-4"> |
| <h4 class="font-bold">James Wilson</h4> |
| <p class="text-gray-600 text-sm">Venue Manager, Harbor Lights Pavilion</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section id="about" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Our <span class="text-blue-600">Story</span></h2> |
| <p class="text-gray-600 mb-4">Windwalls was founded with the vision of revolutionizing outdoor living by providing innovative solutions to combat weather impediments. Originating as a response to increasing demands for outdoor protection that blends functionality with aesthetics.</p> |
| <p class="text-gray-600 mb-4">With a strong background in engineering and construction spanning over 50 years, Windwalls operates as a family-owned business proudly manufacturing its products locally in Miami, FL.</p> |
| <p class="text-gray-600 mb-6">From its inception, Windwalls has prioritized safety, durability, and adaptability. Key milestones include 19 utility patents of its signature transparent panel system and achieving certifications for wind resistance up to 125 mph.</p> |
| <a href="#" class="btn-wind px-8 py-3 rounded-full text-white font-semibold inline-block">Learn More About Us</a> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="bg-gray-800 rounded-xl overflow-hidden aspect-video flex items-center justify-center"> |
| <i class="fas fa-play-circle text-6xl text-blue-400 opacity-70"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section id="contact" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Ready to <span class="text-blue-600">Transform</span> Your Space?</h2> |
| <p class="max-w-2xl mx-auto text-gray-600">Contact our team to discuss your project or request a quote</p> |
| </div> |
| |
| <div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-lg overflow-hidden"> |
| <div class="md:flex"> |
| <div class="md:w-1/2 bg-gray-900 text-white p-12"> |
| <h3 class="text-2xl font-bold mb-6">Get in Touch</h3> |
| <div class="mb-6"> |
| <div class="flex items-center mb-4"> |
| <div class="bg-blue-600 rounded-full w-10 h-10 flex items-center justify-center mr-4"> |
| <i class="fas fa-map-marker-alt"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">Location</h4> |
| <p class="text-gray-300">Miami, FL</p> |
| </div> |
| </div> |
| <div class="flex items-center mb-4"> |
| <div class="bg-blue-600 rounded-full w-10 h-10 flex items-center justify-center mr-4"> |
| <i class="fas fa-phone-alt"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">Call Us</h4> |
| <p class="text-gray-300">(305) 123-4567</p> |
| </div> |
| </div> |
| <div class="flex items-center"> |
| <div class="bg-blue-600 rounded-full w-10 h-10 flex items-center justify-center mr-4"> |
| <i class="fas fa-envelope"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">Email Us</h4> |
| <p class="text-gray-300">info@windwalls.com</p> |
| </div> |
| </div> |
| </div> |
| <div class="pt-6 border-t border-gray-700"> |
| <h4 class="font-bold mb-4">Follow Us</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="bg-gray-700 hover:bg-blue-600 rounded-full w-10 h-10 flex items-center justify-center transition"> |
| <i class="fab fa-facebook-f"></i> |
| </a> |
| <a href="#" class="bg-gray-700 hover:bg-blue-400 rounded-full w-10 h-10 flex items-center justify-center transition"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="bg-gray-700 hover:bg-pink-600 rounded-full w-10 h-10 flex items-center justify-center transition"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="bg-gray-700 hover:bg-blue-700 rounded-full w-10 h-10 flex items-center justify-center transition"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| <div class="md:w-1/2 p-12"> |
| <form> |
| <div class="mb-6"> |
| <label for="name" class="block text-gray-700 font-medium mb-2">Name</label> |
| <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| <div class="mb-6"> |
| <label for="email" class="block text-gray-700 font-medium mb-2">Email</label> |
| <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| <div class="mb-6"> |
| <label for="phone" class="block text-gray-700 font-medium mb-2">Phone</label> |
| <input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| <div class="mb-6"> |
| <label for="message" class="block text-gray-700 font-medium mb-2">Message</label> |
| <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> |
| </div> |
| <button type="submit" class="btn-wind w-full py-3 rounded-lg text-white font-semibold">Send Message</button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <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"> |
| <span class="text-blue-400">WIND</span><span>WALLS</span> |
| </h3> |
| <p class="text-gray-400">Redefining outdoor spaces with premium wind protection solutions since 1972.</p> |
| </div> |
| <div> |
| <h4 class="font-bold mb-4">Products</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Expandable Domes</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Acoustic Sound Shells</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Wind Barriers</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Custom Solutions</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-bold mb-4">Industries</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Hospitality</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Events</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Residential</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Commercial</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-bold mb-4">Company</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Our Story</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</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-400 mb-4 md:mb-0">© 2023 Windwalls. All rights reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a> |
| <a href="#" class="text-gray-400 hover:text-white transition">Sitemap</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
| |
| <script> |
| |
| const mobileMenuButton = document.querySelector('.mobile-menu-button'); |
| const mobileMenu = document.querySelector('.mobile-menu'); |
| |
| mobileMenuButton.addEventListener('click', () => { |
| mobileMenu.classList.toggle('hidden'); |
| }); |
| |
| |
| function createWindParticles() { |
| const container = document.getElementById('windAnimation'); |
| const particleCount = 30; |
| |
| for (let i = 0; i < particleCount; i++) { |
| const particle = document.createElement('div'); |
| particle.classList.add('wind-particle'); |
| |
| |
| const size = Math.random() * 4 + 1; |
| particle.style.width = `${size}px`; |
| particle.style.height = `${size}px`; |
| |
| |
| const startX = Math.random() * 100; |
| const startY = Math.random() * 100; |
| particle.style.left = `${startX}%`; |
| particle.style.top = `${startY}%`; |
| |
| |
| const duration = Math.random() * 20 + 10; |
| particle.style.animationDuration = `${duration}s`; |
| |
| |
| const delay = Math.random() * 10; |
| particle.style.animationDelay = `-${delay}s`; |
| |
| container.appendChild(particle); |
| } |
| } |
| |
| |
| window.addEventListener('load', createWindParticles); |
| |
| |
| 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) { |
| |
| if (!mobileMenu.classList.contains('hidden')) { |
| mobileMenu.classList.add('hidden'); |
| } |
| |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| </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=Windwalls/windwalls" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |