File size: 37,438 Bytes
ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 9474a8f ea52eb3 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JuicePop - Fresh Fruit Juices</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=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
.hero-gradient {
background: #f8f8f8;
}
.juice-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);
}
.juice-card {
transition: all 0.3s ease;
}
.benefit-tag {
transition: all 0.2s ease;
}
.benefit-tag:hover {
transform: translateY(-2px);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.smooth-scroll {
scroll-behavior: smooth;
}
</style>
</head>
<body class="smooth-scroll">
<!-- Navigation -->
<nav class="bg-white sticky top-0 z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<a href="#" class="text-3xl font-bold text-gray-800">
Juice<span class="text-green-400">Pop</span>
</a>
</div>
<!-- Mobile menu button -->
<div class="md:hidden">
<button id="menu-btn" class="text-gray-500 hover:text-orange-500 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-8">
<a href="#home" class="text-gray-700 hover:text-orange-500">Home</a>
<a href="#menu" class="text-gray-700 hover:text-orange-500">Menu</a>
<a href="#about" class="text-gray-700 hover:text-orange-500">About</a>
<a href="#testimonials" class="text-gray-700 hover:text-orange-500">Testimonials</a>
<a href="#contact" class="text-gray-700 hover:text-orange-500">Contact</a>
</div>
<div class="hidden md:block">
<a href="#order" class="px-4 py-2 bg-orange-500 text-white rounded-full hover:bg-orange-600 transition">Order Now</a>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
<a href="#home" class="block py-2 text-gray-700 hover:text-orange-500">Home</a>
<a href="#menu" class="block py-2 text-gray-700 hover:text-orange-500">Menu</a>
<a href="#about" class="block py-2 text-gray-700 hover:text-orange-500">About</a>
<a href="#testimonials" class="block py-2 text-gray-700 hover:text-orange-500">Testimonials</a>
<a href="#contact" class="block py-2 text-gray-700 hover:text-orange-500">Contact</a>
<a href="#order" class="block mt-2 px-4 py-2 bg-orange-500 text-white rounded-full text-center hover:bg-orange-600 transition">Order Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient py-16">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">
Fresh. Simple. Delicious.
</h1>
<p class="text-gray-600 text-lg max-w-2xl mx-auto">
Cold-pressed juices & smoothies made with organic fruits and veggies.
</p>
<div class="mt-8">
<a href="#menu" class="px-6 py-3 bg-green-400 text-white rounded-full hover:bg-green-500 transition inline-block">
See Our Menu
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-2">Real Ingredients. Real Good.</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We keep it simple with organic, whole food ingredients.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto">
<div class="text-center">
<div class="w-16 h-16 bg-green-50 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-leaf text-green-400 text-2xl"></i>
</div>
<p class="text-gray-700 text-sm">Organic</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-green-50 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-heart text-green-400 text-2xl"></i>
</div>
<p class="text-gray-700 text-sm">No Added Sugar</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-green-50 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-bolt text-green-400 text-2xl"></i>
</div>
<p class="text-gray-700 text-sm">Cold-Pressed</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-green-50 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-recycle text-green-400 text-2xl"></i>
</div>
<p class="text-gray-700 text-sm">Sustainable</p>
</div>
</div>
</div>
</section>
<!-- Menu Section -->
<section id="menu" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800">Our Refreshing Menu</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto mt-4"></div>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">
Explore our handcrafted juices with size options. Icons show key benefits:
<span class="inline-flex items-center mx-1"><i class="fas fa-bolt text-yellow-500 mr-1"></i>Energy</span>
<span class="inline-flex items-center mx-1"><i class="fas fa-shield-alt text-blue-500 mr-1"></i>Immunity</span>
<span class="inline-flex items-center mx-1"><i class="fas fa-fire text-red-500 mr-1"></i>Anti-Inflammatory</span>
<span class="inline-flex items-center mx-1"><i class="fas fa-star text-purple-500 mr-1"></i>Superfood</span>
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Juice Card 1 -->
<div class="juice-card bg-white rounded-3xl overflow-hidden shadow-lg hover:shadow-2xl transition-all duration-300">
<div class="h-48 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-br from-yellow-200 to-orange-400 opacity-20"></div>
<div class="absolute top-4 right-4 text-5xl text-orange-400 opacity-30">
<i class="fas fa-pineapple"></i>
</div>
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Tropical Bliss"
class="w-full h-full object-cover scale-110 hover:scale-100 transition-transform duration-500">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Tropical Bliss</h3>
<div class="flex space-x-1">
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">
<i class="fas fa-bolt mr-1"></i> Energy
</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">
<i class="fas fa-shield-alt mr-1"></i> Immunity
</span>
</div>
</div>
<p class="text-gray-600 mb-3 text-sm">Pineapple, mango, orange, coconut water</p>
<div class="mb-4">
<div class="flex justify-between text-sm font-medium text-gray-700 mb-1">
<span>Small (12oz)</span>
<span>$4.99</span>
</div>
<div class="flex justify-between text-sm font-medium text-gray-700 mb-1">
<span>Medium (16oz)</span>
<span>$5.99</span>
</div>
<div class="flex justify-between text-sm font-medium text-gray-700 mb-3">
<span>Large (24oz)</span>
<span>$6.99</span>
</div>
</div>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">
<i class="fas fa-shopping-cart mr-2"></i>Add to Cart
</button>
</div>
</div>
<!-- Juice Card 2 -->
<div class="juice-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Berry Burst"
class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Berry Burst</h3>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-semibold">$6.49</span>
</div>
<p class="text-gray-600 mb-4">A powerful antioxidant mix of strawberries, blueberries, raspberries, and blackberries.</p>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Add to Cart</button>
</div>
</div>
<!-- Juice Card 3 -->
<div class="juice-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Green Detox"
class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Green Detox</h3>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-semibold">$5.49</span>
</div>
<p class="text-gray-600 mb-4">Kale, spinach, cucumber, green apple, and lemon for a cleansing boost.</p>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Add to Cart</button>
</div>
</div>
<!-- Juice Card 4 -->
<div class="juice-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Citrus Splash"
class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Citrus Splash</h3>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-semibold">$4.99</span>
</div>
<p class="text-gray-600 mb-4">A zesty combination of orange, grapefruit, lemon, and lime for vitamin C boost.</p>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Add to Cart</button>
</div>
</div>
<!-- Juice Card 5 -->
<div class="juice-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Watermelon Chill"
class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Watermelon Chill</h3>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-semibold">$5.29</span>
</div>
<p class="text-gray-600 mb-4">Refreshing watermelon with a hint of mint - perfect for hot summer days.</p>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Add to Cart</button>
</div>
</div>
<!-- Juice Card 6 -->
<div class="juice-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Carrot Sunshine"
class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Carrot Sunshine</h3>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-semibold">$4.79</span>
</div>
<p class="text-gray-600 mb-4">Sweet carrots blended with orange and ginger for a vitamin A powerhouse.</p>
<button class="w-full py-2 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Add to Cart</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#order" class="px-8 py-3 bg-orange-500 text-white rounded-full hover:bg-orange-600 transition inline-block">View Full Menu</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6 max-w-4xl text-center">
<h2 class="text-4xl font-bold text-gray-800 mb-8">Our Story</h2>
<div class="mb-12">
<img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="About JuicePop"
class="rounded-full w-48 h-48 object-cover mx-auto mb-8 shadow-lg">
<p class="text-xl text-gray-600 mb-6 leading-relaxed">
What started as a small farmers' market stand in 2015 has blossomed into JuicePop - your go-to for fresh,
flavorful juices that make healthy living delicious.
</p>
<p class="text-xl text-gray-600 mb-6 leading-relaxed">
Every bottle is cold-pressed to preserve nutrients and flavor, using only the freshest organic ingredients.
</p>
<p class="text-xl text-gray-600 leading-relaxed">
We're proud to serve our community while keeping sustainability at our core - from compostable packaging
to supporting local farmers.
</p>
</div>
<div class="bg-green-50 rounded-2xl p-8 inline-block">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Why Choose JuicePop?</h3>
<div class="grid grid-cols-2 md:grid-cols-3 gap-6">
<div class="text-center">
<div class="text-green-500 text-3xl mb-2">
<i class="fas fa-leaf"></i>
</div>
<p class="text-gray-700">Organic Ingredients</p>
</div>
<div class="text-center">
<div class="text-green-500 text-3xl mb-2">
<i class="fas fa-heart"></i>
</div>
<p class="text-gray-700">No Added Sugar</p>
</div>
<div class="text-center">
<div class="text-green-500 text-3xl mb-2">
<i class="fas fa-recycle"></i>
</div>
<p class="text-gray-700">Eco-Friendly</p>
</div>
</div>
</div>
</div>
</section>
<!-- Order Section -->
<section id="order" class="py-16 bg-orange-500 text-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold">Ready to Refresh?</h2>
<div class="w-20 h-1 bg-white mx-auto mt-4"></div>
<p class="mt-4 max-w-2xl mx-auto">Order online for pickup or delivery. First-time customers get 15% off!</p>
</div>
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Place Your Order</h3>
<form>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="name">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="email">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="phone">Phone</label>
<input type="tel" id="phone" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="juice">Select Juice</label>
<select id="juice" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
<option>Tropical Bliss</option>
<option>Berry Burst</option>
<option>Green Detox</option>
<option>Citrus Splash</option>
<option>Watermelon Chill</option>
<option>Carrot Sunshine</option>
</select>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="size">Size</label>
<div class="flex space-x-4">
<label class="inline-flex items-center">
<input type="radio" name="size" value="small" checked class="text-orange-500">
<span class="ml-2 text-gray-700">Small (12oz)</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="size" value="medium" class="text-orange-500">
<span class="ml-2 text-gray-700">Medium (16oz)</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="size" value="large" class="text-orange-500">
<span class="ml-2 text-gray-700">Large (24oz)</span>
</label>
</div>
</div>
<button type="submit" class="w-full py-3 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Place Order</button>
</form>
</div>
<div class="md:w-1/2 bg-orange-100 p-8 flex flex-col justify-center">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Store Hours & Locations</h3>
<div class="mb-6">
<h4 class="font-semibold text-gray-800 mb-2">Downtown</h4>
<p class="text-gray-600">123 Fresh Street<br>Open Mon-Sat: 7am-7pm</p>
</div>
<div class="mb-6">
<h4 class="font-semibold text-gray-800 mb-2">Westside</h4>
<p class="text-gray-600">456 Health Avenue<br>Open Mon-Fri: 8am-6pm</p>
</div>
<div>
<h4 class="font-semibold text-gray-800 mb-2">Delivery Options</h4>
<p class="text-gray-600">Available through UberEats, DoorDash, and our own delivery service within 5 miles.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Join Our Juice Club</h2>
<p class="text-gray-600 max-w-2xl mx-auto mb-8">
Sign up for our newsletter and get exclusive discounts, new flavor announcements, and health tips delivered to your inbox.
</p>
<form class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg border focus:outline-none focus:ring-2 focus:ring-orange-500">
<button type="submit" class="px-6 py-3 bg-orange-500 text-white rounded-r-lg hover:bg-orange-600 transition">Subscribe</button>
</form>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800">Get In Touch</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div>
<h3 class="text-xl font-semibold mb-4">Contact Information</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-medium">Our Locations</h4>
<p class="text-gray-600">123 Fresh Street, Downtown<br>456 Health Avenue, Westside</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">(555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">hello@juicepop.com</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-medium">Hours</h4>
<p class="text-gray-600">Monday-Friday: 7am-7pm<br>Saturday: 8am-6pm<br>Sunday: 9am-4pm</p>
</div>
</div>
</div>
<div class="mt-8">
<h3 class="text-xl font-semibold mb-4">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-orange-500 hover:bg-orange-500 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-orange-500 hover:bg-orange-500 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-orange-500 hover:bg-orange-500 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-orange-500 hover:bg-orange-500 hover:text-white transition">
<i class="fab fa-tiktok"></i>
</a>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-semibold mb-4">Send Us a Message</h3>
<form>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label class="block text-gray-700 mb-2" for="contact-name">Name</label>
<input type="text" id="contact-name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div>
<label class="block text-gray-700 mb-2" for="contact-email">Email</label>
<input type="email" id="contact-email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="contact-subject">Subject</label>
<input type="text" id="contact-subject" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="contact-message">Message</label>
<textarea id="contact-message" rows="4" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500"></textarea>
</div>
<button type="submit" class="px-6 py-3 bg-orange-500 text-white rounded-lg hover:bg-orange-600 transition">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 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">Juice<span class="text-orange-500">Pop</span></h3>
<p class="text-gray-400">
Fresh, delicious, and nutritious fruit juices to boost your health and energy.
</p>
</div>
<div>
<h4 class="font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#menu" class="text-gray-400 hover:text-white transition">Menu</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Our Juices</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Tropical Bliss</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Berry Burst</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Green Detox</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Citrus Splash</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Seasonal Specials</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">
Subscribe to get updates on new flavors and special offers.
</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg text-gray-800 focus:outline-none">
<button class="px-4 py-2 bg-orange-500 rounded-r-lg hover:bg-orange-600 transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-700 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 JuicePop. 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">FAQ</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for all links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
});
});
// Add animation to juice cards when they come into view
const juiceCards = document.querySelectorAll('.juice-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
juiceCards.forEach(card => {
card.style.opacity = 0;
card.style.transform = 'translateY(20px)';
card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
observer.observe(card);
});
// Form submission handling (simplified)
document.querySelectorAll('form').forEach(form => {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
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=vc3nt/juicepop" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |