File size: 38,593 Bytes
e721144 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 | <!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">
<!-- Wind Animation Particles -->
<div class="wind-animation" id="windAnimation"></div>
<!-- Navigation -->
<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>
<!-- Mobile Menu -->
<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>
<!-- Hero Section -->
<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">
<!-- Placeholder for hero video -->
<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>
<!-- Stats Section -->
<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>
<!-- Products 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">
<!-- Product 1 -->
<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>
<!-- Product 2 -->
<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>
<!-- Product 3 -->
<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>
<!-- Features 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>
<!-- Industries 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">
<!-- Industry 1 -->
<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>
<!-- Industry 2 -->
<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>
<!-- Industry 3 -->
<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>
<!-- Testimonials 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">
<!-- Testimonial 1 -->
<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>
<!-- Testimonial 2 -->
<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>
<!-- Testimonial 3 -->
<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>
<!-- About 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>
<!-- Contact 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 -->
<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>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Wind animation particles
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');
// Random size between 1px and 5px
const size = Math.random() * 4 + 1;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random starting position
const startX = Math.random() * 100;
const startY = Math.random() * 100;
particle.style.left = `${startX}%`;
particle.style.top = `${startY}%`;
// Random animation duration between 10s and 30s
const duration = Math.random() * 20 + 10;
particle.style.animationDuration = `${duration}s`;
// Random delay
const delay = Math.random() * 10;
particle.style.animationDelay = `-${delay}s`;
container.appendChild(particle);
}
}
// Initialize wind particles when page loads
window.addEventListener('load', createWindParticles);
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu if open
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> |