Spaces:
Running
Running
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Hafida's Beauty Room | Professionelle Aquafacial-Behandlungen in Frankfurt</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"> | |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Montserrat', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .title-font { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| .hero-image { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9'); | |
| background-size: cover; | |
| background-position: center; | |
| background-attachment: fixed; | |
| } | |
| .treatment-card { | |
| transition: all 0.3s ease; | |
| } | |
| .treatment-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .fade-in { | |
| opacity: 0; | |
| transition: opacity 1s ease-in; | |
| } | |
| .fade-in.show { | |
| opacity: 1; | |
| } | |
| .before-after-img { | |
| transition: transform 0.5s ease; | |
| } | |
| .before-after-img:hover { | |
| transform: scale(1.05); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); | |
| } | |
| .form-input:focus { | |
| outline: none; | |
| box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3); | |
| } | |
| .social-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .social-icon:hover { | |
| transform: translateY(-3px); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 text-gray-700"> | |
| <!-- Header/Navigation --> | |
| <header class="bg-white shadow-sm fixed w-full z-50"> | |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <a href="#home" class="title-font text-2xl font-bold text-pink-600 flex items-center"> | |
| <i class="fas fa-spa mr-2"></i> | |
| Hafida's Beauty Room | |
| </a> | |
| </div> | |
| <nav class="hidden md:block"> | |
| <ul class="flex space-x-8"> | |
| <li><a href="#home" class="hover:text-pink-600 transition duration-300 font-medium">Startseite</a></li> | |
| <li><a href="#about" class="hover:text-pink-600 transition duration-300 font-medium">Über uns</a></li> | |
| <li><a href="#treatments" class="hover:text-pink-600 transition duration-300 font-medium">Behandlungen</a></li> | |
| <li><a href="#results" class="hover:text-pink-600 transition duration-300 font-medium">Ergebnisse</a></li> | |
| <li><a href="#contact" class="hover:text-pink-600 transition duration-300 font-medium">Kontakt</a></li> | |
| </ul> | |
| </nav> | |
| <button class="md:hidden text-gray-700 focus:outline-none" id="menu-toggle"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="md:hidden hidden bg-white w-full py-4 px-4 border-t" id="mobile-menu"> | |
| <ul class="space-y-3"> | |
| <li><a href="#home" class="block hover:text-pink-600 transition duration-300 font-medium py-2">Startseite</a></li> | |
| <li><a href="#about" class="block hover:text-pink-600 transition duration-300 font-medium py-2">Über uns</a></li> | |
| <li><a href="#treatments" class="block hover:text-pink-600 transition duration-300 font-medium py-2">Behandlungen</a></li> | |
| <li><a href="#results" class="block hover:text-pink-600 transition duration-300 font-medium py-2">Ergebnisse</a></li> | |
| <li><a href="#contact" class="block hover:text-pink-600 transition duration-300 font-medium py-2">Kontakt</a></li> | |
| </ul> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="hero-image h-screen flex items-center pt-16"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h1 class="title-font text-white text-4xl md:text-6xl font-bold mb-6 leading-tight fade-in"> | |
| Luxuriöse Hautbehandlungen <br> in Frankfurt | |
| </h1> | |
| <p class="text-white text-xl mb-8 max-w-2xl mx-auto fade-in" style="transition-delay: 0.2s;"> | |
| Erleben Sie die transformative Kraft unserer Aquafacial-Behandlungen, die auf Ihre individuellen Hautbedürfnisse abgestimmt sind. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4 fade-in" style="transition-delay: 0.4s;"> | |
| <a href="#treatments" class="bg-pink-600 hover:bg-pink-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 shadow-lg"> | |
| Unsere Behandlungen | |
| </a> | |
| <a href="#contact" class="bg-transparent hover:bg-white hover:text-pink-600 text-white font-bold py-3 px-8 border-2 border-white rounded-full transition duration-300 transform hover:scale-105"> | |
| Jetzt buchen | |
| </a> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-8 left-0 right-0 flex justify-center"> | |
| <a href="#about" class="text-white animate-bounce"> | |
| <i class="fas fa-chevron-down text-2xl"></i> | |
| </a> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Willkommen bei Hafida's Beauty Room</h2> | |
| <div class="w-24 h-1 bg-pink-500 mx-auto mb-6"></div> | |
| <p class="max-w-2xl mx-auto text-lg"> | |
| Ihr erstklassiges Ziel für professionelle Hautpflegebehandlungen in Frankfurt am Main. | |
| </p> | |
| </div> | |
| <div class="flex flex-col lg:flex-row items-center gap-12"> | |
| <div class="lg:w-1/2 fade-in"> | |
| <div class="relative overflow-hidden rounded-xl shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1570172619644-dfd03ed5d881" alt="Hafida's Beauty Room Interior" class="w-full h-auto rounded-xl transform hover:scale-105 transition duration-500"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-50 rounded-xl"></div> | |
| <div class="absolute bottom-0 left-0 p-6 text-white"> | |
| <h3 class="title-font text-2xl font-bold">Hafida - Skincare Specialist</h3> | |
| <p>Certified Aquafacial Expert</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2 fade-in" style="transition-delay: 0.2s;"> | |
| <h3 class="title-font text-2xl font-bold mb-4">Professionelle Hautpflege seit 2024</h3> | |
| <p class="mb-6 text-gray-600 leading-relaxed"> | |
| Bei Hafida's Beauty Room verbinden wir Fachwissen mit persönlicher Betreuung, um außergewöhnliche Ergebnisse zu erzielen. | |
| Unsere moderne Einrichtung in Frankfurt am Main bietet eine ruhige Oase, in der Sie entspannen und sich verjüngen können. | |
| </p> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-3 mt-1"><i class="fas fa-check-circle"></i></div> | |
| <span class="text-gray-700">Specialists in Aquafacial treatments with advanced technology</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-3 mt-1"><i class="fas fa-check-circle"></i></div> | |
| <span class="text-gray-700">Personalized skincare solutions for all skin types</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-3 mt-1"><i class="fas fa-check-circle"></i></div> | |
| <span class="text-gray-700">Comprehensive facial and body treatments with visible results</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-3 mt-1"><i class="fas fa-check-circle"></i></div> | |
| <span class="text-gray-700">Professional care in a relaxing, luxurious atmosphere</span> | |
| </li> | |
| </ul> | |
| <div class="flex flex-wrap gap-4"> | |
| <a href="#treatments" class="bg-pink-600 hover:bg-pink-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 shadow-lg"> | |
| Our Services | |
| </a> | |
| <a href="#contact" class="bg-white hover:bg-gray-100 text-pink-600 font-bold py-3 px-8 border border-pink-600 rounded-full transition duration-300 transform hover:scale-105"> | |
| <i class="fas fa-phone-alt mr-2"></i> Call Us | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Treatments Section --> | |
| <section id="treatments" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Unsere Spezialbehandlungen</h2> | |
| <div class="w-24 h-1 bg-pink-500 mx-auto mb-6"></div> | |
| <p class="max-w-2xl mx-auto text-lg"> | |
| Entdecken Sie unsere spezialisierten Behandlungen, die Ihre natürliche Schönheit unterstreichen. | |
| </p> | |
| </div> | |
| <!-- Aquafacial Card --> | |
| <div class="grid md:grid-cols-2 gap-8 mb-16"> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 treatment-card fade-in"> | |
| <div class="relative overflow-hidden h-64"> | |
| <img src="https://images.unsplash.com/photo-1533044309903-9f6aff2a0c44" alt="Aquafacial Treatment" class="w-full h-full object-cover transform hover:scale-110 transition duration-500"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-50"></div> | |
| <div class="absolute bottom-0 left-0 p-6 text-white"> | |
| <span class="bg-pink-600 text-xs font-bold px-3 py-1 rounded-full">MOST POPULAR</span> | |
| </div> | |
| </div> | |
| <div class="p-8"> | |
| <h3 class="title-font text-2xl font-bold mb-4">Aquafacial Treatment</h3> | |
| <p class="mb-6 text-gray-600"> | |
| Our advanced 4-step Aquafacial process delivers immediate, visible results with no downtime. | |
| </p> | |
| <div class="mb-6"> | |
| <h4 class="font-bold mb-2">The Process:</h4> | |
| <ol class="list-decimal pl-5 space-y-2"> | |
| <li><span class="font-medium">Analysis:</span> Personalized skin assessment</li> | |
| <li><span class="font-medium">Cleansing & Peeling:</span> Gentle exfoliation</li> | |
| <li><span class="font-medium">Deep Pore Cleaning:</span> Water-suction technique</li> | |
| <li><span class="font-medium">Hydration:</span> Customized serum application</li> | |
| </ol> | |
| </div> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-xl font-bold text-pink-600">From €119</span> | |
| <a href="#contact" class="text-pink-600 hover:text-pink-700 font-bold flex items-center"> | |
| Book Now <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 treatment-card fade-in" style="transition-delay: 0.2s;"> | |
| <div class="relative overflow-hidden h-64"> | |
| <img src="https://images.unsplash.com/photo-1526758097130-bab247274f58" alt="Aquafacial Benefits" class="w-full h-full object-cover transform hover:scale-110 transition duration-500"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-50"></div> | |
| </div> | |
| <div class="p-8"> | |
| <h3 class="title-font text-2xl font-bold mb-4">Benefits of Aquafacial</h3> | |
| <div class="mb-6"> | |
| <h4 class="font-bold mb-2">Treats:</h4> | |
| <ul class="grid grid-cols-2 gap-2"> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Acne & breakouts</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Enlarged pores</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Blackheads</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Hyperpigmentation</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Skin impurities</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Dull complexion</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Fine lines</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-check"></i></div> | |
| <span>Dehydration</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <h4 class="font-bold mb-2">Results You'll Love:</h4> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-star"></i></div> | |
| <span>Fresh, clean skin with radiant glow</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-star"></i></div> | |
| <span>Improved skin texture and tone</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-star"></i></div> | |
| <span>Enhanced product absorption</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="text-pink-500 mr-2 mt-1"><i class="fas fa-star"></i></div> | |
| <span>Immediate visible improvements</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Other Treatments --> | |
| <div class="text-center mb-12 fade-in" style="transition-delay: 0.2s;"> | |
| <h3 class="title-font text-2xl md:text-3xl font-bold mb-6">Additional Services</h3> | |
| <p class="max-w-2xl mx-auto mb-8"> | |
| Complete your beauty journey with our comprehensive range of treatments. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Facial Treatment --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 treatment-card fade-in" style="transition-delay: 0.3s;"> | |
| <div class="p-8 h-full flex flex-col"> | |
| <div class="text-pink-500 text-4xl mb-6"> | |
| <i class="fas fa-spa"></i> | |
| </div> | |
| <h3 class="title-font text-xl font-bold mb-4">Signature Facial</h3> | |
| <p class="mb-6 text-gray-600 flex-grow"> | |
| Customized facial treatment targeting your specific skin concerns with premium products. | |
| </p> | |
| <div class="mt-auto"> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-lg font-bold text-pink-600">From €65</span> | |
| <a href="#contact" class="text-sm text-pink-600 hover:text-pink-700 font-bold flex items-center"> | |
| Book <i class="fas fa-arrow-right ml-1"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Advanced Treatment --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 treatment-card fade-in" style="transition-delay: 0.4s;"> | |
| <div class="p-8 h-full flex flex-col"> | |
| <div class="text-pink-500 text-4xl mb-6"> | |
| <i class="fas fa-gem"></i> | |
| </div> | |
| <h3 class="title-font text-xl font-bold mb-4">Premium Hydration Facial</h3> | |
| <p class="mb-6 text-gray-600 flex-grow"> | |
| Intensive hydration treatment with advanced serums for maximum moisture retention. | |
| </p> | |
| <div class="mt-auto"> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-lg font-bold text-pink-600">From €149</span> | |
| <a href="#contact" class="text-sm text-pink-600 hover:text-pink-700 font-bold flex items-center"> | |
| Book <i class="fas fa-arrow-right ml-1"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Body Treatment --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 treatment-card fade-in" style="transition-delay: 0.5s;"> | |
| <div class="p-8 h-full flex flex-col"> | |
| <div class="text-pink-500 text-4xl mb-6"> | |
| <i class="fas fa-leaf"></i> | |
| </div> | |
| <h3 class="title-font text-xl font-bold mb-4">Detox Body Treatment</h3> | |
| <p class="mb-6 text-gray-600 flex-grow"> | |
| Full-body exfoliation and hydration for soft, supple skin with long-lasting results. | |
| </p> | |
| <div class="mt-auto"> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-lg font-bold text-pink-600">From €99</span> | |
| <a href="#contact" class="text-sm text-pink-600 hover:text-pink-700 font-bold flex items-center"> | |
| Book <i class="fas fa-arrow-right ml-1"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Results Section --> | |
| <section id="results" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Visible Results</h2> | |
| <div class="w-24 h-1 bg-pink-500 mx-auto mb-6"></div> | |
| <p class="max-w-2xl mx-auto text-lg"> | |
| Our clients experience dramatic improvements in their skin's health and appearance. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12 items-center mb-12"> | |
| <div class="fade-in"> | |
| <h3 class="title-font text-2xl font-bold mb-4">Before & After</h3> | |
| <p class="mb-6 text-gray-600 leading-relaxed"> | |
| These real client results showcase the transformative power of our Aquafacial treatments. | |
| Each treatment is customized to address individual skin concerns. | |
| </p> | |
| <div class="mb-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-pink-100 flex items-center justify-center text-pink-600 mr-4"> | |
| <i class="fas fa-check text-xl"></i> | |
| </div> | |
| <p class="font-medium">94% of clients see immediate results after first treatment</p> | |
| </div> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-pink-100 flex items-center justify-center text-pink-600 mr-4"> | |
| <i class="fas fa-check text-xl"></i> | |
| </div> | |
| <p class="font-medium">100% satisfaction rate for hydration improvement</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-pink-100 flex items-center justify-center text-pink-600 mr-4"> | |
| <i class="fas fa-check text-xl"></i> | |
| </div> | |
| <p class="font-medium">87% reduction in visible pores after 3 treatments</p> | |
| </div> | |
| </div> | |
| <a href="#contact" class="inline-block bg-pink-600 hover:bg-pink-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 shadow-lg"> | |
| Get Your Transformation | |
| </a> | |
| </div> | |
| <div class="grid grid-cols-2 gap-4 fade-in" style="transition-delay: 0.2s;"> | |
| <div class="relative group overflow-hidden rounded-xl shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1565299624946-b28f40a0ae38" alt="Before treatment" class="w-full h-64 object-cover before-after-img"> | |
| <div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <span class="text-white font-bold text-xl bg-black bg-opacity-70 px-4 py-2 rounded-full">Before</span> | |
| </div> | |
| </div> | |
| <div class="relative group overflow-hidden rounded-xl shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1515886657613-9f3515b0c78f" alt="After treatment" class="w-full h-64 object-cover before-after-img"> | |
| <div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <span class="text-white font-bold text-xl bg-black bg-opacity-70 px-4 py-2 rounded-full">After</span> | |
| </div> | |
| </div> | |
| <div class="relative group overflow-hidden rounded-xl shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1524504388940-b1c1722653e1" alt="Before treatment" class="w-full h-64 object-cover before-after-img"> | |
| <div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <span class="text-white font-bold text-xl bg-black bg-opacity-70 px-4 py-2 rounded-full">Before</span> | |
| </div> | |
| </div> | |
| <div class="relative group overflow-hidden rounded-xl shadow-xl"> | |
| <img src="https://images.unsplash.com/photo-1534528741775-53994a69daeb" alt="After treatment" class="w-full h-64 object-cover before-after-img"> | |
| <div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <span class="text-white font-bold text-xl bg-black bg-opacity-70 px-4 py-2 rounded-full">After</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonials --> | |
| <div class="text-center mb-8 fade-in" style="transition-delay: 0.2s;"> | |
| <h3 class="title-font text-2xl md:text-3xl font-bold mb-4">What Our Clients Say</h3> | |
| <div class="w-24 h-1 bg-pink-500 mx-auto mb-6"></div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-sm testimonial-card fade-in" style="transition-delay: 0.3s;"> | |
| <div class="text-yellow-400 mb-4"> | |
| <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> | |
| <p class="mb-6 italic text-gray-600"> | |
| "The Aquafacial transformed my skin completely! Hafida is a true professional who knows exactly what my skin needed. My complexion has never looked better!" | |
| </p> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden"> | |
| <img src="https://randomuser.me/api/portraits/women/45.jpg" alt="Sarah M." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Sarah M.</h4> | |
| <p class="text-sm text-gray-500">Frankfurt</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-sm testimonial-card fade-in" style="transition-delay: 0.4s;"> | |
| <div class="text-yellow-400 mb-4"> | |
| <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> | |
| <p class="mb-6 italic text-gray-600"> | |
| "I've struggled with acne for years. After just two sessions at Hafida's Beauty Room, my skin has never looked better! The results are incredible." | |
| </p> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden"> | |
| <img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Anna K." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Anna K.</h4> | |
| <p class="text-sm text-gray-500">Frankfurt</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-sm testimonial-card fade-in" style="transition-delay: 0.5s;"> | |
| <div class="text-yellow-400 mb-4"> | |
| <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> | |
| <p class="mb-6 italic text-gray-600"> | |
| "The best facial experience I've ever had. The salon is beautiful and Hafida makes you feel completely at ease. My skin is glowing and I can't wait to come back!" | |
| </p> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Maria S." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Maria S.</h4> | |
| <p class="text-sm text-gray-500">Frankfurt</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-pink-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Termin buchen</h2> | |
| <div class="w-24 h-1 bg-pink-500 mx-auto mb-6"></div> | |
| <p class="max-w-2xl mx-auto text-lg"> | |
| Kontaktieren Sie uns für eine persönliche Hautberatung. | |
| </p> | |
| </div> | |
| <div class="flex flex-col lg:flex-row gap-12"> | |
| <div class="lg:w-1/2 fade-in"> | |
| <div class="bg-white rounded-xl shadow-lg p-8"> | |
| <h3 class="title-font text-2xl font-bold mb-6">Send Us a Message</h3> | |
| <form id="contact-form"> | |
| <div class="mb-6"> | |
| <label for="name" class="block text-gray-700 font-medium mb-2">Full Name *</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 border rounded-lg form-input focus:border-pink-300" required> | |
| </div> | |
| <div class="mb-6"> | |
| <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-3 border rounded-lg form-input focus:border-pink-300" required> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label> | |
| <input type="tel" id="phone" class="w-full px-4 py-3 border rounded-lg form-input focus:border-pink-300"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="treatment" class="block text-gray-700 font-medium mb-2">Treatment Interest *</label> | |
| <select id="treatment" class="w-full px-4 py-3 border rounded-lg form-input focus:border-pink-300" required> | |
| <option value="">Select a treatment</option> | |
| <option value="aquafacial">Aquafacial</option> | |
| <option value="signature-facial">Signature Facial</option> | |
| <option value="premium-hydration">Premium Hydration Facial</option> | |
| <option value="body-treatment">Detox Body Treatment</option> | |
| <option value="consultation">Skin Consultation</option> | |
| </select> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label> | |
| <textarea id="message" rows="4" class="w-full px-4 py-3 border rounded-lg form-input focus:border-pink-300"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-pink-600 hover:bg-pink-700 text-white font-bold py-4 px-6 rounded-full transition duration-300 transform hover:scale-105 shadow-lg"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2"> | |
| <div class="bg-white rounded-xl shadow-lg p-8 mb-8 fade-in" style="transition-delay: 0.2s;"> | |
| <h3 class="title-font text-2xl font-bold mb-6">Contact Information</h3> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="text-pink-500 text-xl mr-4 mt-1"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Location</h4> | |
| <p class="text-gray-600">Frankfurt am Main, Germany</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="text-pink-500 text-xl mr-4 mt-1"> | |
| <i class="fas fa-envelope"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Email</h4> | |
| <p class="text-gray-600">info@hafidasbeautyroom.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="text-pink-500 text-xl mr-4 mt-1"> | |
| <i class="fas fa-phone"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Phone</h4> | |
| <p class="text-gray-600">+49 69 12345678</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="text-pink-500 text-xl mr-4 mt-1"> | |
| <i class="fas fa-clock"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Working Hours</h4> | |
| <p class="text-gray-600">Monday - Friday: 10:00 - 19:00</p> | |
| <p class="text-gray-600">Saturday: 10:00 - 16:00</p> | |
| <p class="text-gray-600">Sunday: Closed</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-lg p-8 fade-in" style="transition-delay: 0.3s;"> | |
| <h3 class="title-font text-2xl font-bold mb-6">Find Us</h3> | |
| <div class="aspect-w-16 aspect-h-9 rounded-lg overflow-hidden"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4368.767997479067!2d8.682500476722533!3d50.10865307170289!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47bd09503d4a38e9%3A0x422ac5a76e7a40!2sFrankfurt%20am%20Main%2C%20Germany!5e0!3m2!1sen!2sus!4v1623750000000!5m2!1sen!2sus" width="100%" height="300" style="border:0;" allowfullscreen="" loading="lazy" class="rounded-lg"></iframe> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter Section --> | |
| <section class="py-16 bg-pink-600 text-white"> | |
| <div class="container mx-auto px-4 text-center fade-in"> | |
| <h2 class="title-font text-3xl font-bold mb-4">Join Our Beauty Community</h2> | |
| <p class="max-w-2xl mx-auto mb-8"> | |
| Subscribe to receive exclusive offers, skincare tips, and updates on new treatments. | |
| </p> | |
| <form class="max-w-md mx-auto flex flex-col sm:flex-row gap-4"> | |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg focus:outline-none text-gray-800"> | |
| <button type="submit" class="bg-white hover:bg-gray-100 text-pink-600 font-bold py-3 px-6 rounded-lg transition duration-300 transform hover:scale-105 shadow-lg"> | |
| Subscribe | |
| </button> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row justify-between items-start"> | |
| <div class="mb-8 md:mb-0 fade-in"> | |
| <a href="#home" class="title-font text-2xl font-bold text-white mb-4 inline-block flex items-center"> | |
| <i class="fas fa-spa mr-2"></i> Hafida's Beauty Room | |
| </a> | |
| <p class="text-gray-400 max-w-md"> | |
| Professional skincare treatments in Frankfurt am Main. Specializing in Aquafacial technology for radiant, healthy skin. | |
| </p> | |
| </div> | |
| <div class="mb-8 md:mb-0 fade-in" style="transition-delay: 0.2s;"> | |
| <h4 class="title-font text-lg font-bold 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="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li> | |
| <li><a href="#treatments" class="text-gray-400 hover:text-white transition duration-300">Treatments</a></li> | |
| <li><a href="#results" class="text-gray-400 hover:text-white transition duration-300">Results</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div class="mb-8 md:mb-0 fade-in" style="transition-delay: 0.3s;"> | |
| <h4 class="title-font text-lg font-bold mb-4">Treatments</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#treatments" class="text-gray-400 hover:text-white transition duration-300">Aquafacial</a></li> | |
| <li><a href="#treatments" class="text-gray-400 hover:text-white transition duration-300">Signature Facial</a></li> | |
| <li><a href="#treatments" class="text-gray-400 hover:text-white transition duration-300">Hydration Facial</a></li> | |
| <li><a href="#treatments" class="text-gray-400 hover:text-white transition duration-300">Detox Body Treatment</a></li> | |
| </ul> | |
| </div> | |
| <div class="fade-in" style="transition-delay: 0.4s;"> | |
| <h4 class="title-font text-lg font-bold mb-4">Connect With Us</h4> | |
| <div class="flex space-x-4 mb-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-pink-600 transition duration-300 social-icon"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-pink-600 transition duration-300 social-icon"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-pink-600 transition duration-300 social-icon"> | |
| <i class="fab fa-tiktok"></i> | |
| </a> | |
| </div> | |
| <p class="text-gray-400">Listed on Beautinda since 2024</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400 fade-in" style="transition-delay: 0.5s;"> | |
| <p>© 2024 Hafida's Beauty Room. All rights reserved.</p> | |
| <div class="flex justify-center space-x-4 mt-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a> | |
| <span>•</span> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Floating Social Media Buttons --> | |
| <div class="fixed left-8 bottom-8 z-50 space-y-4 fade-in" style="transition-delay: 0.6s;"> | |
| <div class="flex flex-col items-center space-y-3"> | |
| <a href="https://www.instagram.com/yourusername" class="bg-gradient-to-br from-purple-500 to-pink-600 hover:from-purple-600 hover:to-pink-700 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-xl transition duration-300 transform hover:scale-110"> | |
| <i class="fab fa-instagram text-xl"></i> | |
| </a> | |
| <a href="https://www.facebook.com/yourusername" class="bg-blue-600 hover:bg-blue-700 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-xl transition duration-300 transform hover:scale-110"> | |
| <i class="fab fa-facebook-f text-xl"></i> | |
| </a> | |
| <a href="mailto:info@hafidasbeautyroom.com" class="bg-gray-700 hover:bg-gray-800 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-xl transition duration-300 transform hover:scale-110"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </a> | |
| <a href="https://wa.me/496912345678" class="bg-green-500 hover:bg-green-600 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-xl transition duration-300 transform hover:scale-110"> | |
| <i class="fab fa-whatsapp text-xl"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Floating WhatsApp Button (right side) --> | |
| <div class="fixed bottom-8 right-8 z-50 fade-in" style="transition-delay: 0.7s;"> | |
| <a href="https://wa.me/496912345678" class="bg-green-500 hover:bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-xl transition duration-300 transform hover:scale-110"> | |
| <i class="fab fa-whatsapp text-2xl"></i> | |
| </a> | |
| </div> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('menu-toggle').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| }); | |
| }); | |
| // Scroll animation | |
| function checkScroll() { | |
| const elements = document.querySelectorAll('.fade-in'); | |
| const windowHeight = window.innerHeight; | |
| elements.forEach(element => { | |
| const elementPosition = element.getBoundingClientRect().top; | |
| if (elementPosition < windowHeight - 100) { | |
| element.classList.add('show'); | |
| } | |
| }); | |
| } | |
| // Run on initial load | |
| window.addEventListener('load', checkScroll); | |
| // Run on scroll | |
| window.addEventListener('scroll', checkScroll); | |
| // Form submission | |
| document.getElementById('contact-form').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Here you would normally send the form data to your server | |
| // For this example, we'll just show an alert | |
| alert('Thank you for your message! We will contact you shortly.'); | |
| // Reset the form | |
| this.reset(); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=mobenta/bvcxvcxvcx" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |