File size: 44,476 Bytes
f87f8f3 |
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 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ForestBounty | Premium Canned Mushrooms</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.title-font {
font-family: 'Playfair Display', serif;
}
.hero-pattern {
background-image: radial-gradient(rgba(0, 0, 0, 0.1) 2px, transparent 2px);
background-size: 40px 40px;
}
.mushroom-bg {
background-image: url('https://images.unsplash.com/photo-1516550893923-42d28e5677af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
}
.product-card:hover .product-overlay {
opacity: 1;
transform: translateY(0);
}
.nav-link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #4ade80;
transition: width .3s;
}
.nav-link:hover::after {
width: 100%;
}
.mushroom-spin {
animation: spin 15s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md 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">
<img src="https://cdn-icons-png.flaticon.com/512/2909/2909553.png" alt="ForestBounty Logo" class="h-10 w-10 mr-2 mushroom-spin">
<span class="title-font text-2xl font-bold text-green-700">ForestBounty</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-green-600">Home</a>
<a href="#products" class="nav-link text-gray-700 hover:text-green-600">Products</a>
<a href="#about" class="nav-link text-gray-700 hover:text-green-600">About</a>
<a href="#recipes" class="nav-link text-gray-700 hover:text-green-600">Recipes</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-green-600">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-700 focus:outline-none" id="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
<button class="hidden md:block bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full transition duration-300">
<i class="fas fa-shopping-cart mr-2"></i>Shop Now
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-white w-full px-6 py-4 border-t" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#home" class="text-gray-700 hover:text-green-600">Home</a>
<a href="#products" class="text-gray-700 hover:text-green-600">Products</a>
<a href="#about" class="text-gray-700 hover:text-green-600">About</a>
<a href="#recipes" class="text-gray-700 hover:text-green-600">Recipes</a>
<a href="#contact" class="text-gray-700 hover:text-green-600">Contact</a>
<button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full transition duration-300 w-full">
<i class="fas fa-shopping-cart mr-2"></i>Shop Now
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-pattern relative overflow-hidden">
<div class="container mx-auto px-6 py-20 md:py-32 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="title-font text-4xl md:text-6xl font-bold text-gray-800 mb-6">
Nature's Bounty in Every <span class="text-green-600">Can</span>
</h1>
<p class="text-lg text-gray-600 mb-8">
Hand-picked, sustainably sourced mushrooms preserved at the peak of freshness. Perfect for gourmet meals anytime, anywhere.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-green-600 hover:bg-green-700 text-white px-8 py-3 rounded-full font-medium transition duration-300">
Explore Products
</button>
<button class="border-2 border-green-600 text-green-600 hover:bg-green-50 px-8 py-3 rounded-full font-medium transition duration-300">
Watch Our Story <i class="fas fa-play-circle ml-2"></i>
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="mushroom-bg h-80 md:h-96 rounded-2xl shadow-xl transform rotate-3"></div>
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fas fa-leaf text-green-600 text-xl"></i>
</div>
<div>
<p class="font-bold text-gray-800">100% Organic</p>
<p class="text-sm text-gray-600">Certified mushrooms</p>
</div>
</div>
</div>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-16 bg-gradient-to-t from-white to-transparent"></div>
</section>
<!-- Features Section -->
<section class="bg-white py-16">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-4">
Why Choose ForestBounty?
</h2>
<div class="w-24 h-1 bg-green-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl text-center hover:shadow-lg transition duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-tree text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Sustainable Harvesting</h3>
<p class="text-gray-600">
We carefully harvest our mushrooms to ensure forest ecosystems remain healthy and productive for generations to come.
</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl text-center hover:shadow-lg transition duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-clock text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Peak Freshness</h3>
<p class="text-gray-600">
Our proprietary canning process locks in nutrients and flavor within hours of harvest for maximum quality.
</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl text-center hover:shadow-lg transition duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-medal text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Gourmet Quality</h3>
<p class="text-gray-600">
Preferred by chefs worldwide, our mushrooms deliver restaurant-quality results in your home kitchen.
</p>
</div>
</div>
</div>
</section>
<!-- Products Section -->
<section id="products" class="bg-gray-50 py-16">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-4">
Our Premium Selection
</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Discover our range of hand-selected mushroom varieties, each with its own unique flavor profile and culinary uses.
</p>
<div class="w-24 h-1 bg-green-600 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Product 1 -->
<div class="product-card bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1606813907291-d86efa9b94db?ixlib=rb-4.0.3&auto=format&fit=crop&w=1352&q=80');"></div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Porcini</h3>
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded">BESTSELLER</span>
</div>
<p class="text-gray-600 text-sm mb-4">Rich, nutty flavor perfect for risottos and sauces.</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$6.99</span>
<button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full text-sm transition duration-300">
Add to Cart
</button>
</div>
</div>
<div class="product-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300">
<button class="bg-white text-green-600 px-6 py-3 rounded-full font-medium hover:bg-green-50 transition duration-300">
Quick View
</button>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1605559422743-6f7a399115e3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Chanterelle</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2.5 py-0.5 rounded">NEW</span>
</div>
<p class="text-gray-600 text-sm mb-4">Delicate and fruity with a slight peppery taste.</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$7.49</span>
<button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full text-sm transition duration-300">
Add to Cart
</button>
</div>
</div>
<div class="product-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300">
<button class="bg-white text-green-600 px-6 py-3 rounded-full font-medium hover:bg-green-50 transition duration-300">
Quick View
</button>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1512428813834-c702c2622a3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Shiitake</h3>
<p class="text-gray-600 text-sm mb-4">Meaty texture with a rich, smoky flavor.</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$5.99</span>
<button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full text-sm transition duration-300">
Add to Cart
</button>
</div>
</div>
<div class="product-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300">
<button class="bg-white text-green-600 px-6 py-3 rounded-full font-medium hover:bg-green-50 transition duration-300">
Quick View
</button>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1533134242443-9485b1f9e9e3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Morel</h3>
<p class="text-gray-600 text-sm mb-4">Highly prized with a distinctive honeycomb texture.</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$9.99</span>
<button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full text-sm transition duration-300">
Add to Cart
</button>
</div>
</div>
<div class="product-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300">
<button class="bg-white text-green-600 px-6 py-3 rounded-full font-medium hover:bg-green-50 transition duration-300">
Quick View
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-green-600 text-green-600 hover:bg-green-50 px-8 py-3 rounded-full font-medium transition duration-300">
View All Products
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="bg-white py-16">
<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="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-6">
Our Mushroom Journey
</h2>
<p class="text-gray-600 mb-6">
Founded in 1995 by master forager Elias Green, ForestBounty began as a small family operation in the Pacific Northwest. What started as a passion for wild mushrooms has grown into a company dedicated to bringing the finest preserved mushrooms to kitchens around the world.
</p>
<p class="text-gray-600 mb-8">
Today, we work with a network of expert foragers who share our commitment to sustainable harvesting practices. Each can represents hours of careful selection and our proprietary preservation process that maintains texture, flavor, and nutritional value.
</p>
<div class="flex space-x-4">
<div class="text-center">
<div class="text-3xl font-bold text-green-600">25+</div>
<div class="text-gray-600">Years Experience</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-green-600">100%</div>
<div class="text-gray-600">Organic Certified</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-green-600">12</div>
<div class="text-gray-600">Mushroom Varieties</div>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="grid grid-cols-2 gap-4">
<div class="h-64 bg-cover bg-center rounded-lg" style="background-image: url('https://images.unsplash.com/photo-1605000797499-95e51c0b72bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="h-64 bg-cover bg-center rounded-lg" style="background-image: url('https://images.unsplash.com/photo-1582731593059-3f0d1a3d238f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="h-64 bg-cover bg-center rounded-lg" style="background-image: url('https://images.unsplash.com/photo-1549608276-644bffeb82a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="h-64 bg-cover bg-center rounded-lg" style="background-image: url('https://images.unsplash.com/photo-1512428813834-c702c2622a3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
</div>
<div class="absolute -bottom-6 -right-6 bg-white p-6 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="bg-green-100 p-4 rounded-full mr-4">
<i class="fas fa-award text-green-600 text-2xl"></i>
</div>
<div>
<p class="font-bold text-gray-800">2023 Golden Spore Award</p>
<p class="text-sm text-gray-600">Best Canned Mushroom Producer</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Recipes Section -->
<section id="recipes" class="bg-gray-50 py-16">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-4">
Mushroom Inspiration
</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Discover delicious ways to use our canned mushrooms in your cooking.
</p>
<div class="w-24 h-1 bg-green-600 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Recipe 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1518779578993-ec3579fee39f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded mr-2">30 min</span>
<span class="text-gray-500 text-sm"><i class="fas fa-utensils mr-1"></i> Main Course</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Creamy Mushroom Pasta</h3>
<p class="text-gray-600 text-sm mb-4">A luxurious pasta dish featuring our porcini mushrooms in a creamy garlic sauce.</p>
<button class="text-green-600 hover:text-green-700 font-medium flex items-center">
View Recipe <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Recipe 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1603105037880-880cd4edfb0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded mr-2">20 min</span>
<span class="text-gray-500 text-sm"><i class="fas fa-bread-slice mr-1"></i> Appetizer</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Mushroom Bruschetta</h3>
<p class="text-gray-600 text-sm mb-4">Our chanterelles shine in this elegant twist on the classic Italian starter.</p>
<button class="text-green-600 hover:text-green-700 font-medium flex items-center">
View Recipe <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Recipe 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1603105037880-880cd4edfb0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded mr-2">45 min</span>
<span class="text-gray-500 text-sm"><i class="fas fa-drumstick-bite mr-1"></i> Meat Dish</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Beef & Mushroom Stew</h3>
<p class="text-gray-600 text-sm mb-4">Hearty comfort food featuring our shiitake mushrooms slow-cooked with tender beef.</p>
<button class="text-green-600 hover:text-green-700 font-medium flex items-center">
View Recipe <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-green-600 text-green-600 hover:bg-green-50 px-8 py-3 rounded-full font-medium transition duration-300">
Browse All Recipes
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="bg-white py-16">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-4">
What Our Customers Say
</h2>
<div class="w-24 h-1 bg-green-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<span class="text-gray-500 text-sm">2 days ago</span>
</div>
<p class="text-gray-600 mb-6">
"The porcini mushrooms are incredible! The flavor is so intense, just like fresh. I use them in risottos and they elevate the dish to restaurant quality."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold text-gray-800">Sarah J.</p>
<p class="text-sm text-gray-600">Home Chef, Portland</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<span class="text-gray-500 text-sm">1 week ago</span>
</div>
<p class="text-gray-600 mb-6">
"As a professional chef, I demand the best ingredients. ForestBounty's mushrooms consistently deliver exceptional quality that I can rely on for my menu."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold text-gray-800">Michael T.</p>
<p class="text-sm text-gray-600">Executive Chef, Seattle</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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-half-alt"></i>
</div>
<span class="text-gray-500 text-sm">3 weeks ago</span>
</div>
<p class="text-gray-600 mb-6">
"I love having these on hand for quick meals. The morels are particularly special - so hard to find fresh where I live, but these canned ones are fantastic."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Jennifer L." class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold text-gray-800">Jennifer L.</p>
<p class="text-sm text-gray-600">Food Blogger, Chicago</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="bg-green-700 py-16">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="title-font text-3xl md:text-4xl font-bold text-white mb-6">
Join Our Mushroom Community
</h2>
<p class="text-green-100 mb-8">
Subscribe to our newsletter for exclusive recipes, seasonal offers, and mushroom foraging tips delivered to your inbox.
</p>
<div class="flex flex-col sm:flex-row max-w-md mx-auto sm:max-w-xl">
<input type="email" placeholder="Your email address" class="px-6 py-4 rounded-l-full sm:rounded-r-none rounded-r-full mb-2 sm:mb-0 flex-grow focus:outline-none">
<button class="bg-green-800 hover:bg-green-900 text-white px-8 py-4 rounded-r-full sm:rounded-l-none rounded-l-full font-medium transition duration-300">
Subscribe
</button>
</div>
<p class="text-green-200 text-sm mt-4">
We respect your privacy. Unsubscribe at any time.
</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="bg-white py-16">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="title-font text-3xl md:text-4xl font-bold text-gray-800 mb-6">
Get In Touch
</h2>
<p class="text-gray-600 mb-8">
Have questions about our products or need cooking advice? Our mushroom experts are here to help.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-green-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Our Location</h4>
<p class="text-gray-600">123 Forest Lane, Portland, OR 97201</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-green-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Call Us</h4>
<p class="text-gray-600">(503) 555-0199</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-green-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email Us</h4>
<p class="text-gray-600">[email protected]</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-800 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 hover:bg-green-100 w-10 h-10 rounded-full flex items-center justify-center text-gray-600 hover:text-green-600 transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-green-100 w-10 h-10 rounded-full flex items-center justify-center text-gray-600 hover:text-green-600 transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-green-100 w-10 h-10 rounded-full flex items-center justify-center text-gray-600 hover:text-green-600 transition duration-300">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-green-100 w-10 h-10 rounded-full flex items-center justify-center text-gray-600 hover:text-green-600 transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl">
<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 text-sm 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-green-600 focus:border-transparent">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 text-sm 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-green-600 focus:border-transparent">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 text-sm font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-green-600 focus:border-transparent">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 text-sm 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-green-600 focus:border-transparent"></textarea>
</div>
<button type="submit" class="w-full bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<img src="https://cdn-icons-png.flaticon.com/512/2909/2909553.png" alt="ForestBounty Logo" class="h-8 w-8 mr-2">
<span class="title-font text-xl font-bold text-white">ForestBounty</span>
</div>
<p class="text-gray-400 mb-4">
Bringing the forest's finest mushrooms to your table since 1995.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#products" class="text-gray-400 hover:text-white transition duration-300">Products</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="#recipes" class="text-gray-400 hover:text-white transition duration-300">Recipes</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Products</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Porcini Mushrooms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Chanterelle Mushrooms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shiitake Mushrooms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Morel Mushrooms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">View All</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">
Subscribe to get updates on new products and recipes.
</p>
<div class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg bg-gray-800 text-white focus:outline-none focus:ring-2 focus:ring-green-600 w-full">
<button class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 ForestBounty. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Shipping Policy</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-green-600 text-white w-12 h-12 rounded-full shadow-lg hidden items-center justify-center transition duration-300 hover:bg-green-700">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
backToTopButton.classList.add('flex');
} else {
backToTopButton.classList.add('hidden');
backToTopButton.classList.remove('flex');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
// Smooth scrolling for navigation 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
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
// Product quick view simulation
const quickViewButtons = document.querySelectorAll('.product-overlay button');
quickViewButtons.forEach(button => {
button.addEventListener('click', () => {
alert('Product quick view feature would open here with more details!');
});
});
</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=Linkmkb/kjhvy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |