Spaces:
Running
Running
File size: 37,523 Bytes
2fd2641 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horizon Architects | Modern Design 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&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #4ed7f1 0%, #6fe6fc 50%, #a8f1ff 100%);
}
.project-card:hover .project-overlay {
opacity: 1;
transform: translateY(0);
}
.project-overlay {
transition: all 0.3s ease;
opacity: 0;
transform: translateY(20px);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #fffad8;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.floating-shape {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white shadow-md">
<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="text-2xl font-bold" style="color: #4ed7f1;">Horizon</span>
<span class="text-2xl font-bold" style="color: #fffad8;">Architects</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-800 hover:text-blue-500 px-3 py-2 text-sm font-medium">Home</a>
<a href="#projects" class="nav-link text-gray-800 hover:text-blue-500 px-3 py-2 text-sm font-medium">Projects</a>
<a href="#services" class="nav-link text-gray-800 hover:text-blue-500 px-3 py-2 text-sm font-medium">Services</a>
<a href="#about" class="nav-link text-gray-800 hover:text-blue-500 px-3 py-2 text-sm font-medium">About</a>
<a href="#contact" class="nav-link text-gray-800 hover:text-blue-500 px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-800 hover:text-blue-500 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="gradient-bg pt-32 pb-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-6">Designing the Future of Living Spaces</h1>
<p class="text-lg text-white mb-8">We create sustainable, innovative architectural solutions that blend functionality with aesthetic excellence.</p>
<div class="flex flex-wrap gap-4">
<a href="#projects" class="px-8 py-3 bg-white text-blue-500 font-semibold rounded-full hover:bg-gray-100 transition duration-300">Our Projects</a>
<a href="#contact" class="px-8 py-3 border-2 border-white text-white font-semibold rounded-full hover:bg-white hover:text-blue-500 transition duration-300">Get in Touch</a>
</div>
</div>
<div class="relative">
<div class="floating-shape">
<img src="https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Modern Architecture" class="rounded-2xl shadow-2xl w-full h-auto">
</div>
<div class="absolute -bottom-6 -right-6 bg-[#fffad8] p-4 rounded-lg shadow-lg hidden md:block">
<p class="text-gray-800 font-bold">25+ Years of Experience</p>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<p class="text-4xl font-bold mb-2" style="color: #4ed7f1;">150+</p>
<p class="text-gray-600">Projects Completed</p>
</div>
<div class="p-6">
<p class="text-4xl font-bold mb-2" style="color: #6fe6fc;">25</p>
<p class="text-gray-600">Awards Won</p>
</div>
<div class="p-6">
<p class="text-4xl font-bold mb-2" style="color: #a8f1ff;">50+</p>
<p class="text-gray-600">Happy Clients</p>
</div>
<div class="p-6">
<p class="text-4xl font-bold mb-2" style="color: #fffad8;">15</p>
<p class="text-gray-600">Countries</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Featured Projects</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Explore our portfolio of innovative architectural designs that redefine spaces and experiences.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Modern Villa" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center" style="background-color: rgba(78, 215, 241, 0.9);">
<div class="text-center p-6">
<h3 class="text-white text-xl font-bold mb-2">Seaside Villa</h3>
<p class="text-white mb-4">Malibu, California</p>
<a href="#" class="inline-block px-4 py-2 bg-white text-blue-500 rounded-full font-medium">View Details</a>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-lg font-bold text-gray-800">Seaside Villa</h3>
<span class="text-sm px-3 py-1 rounded-full" style="background-color: #fffad8;">Residential</span>
</div>
<p class="text-gray-600">A stunning modern villa with panoramic ocean views and sustainable design elements.</p>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1493809842364-78817add7ffb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Office Building" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center" style="background-color: rgba(111, 230, 252, 0.9);">
<div class="text-center p-6">
<h3 class="text-white text-xl font-bold mb-2">Horizon Tower</h3>
<p class="text-white mb-4">New York, USA</p>
<a href="#" class="inline-block px-4 py-2 bg-white text-blue-500 rounded-full font-medium">View Details</a>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-lg font-bold text-gray-800">Horizon Tower</h3>
<span class="text-sm px-3 py-1 rounded-full" style="background-color: #a8f1ff;">Commercial</span>
</div>
<p class="text-gray-600">A 45-story commercial tower featuring innovative green architecture in the heart of Manhattan.</p>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Museum" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center" style="background-color: rgba(168, 241, 255, 0.9);">
<div class="text-center p-6">
<h3 class="text-white text-xl font-bold mb-2">Modern Art Museum</h3>
<p class="text-white mb-4">Berlin, Germany</p>
<a href="#" class="inline-block px-4 py-2 bg-white text-blue-500 rounded-full font-medium">View Details</a>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-lg font-bold text-gray-800">Modern Art Museum</h3>
<span class="text-sm px-3 py-1 rounded-full" style="background-color: #6fe6fc;">Cultural</span>
</div>
<p class="text-gray-600">An award-winning museum design that blends contemporary aesthetics with functional exhibition spaces.</p>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block px-8 py-3 rounded-full font-semibold" style="background-color: #4ed7f1; color: white;">View All Projects</a>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Services</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Comprehensive architectural solutions tailored to your vision and needs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300" style="background-color: #f7fdfe;">
<div class="w-16 h-16 rounded-full flex items-center justify-center mb-6" style="background-color: #fffad8;">
<i class="fas fa-home text-2xl" style="color: #4ed7f1;"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Residential Design</h3>
<p class="text-gray-600 mb-4">Custom home designs that reflect your lifestyle while incorporating sustainable and innovative solutions.</p>
<a href="#" class="inline-flex items-center font-medium" style="color: #4ed7f1;">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 2 -->
<div class="p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300" style="background-color: #f0fafd;">
<div class="w-16 h-16 rounded-full flex items-center justify-center mb-6" style="background-color: #a8f1ff;">
<i class="fas fa-building text-2xl" style="color: #6fe6fc;"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Commercial Architecture</h3>
<p class="text-gray-600 mb-4">Innovative commercial spaces designed to enhance productivity, brand identity, and user experience.</p>
<a href="#" class="inline-flex items-center font-medium" style="color: #6fe6fc;">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 3 -->
<div class="p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300" style="background-color: #e8f7fc;">
<div class="w-16 h-16 rounded-full flex items-center justify-center mb-6" style="background-color: #6fe6fc;">
<i class="fas fa-leaf text-2xl" style="color: #a8f1ff;"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Sustainable Design</h3>
<p class="text-gray-600 mb-4">Eco-friendly architectural solutions that reduce environmental impact while maintaining aesthetic appeal.</p>
<a href="#" class="inline-flex items-center font-medium" style="color: #a8f1ff;">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-800 mb-6">About Horizon Architects</h2>
<p class="text-lg text-gray-600 mb-6">Founded in 1998, Horizon Architects has been at the forefront of innovative architectural design, creating spaces that inspire and endure.</p>
<p class="text-lg text-gray-600 mb-8">Our team of award-winning architects combines technical expertise with creative vision to deliver exceptional results for clients worldwide.</p>
<div class="grid grid-cols-2 gap-6 mb-8">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #4ed7f1;">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Innovative Solutions</h4>
<p class="text-gray-600">Cutting-edge designs that push boundaries</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #6fe6fc;">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Client-Centric Approach</h4>
<p class="text-gray-600">Tailored solutions for your unique needs</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #a8f1ff;">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Sustainable Practices</h4>
<p class="text-gray-600">Environmentally responsible designs</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #fffad8;">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Global Experience</h4>
<p class="text-gray-600">Projects across 15 countries</p>
</div>
</div>
</div>
<a href="#contact" class="inline-block px-8 py-3 rounded-full font-semibold" style="background-color: #4ed7f1; color: white;">Get in Touch</a>
</div>
<div class="relative">
<div class="grid grid-cols-2 gap-4">
<div class="mt-8">
<img src="https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Architects working" class="rounded-lg shadow-lg w-full h-64 object-cover">
</div>
<div>
<img src="https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Architectural model" class="rounded-lg shadow-lg w-full h-64 object-cover">
</div>
<div>
<img src="https://images.unsplash.com/photo-1600566752227-8f3bcdbc37d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Architect drawing" class="rounded-lg shadow-lg w-full h-64 object-cover">
</div>
<div class="mt-8">
<img src="https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Office space" class="rounded-lg shadow-lg w-full h-64 object-cover">
</div>
</div>
<div class="absolute -bottom-6 -left-6 bg-[#fffad8] p-6 rounded-lg shadow-lg hidden lg:block">
<p class="text-gray-800 font-bold text-lg">"Design is not just what it looks like. Design is how it works."</p>
<p class="text-gray-600 mt-2">- Steve Jobs</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 gradient-bg text-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">What Our Clients Say</h2>
<p class="text-lg max-w-2xl mx-auto">Hear from those who have experienced our architectural expertise firsthand.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-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/43.jpg" alt="Sarah Johnson" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm opacity-80">CEO, TechSolutions</p>
</div>
</div>
<p class="mb-6">"Horizon Architects transformed our corporate headquarters into a space that perfectly reflects our brand identity while improving employee productivity and wellbeing."</p>
<div class="flex" style="color: #fffad8;">
<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="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-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 Chen" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-sm opacity-80">Homeowner</p>
</div>
</div>
<p class="mb-6">"Working with Horizon was a dream. They listened to our needs and created a home that exceeded all our expectations. The attention to detail was remarkable."</p>
<div class="flex" style="color: #fffad8;">
<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="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-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="Emma Rodriguez" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Emma Rodriguez</h4>
<p class="text-sm opacity-80">Director, City Arts Council</p>
</div>
</div>
<p class="mb-6">"The cultural center Horizon designed for us has become an iconic landmark. Their ability to blend functionality with artistic expression is unparalleled."</p>
<div class="flex" style="color: #fffad8;">
<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>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Let's Build Something Amazing Together</h2>
<p class="text-lg text-gray-600 mb-8">Ready to start your architectural project? Get in touch with our team to discuss your vision and how we can bring it to life.</p>
<div class="space-y-6 mb-8">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #4ed7f1;">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Our Office</h4>
<p class="text-gray-600">123 Design Avenue, Creative District, CA 90210</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #6fe6fc;">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Call Us</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1 mr-4" style="color: #a8f1ff;">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email Us</h4>
<p class="text-gray-600">hello@horizonarchitects.com</p>
</div>
</div>
</div>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full flex items-center justify-center" style="background-color: #4ed7f1; color: white;">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full flex items-center justify-center" style="background-color: #6fe6fc; color: white;">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full flex items-center justify-center" style="background-color: #a8f1ff; color: white;">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full flex items-center justify-center" style="background-color: #fffad8; color: #4ed7f1;">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<h3 class="text-xl font-bold text-gray-800 mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2" style="focus:ring-color: #4ed7f1;">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2" style="focus:ring-color: #6fe6fc;">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2" style="focus:ring-color: #a8f1ff;">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2" style="focus:ring-color: #fffad8;"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 rounded-lg font-semibold text-white transition duration-300" style="background-color: #4ed7f1; hover:bg-color: #3bc3e0;">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8" style="background-color: #fffad8;">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-2xl font-bold text-gray-800 mb-4">Stay Updated with Our Latest Projects</h2>
<p class="text-gray-600 mb-8">Subscribe to our newsletter for insights, project updates, and architectural inspiration.</p>
<form class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2" style="focus:ring-color: #4ed7f1;">
<button type="submit" class="px-6 py-3 rounded-lg font-semibold text-white transition duration-300" style="background-color: #4ed7f1; hover:bg-color: #3bc3e0;">
Subscribe
</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 sm:px-6 lg:px-8 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-6">
<span class="text-2xl font-bold" style="color: #4ed7f1;">Horizon</span>
<span class="text-2xl font-bold" style="color: #fffad8;">Architects</span>
</div>
<p class="text-gray-400 mb-4">Creating architectural masterpieces that stand the test of time.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#projects" class="text-gray-400 hover:text-white">Projects</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Residential Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Commercial Architecture</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Interior Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Urban Planning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Sustainable Design</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact Info</h4>
<address class="not-italic text-gray-400 space-y-2">
<p>123 Design Avenue</p>
<p>Creative District, CA 90210</p>
<p>United States</p>
<p>Phone: +1 (555) 123-4567</p>
<p>Email: hello@horizonarchitects.com</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-400 mb-4 md:mb-0">© 2023 Horizon Architects. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('button[aria-controls="mobile-menu"]').addEventListener('click', function() {
// You would implement mobile menu functionality here
alert('Mobile menu would open here in a full implementation.');
});
// 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) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Simple form submission handler (would be replaced with actual form submission in production)
document.querySelectorAll('form').forEach(form => {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Form submission would be handled here in a full implementation.');
this.reset();
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=chatkenneth/demo-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |