Spaces:
Running
Running
File size: 32,890 Bytes
7bbb6d7 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>River and Vine | Mindful Living</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;500;600&family=Source+Sans+3:wght@300;400;500&display=swap');
body {
font-family: 'Source Sans 3', sans-serif;
background-color: #f9f7f3;
color: #3a3a3a;
}
.hero-image {
background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
url('https://images.unsplash.com/photo-1476231682823-32ce5e0d41e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.playfair {
font-family: 'Playfair Display', serif;
}
.text-shadow {
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.transition-slow {
transition: all 0.3s ease;
}
.wave-divider {
height: 150px;
overflow: hidden;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white bg-opacity-90 backdrop-blur-sm fixed w-full z-10 shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-24 items-center">
<div class="flex-shrink-0 flex items-center">
<a href="#" class="text-2xl playfair font-semibold text-green-800">River & Vine</a>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#" class="text-green-800 hover:text-green-600 px-3 py-2 transition-slow">Shop</a>
<a href="#" class="text-green-800 hover:text-green-600 px-3 py-2 transition-slow">Mind & Soul</a>
<a href="#" class="text-green-800 hover:text-green-600 px-3 py-2 transition-slow">Inspiration</a>
<a href="#" class="text-green-800 hover:text-green-600 px-3 py-2 transition-slow">About</a>
<a href="#" class="bg-green-700 hover:bg-green-600 text-white px-4 py-2 rounded-md transition-slow">Journal</a>
</div>
</div>
<div class="hidden md:block">
<div class="ml-4 flex items-center md:ml-6 space-x-4">
<button class="text-green-800 hover:text-green-600">
<i class="fas fa-search"></i>
</button>
<button class="text-green-800 hover:text-green-600">
<i class="fas fa-user"></i>
</button>
<button class="text-green-800 hover:text-green-600 relative">
<i class="fas fa-shopping-bag"></i>
<span class="absolute -top-2 -right-2 bg-green-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span>
</button>
</div>
</div>
<div class="md:hidden">
<button class="text-green-800">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-image h-screen flex items-center justify-center relative pt-24">
<div class="absolute inset-0 bg-gradient-to-t from-white via-white/30 to-transparent"></div>
<div class="text-center px-4 z-10 max-w-4xl mx-auto">
<h1 class="playfair text-5xl md:text-6xl font-medium text-green-900 mb-6 text-shadow">Mindful Living</h1>
<p class="text-xl md:text-2xl text-green-800 mb-8">Nurturing body, mind, and soul through restorative self-care and intentional living</p>
<div class="space-x-4">
<a href="#" class="bg-green-700 hover:bg-green-600 text-white px-6 py-3 rounded-md text-lg transition-slow inline-block">Explore Products</a>
<a href="#" class="border-2 border-green-700 text-green-700 hover:bg-green-700 hover:text-white px-6 py-3 rounded-md text-lg transition-slow inline-block">Learn More</a>
</div>
</div>
</section>
<!-- Wave Divider -->
<div class="wave-divider bg-white">
<svg viewBox="0 0 1200 120" preserveAspectRatio="none" class="w-full h-full">
<path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="#4b7b52"></path>
<path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="#4b7b52"></path>
<path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="#4b7b52"></path>
</svg>
</div>
<!-- Featured Categories -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="playfair text-3xl md:text-4xl text-center text-green-900 mb-12">Nourish Your Whole Self</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Body -->
<div class="bg-green-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg transition-slow">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1597250870111-7e344b577c1f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');"></div>
<div class="p-6">
<h3 class="playfair text-xl text-green-800 mb-2">For Your Body</h3>
<p class="text-green-700 mb-4">Restorative products to refresh and rejuvenate your physical being</p>
<a href="#" class="text-green-600 hover:text-green-800 font-medium flex items-center transition-slow">
Explore <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Mind -->
<div class="bg-blue-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg transition-slow">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');"></div>
<div class="p-6">
<h3 class="playfair text-xl text-blue-800 mb-2">For Your Mind</h3>
<p class="text-blue-700 mb-4">Tools and resources for mental clarity and emotional well-being</p>
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center transition-slow">
Explore <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Soul -->
<div class="bg-amber-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg transition-slow">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2022&q=80');"></div>
<div class="p-6">
<h3 class="playfair text-xl text-amber-800 mb-2">For Your Soul</h3>
<p class="text-amber-700 mb-4">Inspiration and practices to nourish your inner being</p>
<a href="#" class="text-amber-600 hover:text-amber-800 font-medium flex items-center transition-slow">
Explore <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="py-16 bg-green-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="playfair text-3xl md:text-4xl text-green-900 mb-4">Our Restorative Essentials</h2>
<p class="text-green-700 max-w-2xl mx-auto">Thoughtfully crafted products to support your mindful living journey</p>
</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-lg overflow-hidden shadow-md transition-slow">
<div class="relative">
<img src="https://images.unsplash.com/photo-1596755094514-87a40ffad32b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=988&q=80" alt="Lavender Mineral Soak" class="w-full h-64 object-cover">
<span class="absolute top-4 right-4 bg-green-700 text-white text-xs px-2 py-1 rounded-full">BESTSELLER</span>
</div>
<div class="p-4">
<h3 class="playfair text-lg text-green-800 mb-1">Lavender Mineral Soak</h3>
<p class="text-green-600 text-sm mb-2">For deep relaxation</p>
<div class="flex items-center mb-2">
<div class="flex text-amber-400">
<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-xs ml-1">(128)</span>
</div>
<p class="text-green-900 font-medium mb-4">$24.00</p>
<button class="w-full bg-green-700 hover:bg-green-600 text-white py-2 rounded-md transition-slow">Add to Bag</button>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-slow">
<div class="relative">
<img src="https://images.unsplash.com/photo-1607619056574-7b8d3ee536b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mindful ADHD Workbook" class="w-full h-64 object-cover">
</div>
<div class="p-4">
<h3 class="playfair text-lg text-green-800 mb-1">Mindful ADHD Workbook</h3>
<p class="text-green-600 text-sm mb-2">Tools for focus & calm</p>
<div class="flex items-center mb-2">
<div class="flex text-amber-400">
<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-xs ml-1">(97)</span>
</div>
<p class="text-green-900 font-medium mb-4">$18.00</p>
<button class="w-full bg-green-700 hover:bg-green-600 text-white py-2 rounded-md transition-slow">Add to Bag</button>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-slow">
<div class="relative">
<img src="https://images.unsplash.com/photo-1605000797499-2059c35a0dc4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Forest Bath Tea" class="w-full h-64 object-cover">
<span class="absolute top-4 right-4 bg-green-700 text-white text-xs px-2 py-1 rounded-full">NEW</span>
</div>
<div class="p-4">
<h3 class="playfair text-lg text-green-800 mb-1">Forest Bath Tea</h3>
<p class="text-green-600 text-sm mb-2">Earthy & grounding</p>
<div class="flex items-center mb-2">
<div class="flex text-amber-400">
<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="far fa-star"></i>
</div>
<span class="text-gray-500 text-xs ml-1">(42)</span>
</div>
<p class="text-green-900 font-medium mb-4">$22.00</p>
<button class="w-full bg-green-700 hover:bg-green-600 text-white py-2 rounded-md transition-slow">Add to Bag</button>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-slow">
<div class="relative">
<img src="https://images.unsplash.com/photo-1511994298241-608e28f14fde?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Meditation Guide" class="w-full h-64 object-cover">
</div>
<div class="p-4">
<h3 class="playfair text-lg text-green-800 mb-1">Morning Meditation Guide</h3>
<p class="text-green-600 text-sm mb-2">Digital download</p>
<div class="flex items-center mb-2">
<div class="flex text-amber-400">
<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-xs ml-1">(156)</span>
</div>
<p class="text-green-900 font-medium mb-4">$12.00</p>
<button class="w-full bg-green-700 hover:bg-green-600 text-white py-2 rounded-md transition-slow">Add to Bag</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block border-2 border-green-700 text-green-700 hover:bg-green-700 hover:text-white px-6 py-3 rounded-md transition-slow">View All Products</a>
</div>
</div>
</section>
<!-- Mindful Living Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:flex items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
<h2 class="playfair text-3xl md:text-4xl text-green-900 mb-6">The River & Vine Philosophy</h2>
<p class="text-green-800 mb-6">We believe that mindful living begins with honoring the natural rhythms of your body, mind, and soul. Just as a river flows and a vine grows, your wellness journey is about finding balance between movement and stillness.</p>
<p class="text-green-800 mb-6">Our carefully curated products and resources are designed to help you create sacred spaces for rest, reflection, and rejuvenation in your daily life.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-green-100 flex items-center justify-center">
<i class="fas fa-leaf text-green-600 text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-green-800">Natural ingredients sourced with care and intention</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-green-100 flex items-center justify-center">
<i class="fas fa-heart text-green-600 text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-green-800">Mindful practices to nourish your whole being</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-green-100 flex items-center justify-center">
<i class="fas fa-hand-holding-heart text-green-600 text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-green-800">Ethical production that honors people and planet</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="bg-green-50 rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1544376798-89aa71b6aee9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mindful living" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
</section>
<!-- Free Resources -->
<section class="py-16 bg-green-800 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="playfair text-3xl md:text-4xl mb-4">Free Mindful Living Resources</h2>
<p class="max-w-2xl mx-auto opacity-90">Begin your journey with our complimentary guides and practices</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Resource 1 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-blur-sm border border-white border-opacity-20">
<div class="h-12 w-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-4">
<i class="fas fa-cloud text-xl"></i>
</div>
<h3 class="playfair text-xl mb-3">5-Minute Breathing Practice</h3>
<p class="mb-4 opacity-90">A simple audio guide to center yourself anytime, anywhere</p>
<a href="#" class="inline-block border border-white hover:bg-white hover:text-green-800 px-4 py-2 rounded-md transition-slow">Download</a>
</div>
<!-- Resource 2 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-blur-sm border border-white border-opacity-20">
<div class="h-12 w-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-4">
<i class="fas fa-spa text-xl"></i>
</div>
<h3 class="playfair text-xl mb-3">Evening Wind-Down Ritual</h3>
<p class="mb-4 opacity-90">A step-by-step guide to transition from day to night with intention</p>
<a href="#" class="inline-block border border-white hover:bg-white hover:text-green-800 px-4 py-2 rounded-md transition-slow">Download</a>
</div>
<!-- Resource 3 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-blur-sm border border-white border-opacity-20">
<div class="h-12 w-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-4">
<i class="fas fa-book-open text-xl"></i>
</div>
<h3 class="playfair text-xl mb-3">Mindful Journal Prompts</h3>
<p class="mb-4 opacity-90">Thoughtful questions to deepen self-reflection and awareness</p>
<a href="#" class="inline-block border border-white hover:bg-white hover:text-green-800 px-4 py-2 rounded-md transition-slow">Download</a>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="playfair text-3xl md:text-4xl text-green-900 mb-4">Kind Words From Our Community</h2>
<p class="text-green-700 max-w-2xl mx-auto">Hear how River & Vine has supported others on their mindful living journey</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-green-50 rounded-lg p-6">
<div class="flex items-center mb-4">
<div class="flex text-amber-400">
<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-green-800 mb-6 italic">"The Lavender Mineral Soak has become my weekly reset ritual. It's transformed my ability to unwind after stressful days."</p>
<div class="flex items-center">
<div class="h-10 w-10 rounded-full bg-green-200 flex items-center justify-center">
<span class="text-green-700 font-medium">S</span>
</div>
<div class="ml-3">
<p class="text-green-900 font-medium">Sarah K.</p>
<p class="text-green-600 text-sm">Verified Customer</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-green-50 rounded-lg p-6">
<div class="flex items-center mb-4">
<div class="flex text-amber-400">
<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-green-800 mb-6 italic">"As someone with ADHD, the workbook has given me practical tools to manage overwhelm and find focus in gentle ways."</p>
<div class="flex items-center">
<div class="h-10 w-10 rounded-full bg-green-200 flex items-center justify-center">
<span class="text-green-700 font-medium">J</span>
</div>
<div class="ml-3">
<p class="text-green-900 font-medium">Jamal R.</p>
<p class="text-green-600 text-sm">Verified Customer</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-green-50 rounded-lg p-6">
<div class="flex items-center mb-4">
<div class="flex text-amber-400">
<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>
</div>
<p class="text-green-800 mb-6 italic">"The free meditation guide helped me establish a morning routine that sets a peaceful tone for my entire day."</p>
<div class="flex items-center">
<div class="h-10 w-10 rounded-full bg-green-200 flex items-center justify-center">
<span class="text-green-700 font-medium">M</span>
</div>
<div class="ml-3">
<p class="text-green-900 font-medium">Maya T.</p>
<p class="text-green-600 text-sm">Verified Customer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-green-100">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="playfair text-3xl md:text-4xl text-green-900 mb-4">Join Our Mindful Community</h2>
<p class="text-green-700 mb-8 max-w-2xl mx-auto">Receive monthly inspiration, exclusive offers, and mindful living tips straight to your inbox</p>
<form class="max-w-md mx-auto">
<div class="flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-md border-0 focus:ring-2 focus:ring-green-600">
<button type="submit" class="bg-green-700 hover:bg-green-600 text-white px-6 py-3 rounded-r-md transition-slow">Subscribe</button>
</div>
<p class="text-green-600 text-xs mt-2">We respect your privacy. Unsubscribe at any time.</p>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-green-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<!-- About -->
<div>
<h3 class="playfair text-lg font-medium mb-4">River & Vine</h3>
<p class="text-green-200 mb-4">Offering gifts, resources, and inspiration to help you nurture body, mind, and soul.</p>
<div class="flex space-x-4">
<a href="#" class="text-green-200 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-green-200 hover:text-white"><i class="fab fa-pinterest"></i></a>
<a href="#" class="text-green-200 hover:text-white"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<!-- Shop -->
<div>
<h3 class="playfair text-lg font-medium mb-4">Shop</h3>
<ul class="space-y-2">
<li><a href="#" class="text-green-200 hover:text-white">All Products</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Bath & Body</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Mind & Soul</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Gift Sets</a></li>
</ul>
</div>
<!-- Resources -->
<div>
<h3 class="playfair text-lg font-medium mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-green-200 hover:text-white">Free Downloads</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Mindful Living Blog</a></li>
<li><a href="#" class="text-green-200 hover:text-white">ADHD Support</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Meditation Guides</a></li>
</ul>
</div>
<!-- Help -->
<div>
<h3 class="playfair text-lg font-medium mb-4">Help</h3>
<ul class="space-y-2">
<li><a href="#" class="text-green-200 hover:text-white">Contact Us</a></li>
<li><a href="#" class="text-green-200 hover:text-white">FAQs</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Shipping & Returns</a></li>
<li><a href="#" class="text-green-200 hover:text-white">Privacy Policy</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-green-800 text-center text-green-400 text-sm">
<p>© 2023 River & Vine. All rights reserved. Mindful living for body, mind, and soul.</p>
</div>
</div>
</footer>
<script>
// Simple JavaScript for mobile menu toggle (would need to be expanded for full functionality)
document.addEventListener('DOMContentLoaded', function() {
// This would be expanded for a real mobile menu toggle
console.log('River & Vine - Mindful Living');
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Product card hover effects are handled by CSS
});
</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=icosajim/randv-draft1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |