File size: 32,537 Bytes
3777c7f | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scoops & Smiles | Artisanal Ice Cream</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;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #fff9f5;
}
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1501443762994-82bd5dace89a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.flavor-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);
}
.flavor-card {
transition: all 0.3s ease;
}
.scoop {
width: 100px;
height: 100px;
border-radius: 50%;
position: relative;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.scoop::after {
content: '';
position: absolute;
top: -5px;
left: 10px;
width: 30px;
height: 15px;
background: rgba(255,255,255,0.5);
border-radius: 50%;
transform: rotate(45deg);
}
.flavor-1 { background-color: #f8c3cd; } /* Strawberry */
.flavor-2 { background-color: #f5e5c0; } /* Vanilla */
.flavor-3 { background-color: #c2b3a9; } /* Chocolate */
.flavor-4 { background-color: #a8d8ea; } /* Blueberry */
.flavor-5 { background-color: #f7d794; } /* Banana */
.flavor-6 { background-color: #d2a5d2; } /* Ube */
.animate-bounce-slow {
animation: bounce-slow 3s infinite;
}
@keyframes bounce-slow {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-pink-50 shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-ice-cream text-3xl text-pink-400 mr-2"></i>
<span class="text-xl font-bold text-pink-600">Scoops & Smiles</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#home" class="text-pink-600 hover:text-pink-800 px-3 py-2 font-medium">Home</a>
<a href="#flavors" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Flavors</a>
<a href="#about" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">About</a>
<a href="#locations" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Locations</a>
<a href="#contact" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Contact</a>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-4 py-2 rounded-full font-medium transition duration-300">
Order Online
</button>
</div>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-600 hover:text-pink-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-pink-600">Home</a>
<a href="#flavors" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Flavors</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">About</a>
<a href="#locations" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Locations</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Contact</a>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white px-4 py-2 rounded-full font-medium mt-2">
Order Online
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero h-screen flex items-center justify-center text-center text-white">
<div class="px-4 sm:px-6 lg:px-8 max-w-4xl">
<h1 class="text-4xl md:text-6xl font-bold mb-6 animate-bounce-slow">Handcrafted Happiness</h1>
<p class="text-xl md:text-2xl mb-8">Artisanal ice cream made with love and the finest ingredients</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-pink-500 hover:bg-pink-600 text-white px-8 py-3 rounded-full font-bold text-lg transition duration-300">
Our Flavors
</button>
<button class="bg-white hover:bg-gray-100 text-pink-600 px-8 py-3 rounded-full font-bold text-lg transition duration-300">
Find Us
</button>
</div>
</div>
</section>
<!-- Featured Flavors -->
<section id="flavors" 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-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Signature Flavors</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Each scoop is a masterpiece crafted with premium ingredients and a whole lot of love</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Flavor 1 -->
<div class="flavor-card bg-pink-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-1"></div>
</div>
<h3 class="text-2xl font-bold text-pink-700 mb-2">Strawberry Dream</h3>
<p class="text-gray-600 mb-4">Made with organic strawberries from local farms, this creamy delight will transport you to summer fields.</p>
<div class="flex justify-between items-center">
<span class="text-pink-600 font-bold">$4.50</span>
<button class="bg-pink-100 hover:bg-pink-200 text-pink-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 2 -->
<div class="flavor-card bg-yellow-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-2"></div>
</div>
<h3 class="text-2xl font-bold text-yellow-700 mb-2">Madagascar Vanilla</h3>
<p class="text-gray-600 mb-4">Pure vanilla bean from Madagascar creates this rich, aromatic classic that's anything but ordinary.</p>
<div class="flex justify-between items-center">
<span class="text-yellow-600 font-bold">$4.50</span>
<button class="bg-yellow-100 hover:bg-yellow-200 text-yellow-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 3 -->
<div class="flavor-card bg-amber-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-3"></div>
</div>
<h3 class="text-2xl font-bold text-amber-800 mb-2">Dark Chocolate Obsession</h3>
<p class="text-gray-600 mb-4">70% single-origin cocoa creates this intense chocolate experience for true connoisseurs.</p>
<div class="flex justify-between items-center">
<span class="text-amber-700 font-bold">$5.00</span>
<button class="bg-amber-100 hover:bg-amber-200 text-amber-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 4 -->
<div class="flavor-card bg-blue-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-4"></div>
</div>
<h3 class="text-2xl font-bold text-blue-600 mb-2">Blueberry Cheesecake</h3>
<p class="text-gray-600 mb-4">Creamy cheesecake ice cream swirled with homemade blueberry compote and graham cracker pieces.</p>
<div class="flex justify-between items-center">
<span class="text-blue-600 font-bold">$5.50</span>
<button class="bg-blue-100 hover:bg-blue-200 text-blue-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 5 -->
<div class="flavor-card bg-amber-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-5"></div>
</div>
<h3 class="text-2xl font-bold text-amber-600 mb-2">Caramelized Banana</h3>
<p class="text-gray-600 mb-4">Ripe bananas caramelized in brown sugar and swirled with ribbons of homemade salted caramel.</p>
<div class="flex justify-between items-center">
<span class="text-amber-600 font-bold">$5.00</span>
<button class="bg-amber-100 hover:bg-amber-200 text-amber-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 6 -->
<div class="flavor-card bg-purple-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-6"></div>
</div>
<h3 class="text-2xl font-bold text-purple-600 mb-2">Ube Magic</h3>
<p class="text-gray-600 mb-4">A Filipino favorite made with real purple yam, creating a uniquely sweet and nutty flavor profile.</p>
<div class="flex justify-between items-center">
<span class="text-purple-600 font-bold">$5.50</span>
<button class="bg-purple-100 hover:bg-purple-200 text-purple-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-pink-500 text-pink-600 hover:bg-pink-500 hover:text-white px-8 py-3 rounded-full font-bold text-lg transition duration-300">
View All 32 Flavors
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-pink-50">
<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-10 lg:mb-0 lg:pr-12">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Our Story</h2>
<p class="text-gray-600 mb-4">Founded in 2010 by two childhood friends with a passion for dessert, Scoops & Smiles began as a small cart at local farmers markets.</p>
<p class="text-gray-600 mb-4">What started as a hobby quickly grew into a beloved local institution as word spread about our small-batch, handcrafted ice creams made with locally-sourced ingredients.</p>
<p class="text-gray-600 mb-6">Today, we still make every batch by hand in our kitchen, using traditional methods and never compromising on quality. Our mission is simple: to create moments of joy, one scoop at a time.</p>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-6 py-2 rounded-full font-medium">
Meet Our Team
</button>
</div>
<div class="lg:w-1/2">
<div class="relative rounded-xl overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1570197788417-0e82375c9371?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80"
alt="Ice cream shop interior" class="w-full h-auto">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
<h3 class="text-white text-xl font-bold">Our Flagship Store in Downtown</h3>
<p class="text-pink-200">Come visit our cozy shop with its retro charm</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Parallax Section -->
<section class="parallax h-64 md:h-96 flex items-center justify-center"
style="background-image: url('https://images.unsplash.com/photo-1551024506-0bccd828d307?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1557&q=80');">
<div class="text-center bg-white bg-opacity-80 p-8 rounded-xl max-w-2xl mx-4">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Summer Special</h2>
<p class="text-xl text-gray-700 mb-6">Buy 2 scoops, get 1 free! Available all July long.</p>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-8 py-3 rounded-full font-bold text-lg">
Redeem Offer
</button>
</div>
</section>
<!-- Locations Section -->
<section id="locations" 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-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Locations</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Find your nearest Scoops & Smiles shop</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Location 1 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Downtown</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 123 Sweet Street, Downtown</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 11AM - 10PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 123-4567</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
<!-- Location 2 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Westside</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 456 Cream Avenue, Westside</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 12PM - 9PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 234-5678</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
<!-- Location 3 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">East Village</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 789 Cone Lane, East Village</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 1PM - 11PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 345-6789</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-pink-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Customers Say</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Don't just take our word for it - hear from our happy customers!</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Sarah J.</h4>
<div class="flex text-yellow-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>
</div>
<p class="text-gray-600 italic">"The Ube Magic is out of this world! I drive 30 minutes just to get my weekly fix. Worth every mile!"</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Michael T.</h4>
<div class="flex text-yellow-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>
</div>
<p class="text-gray-600 italic">"Best ice cream in the city! The Dark Chocolate Obsession is so rich and creamy - a chocolate lover's dream."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily R." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Emily R.</h4>
<div class="flex text-yellow-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>
</div>
<p class="text-gray-600 italic">"The staff is so friendly and they always let me sample new flavors before deciding. My kids love the Strawberry Dream!"</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" 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 gap-12">
<div class="lg:w-1/2 mb-10 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Get In Touch</h2>
<p class="text-gray-600 mb-6">Have questions, feedback, or want to host an event with us? We'd love to hear from you!</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Email Us</h4>
<p class="text-gray-600">hello@scoopsandsmiles.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Call Us</h4>
<p class="text-gray-600">(555) SCOO-PIES</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-hashtag text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Follow Us</h4>
<div class="flex space-x-4 mt-2">
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-instagram text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-facebook text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-twitter text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-tiktok text-2xl"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
<option>General Inquiry</option>
<option>Catering/Events</option>
<option>Feedback</option>
<option>Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500"></textarea>
</div>
<button type="submit" class="w-full bg-pink-500 hover:bg-pink-600 text-white py-3 rounded-full font-bold">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-pink-600 text-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-4">Join Our Sweet Community</h2>
<p class="text-xl mb-8">Sign up for our newsletter to get exclusive flavors, special offers, and sweet surprises!</p>
<form class="flex flex-col sm:flex-row gap-4 max-w-2xl mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow px-6 py-3 rounded-full text-gray-900 focus:outline-none focus:ring-2 focus:ring-pink-300">
<button type="submit" class="bg-white hover:bg-gray-100 text-pink-600 px-8 py-3 rounded-full font-bold">
Subscribe
</button>
</form>
<p class="text-pink-100 mt-4 text-sm">We promise not to spam you. Unsubscribe anytime.</p>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<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">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-ice-cream text-2xl text-pink-400 mr-2"></i>
<span class="text-xl font-bold">Scoops & Smiles</span>
</div>
<p class="text-gray-400">Creating sweet memories since 2010.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-tiktok"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#flavors" class="text-gray-400 hover:text-white">Flavors</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#locations" class="text-gray-400 hover:text-white">Locations</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Information</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Shipping & Returns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms & Conditions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Info</h3>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">123 Sweet Street, Downtown</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">(555) SCOO-PIES</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">hello@scoopsandsmiles.com</span>
</li>
</ul>
</div>
</div>
</html> |