File size: 16,179 Bytes
182a604
e865ff1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182a604
e865ff1
 
 
 
182a604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e865ff1
182a604
 
 
e865ff1
182a604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Solaro Coffee | Awaken Your Day</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <style>
        body {
            font-family: 'Inter', sans-serif;
            background-color: #FAF7F2;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        .text-coffee {
            color: #4E342E;
        }
        .text-gold {
            color: #FFB300;
        }
        .bg-beige {
            background-color: #E5D3B3;
        }
        .bg-cream {
            background-color: #FAF7F2;
        }
        .bg-sage {
            background-color: #8A9A77;
        }
        .text-sage {
            color: #8A9A77;
        }
        .btn-gold {
            background-color: #FFB300;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #e09d00;
            transform: translateY(-2px);
        }
        .product-card {
            transition: all 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(250, 247, 242, 0.9) 0%, rgba(229, 211, 179, 0.7) 100%);
        }
    </style>
</head>
<body class="bg-cream">
    <!-- Header -->
    <header class="bg-white shadow-sm">
        <div class="container mx-auto px-4 py-4 flex justify-between items-center">
            <div class="flex items-center">
                <!-- Logo Placeholder -->
                <div class="w-12 h-12 rounded-full bg-coffee flex items-center justify-center mr-3">
                    <i data-feather="sun" class="text-gold"></i>
                </div>
                <div>
                    <h1 class="text-2xl font-bold text-coffee">Solaro Coffee</h1>
                    <p class="text-xs text-sage">Awaken Your Day</p>
                </div>
            </div>
            <nav class="hidden md:flex space-x-8">
                <a href="#" class="text-coffee hover:text-gold font-medium">Home</a>
                <a href="#" class="text-coffee hover:text-gold font-medium">Shop</a>
                <a href="#" class="text-coffee hover:text-gold font-medium">About</a>
                <a href="#" class="text-coffee hover:text-gold font-medium">Contact</a>
            </nav>
            <div class="flex items-center space-x-4">
                <a href="#" class="text-coffee hover:text-gold">
                    <i data-feather="search"></i>
                </a>
                <a href="#" class="text-coffee hover:text-gold">
                    <i data-feather="user"></i>
                </a>
                <a href="#" class="text-coffee hover:text-gold relative">
                    <i data-feather="shopping-cart"></i>
                    <span class="absolute -top-2 -right-2 bg-gold text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">2</span>
                </a>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero-gradient py-20">
        <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-10 md:mb-0">
                <h2 class="text-4xl md:text-5xl font-bold text-coffee mb-4">Premium Coffee Experience</h2>
                <p class="text-lg text-coffee mb-8">Discover ethically sourced, artisan roasted coffee beans that awaken your senses and elevate your daily ritual.</p>
                <a href="#" class="btn-gold px-8 py-3 rounded-full font-medium inline-block">Shop Now</a>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <div class="bg-gray-200 border-2 border-dashed rounded-xl w-80 h-80 flex items-center justify-center">
                    <span class="text-gray-500">Coffee Product Image</span>
                </div>
            </div>
        </div>
    </section>

    <!-- Featured Products -->
    <section class="py-16">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center text-coffee mb-12">Featured Blends</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <!-- Product 1 -->
                <div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
                    <div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
                        <span class="text-gray-500">Product Image</span>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-coffee mb-2">Ethiopian Highland</h3>
                        <p class="text-sage mb-4">Bright, fruity notes with a floral aroma</p>
                        <div class="flex justify-between items-center">
                            <span class="text-lg font-bold text-coffee">$18.99</span>
                            <button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
                        </div>
                    </div>
                </div>
                
                <!-- Product 2 -->
                <div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
                    <div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
                        <span class="text-gray-500">Product Image</span>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-coffee mb-2">Colombian Supremo</h3>
                        <p class="text-sage mb-4">Rich, balanced flavor with caramel notes</p>
                        <div class="flex justify-between items-center">
                            <span class="text-lg font-bold text-coffee">$17.99</span>
                            <button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
                        </div>
                    </div>
                </div>
                
                <!-- Product 3 -->
                <div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
                    <div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
                        <span class="text-gray-500">Product Image</span>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold text-coffee mb-2">Guatemalan Antigua</h3>
                        <p class="text-sage mb-4">Full-bodied with smoky chocolate finish</p>
                        <div class="flex justify-between items-center">
                            <span class="text-lg font-bold text-coffee">$19.99</span>
                            <button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section class="py-16 bg-beige">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0">
                    <div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-96 flex items-center justify-center">
                        <span class="text-gray-500">About Image</span>
                    </div>
                </div>
                <div class="md:w-1/2 md:pl-12">
                    <h2 class="text-3xl font-bold text-coffee mb-6">Our Story</h2>
                    <p class="text-coffee mb-6">At Solaro Coffee, we believe in the transformative power of a perfect cup. Our journey began with a passion for exceptional coffee and a commitment to sustainable practices.</p>
                    <p class="text-coffee mb-8">We source directly from small, ethical farms and roast in small batches to ensure every bean reaches its full potential. From farm to cup, we maintain the highest standards of quality and responsibility.</p>
                    <a href="#" class="btn-gold px-6 py-3 rounded-full font-medium inline-block">Learn More</a>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="py-16">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center text-coffee mb-12">What Our Customers Say</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white p-6 rounded-lg shadow-md">
                    <div class="flex items-center mb-4">
                        <div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
                        <div>
                            <h4 class="font-bold text-coffee">Sarah J.</h4>
                            <div class="flex text-gold">
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-coffee">"The Ethiopian Highland blend is incredible! It's become my morning ritual. The quality is unmatched."</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md">
                    <div class="flex items-center mb-4">
                        <div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
                        <div>
                            <h4 class="font-bold text-coffee">Michael T.</h4>
                            <div class="flex text-gold">
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-coffee">"Fast shipping and the coffee stays fresh for weeks. Customer service is excellent too!"</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md">
                    <div class="flex items-center mb-4">
                        <div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
                        <div>
                            <h4 class="font-bold text-coffee">Emma R.</h4>
                            <div class="flex text-gold">
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                                <i data-feather="star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-coffee">"As a coffee shop owner, I'm very particular about my suppliers. Solaro Coffee has become my go-to!"</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Newsletter -->
    <section class="py-16 bg-sage">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-3xl font-bold text-white mb-4">Join Our Coffee Community</h2>
            <p class="text-white mb-8 max-w-2xl mx-auto">Subscribe to our newsletter for exclusive offers, brewing tips, and early access to new blends.</p>
            <div class="max-w-md mx-auto flex">
                <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none">
                <button class="bg-gold hover:bg-yellow-600 text-white px-6 py-3 rounded-r-lg font-medium">Subscribe</button>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-coffee text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center mb-4">
                        <div class="w-10 h-10 rounded-full bg-white flex items-center justify-center mr-3">
                            <i data-feather="sun" class="text-coffee"></i>
                        </div>
                        <h3 class="text-xl font-bold">Solaro Coffee</h3>
                    </div>
                    <p class="mb-4">Awaken your day with our premium, ethically sourced coffee blends.</p>
                    <div class="flex space-x-4">
                        <a href="#" class="text-white hover:text-gold"><i data-feather="facebook"></i></a>
                        <a href="#" class="text-white hover:text-gold"><i data-feather="instagram"></i></a>
                        <a href="#" class="text-white hover:text-gold"><i data-feather="twitter"></i></a>
                    </div>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Shop</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="hover:text-gold">All Products</a></li>
                        <li><a href="#" class="hover:text-gold">New Arrivals</a></li>
                        <li><a href="#" class="hover:text-gold">Best Sellers</a></li>
                        <li><a href="#" class="hover:text-gold">Subscription</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Information</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="hover:text-gold">About Us</a></li>
                        <li><a href="#" class="hover:text-gold">Shipping Policy</a></li>
                        <li><a href="#" class="hover:text-gold">Return Policy</a></li>
                        <li><a href="#" class="hover:text-gold">Contact Us</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Contact</h4>
                    <ul class="space-y-2">
                        <li class="flex items-start">
                            <i data-feather="map-pin" class="mr-2 mt-1"></i>
                            <span>123 Coffee Street, Bean City</span>
                        </li>
                        <li class="flex items-center">
                            <i data-feather="phone" class="mr-2"></i>
                            <span>(123) 456-7890</span>
                        </li>
                        <li class="flex items-center">
                            <i data-feather="mail" class="mr-2"></i>
                            <span>info@solarocoffee.com</span>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div class="border-t border-gray-700 mt-12 pt-6 text-center">
                <p>&copy; 2023 Solaro Coffee. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
    </script>
</body>
</html>