thetwistedpixie commited on
Commit
80eda6e
·
verified ·
1 Parent(s): 1c60532

Neon colours, and include this logo

Browse files
Files changed (1) hide show
  1. index.html +40 -28
index.html CHANGED
@@ -11,13 +11,29 @@
11
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
13
  <style>
 
 
 
 
14
  .hero-gradient {
15
- background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(244, 63, 94, 0.05) 100%);
16
  }
17
  .section-gradient {
18
- background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(244, 63, 94, 0.02) 100%);
 
 
 
 
 
 
 
 
19
  }
20
- .price-card {
 
 
 
 
21
  transition: transform 0.3s ease;
22
  }
23
  .price-card:hover {
@@ -35,11 +51,9 @@
35
  <div class="container mx-auto px-6 py-4">
36
  <div class="flex justify-between items-center">
37
  <div class="flex items-center space-x-2">
38
- <div class="w-10 h-10 bg-amber-500 rounded-full flex items-center justify-center">
39
- <i data-feather="heart" class="text-white"></i>
40
- </div>
41
- <span class="text-xl font-bold text-amber-600">Piglet's Healing Hands</span>
42
- </div>
43
 
44
  <div class="hidden md:flex space-x-8">
45
  <a href="#home" class="text-gray-600 hover:text-amber-500 transition-colors">Home</a>
@@ -63,18 +77,18 @@
63
  <div class="container mx-auto px-6">
64
  <div class="flex flex-col md:flex-row items-center justify-between">
65
  <div class="md:w-1/2 mb-10 md:mb-0">
66
- <h1 class="text-5xl md:text-6xl font-bold mb-6 text-gray-800">
67
- Unleash Your <span class="text-amber-500">Sensual Energy</span> with Piglet
68
- </h1>
69
  <p class="text-xl text-gray-600 mb-8 leading-relaxed">
70
  Professional tantric and therapeutic massage experiences designed to awaken your senses, melt away tension, and reconnect you with your body's deepest pleasures.
71
  </p>
72
  <div class="flex space-x-4">
73
- <a href="#booking" class="bg-amber-500 hover:bg-amber-600 text-white px-8 py-4 rounded-full font-semibold transition-colors">
74
- Book a Session
75
  </a>
76
- <a href="#services" class="border-2 border-rose-500 text-rose-500 hover:bg-rose-50 px-8 py-4 rounded-full font-semibold transition-colors">
77
- Learn More
78
  </a>
79
  </div>
80
  </div>
@@ -83,8 +97,8 @@
83
  <div class="w-80 h-80 bg-amber-100 rounded-full flex items-center justify-center overflow-hidden shadow-2xl">
84
  <img src="http://static.photos/massage/640x360/1" alt="Piglet the Masseur" class="w-full h-full object-cover" style="filter: brightness(0.9);">
85
  </div>
86
- <div class="absolute -bottom-4 -right-4 bg-rose-500 text-white px-6 py-3 rounded-full shadow-lg">
87
- <span class="font-bold">5+ Years Experience</span>
88
  </div>
89
  </div>
90
  </div>
@@ -501,23 +515,21 @@
501
  <div class="flex flex-col md:flex-row justify-between items-center">
502
  <div class="mb-6 md:mb-0">
503
  <div class="flex items-center space-x-2">
504
- <div class="w-10 h-10 bg-amber-500 rounded-full flex items-center justify-center">
505
- <i data-feather="heart" class="text-white"></i>
506
- </div>
507
- <span class="text-xl font-bold">Piglet's Healing Hands</span>
508
- </div>
509
  <p class="mt-4 text-gray-400">Professional Therapeutic Massage Services</p>
510
  </div>
511
 
512
  <div class="flex space-x-6">
513
- <a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
514
- <i data-feather="facebook"></i>
515
  </a>
516
- <a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
517
- <i data-feather="instagram"></i>
518
  </a>
519
- <a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
520
- <i data-feather="twitter"></i>
521
  </a>
522
  </div>
523
  </div>
 
11
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
13
  <style>
14
+ @keyframes neonGlow {
15
+ 0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff00de, 0 0 20px #ff00de; }
16
+ 50% { text-shadow: 0 0 10px #fff, 0 0 15px #ff4d00, 0 0 20px #ff4d00, 0 0 25px #ff4d00; }
17
+ }
18
  .hero-gradient {
19
+ background: linear-gradient(135deg, rgba(255, 0, 222, 0.1) 0%, rgba(255, 77, 0, 0.1) 100%);
20
  }
21
  .section-gradient {
22
+ background: linear-gradient(135deg, rgba(255, 0, 222, 0.05) 0%, rgba(255, 77, 0, 0.05) 100%);
23
+ }
24
+ .neon-text {
25
+ animation: neonGlow 3s ease-in-out infinite alternate;
26
+ color: #fff;
27
+ }
28
+ .neon-pink {
29
+ color: #ff00de;
30
+ text-shadow: 0 0 5px #ff00de;
31
  }
32
+ .neon-orange {
33
+ color: #ff4d00;
34
+ text-shadow: 0 0 5px #ff4d00;
35
+ }
36
+ .price-card {
37
  transition: transform 0.3s ease;
38
  }
39
  .price-card:hover {
 
51
  <div class="container mx-auto px-6 py-4">
52
  <div class="flex justify-between items-center">
53
  <div class="flex items-center space-x-2">
54
+ <img src="piglet-logo.png" alt="Piglet Logo" class="h-10">
55
+ <span class="text-xl font-bold neon-pink">Piglet's Healing Hands</span>
56
+ </div>
 
 
57
 
58
  <div class="hidden md:flex space-x-8">
59
  <a href="#home" class="text-gray-600 hover:text-amber-500 transition-colors">Home</a>
 
77
  <div class="container mx-auto px-6">
78
  <div class="flex flex-col md:flex-row items-center justify-between">
79
  <div class="md:w-1/2 mb-10 md:mb-0">
80
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 neon-text">
81
+ Unleash Your <span class="neon-orange">Sensual Energy</span> with Piglet
82
+ </h1>
83
  <p class="text-xl text-gray-600 mb-8 leading-relaxed">
84
  Professional tantric and therapeutic massage experiences designed to awaken your senses, melt away tension, and reconnect you with your body's deepest pleasures.
85
  </p>
86
  <div class="flex space-x-4">
87
+ <a href="#booking" class="bg-gradient-to-r from-pink-500 to-orange-500 hover:from-pink-600 hover:to-orange-600 text-white px-8 py-4 rounded-full font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg shadow-pink-500/30">
88
+ Book a Session
89
  </a>
90
+ <a href="#services" class="border-2 border-cyan-400 text-white hover:text-cyan-300 px-8 py-4 rounded-full font-semibold transition-all hover:shadow-lg hover:shadow-cyan-500/20 neon-text">
91
+ Learn More
92
  </a>
93
  </div>
94
  </div>
 
97
  <div class="w-80 h-80 bg-amber-100 rounded-full flex items-center justify-center overflow-hidden shadow-2xl">
98
  <img src="http://static.photos/massage/640x360/1" alt="Piglet the Masseur" class="w-full h-full object-cover" style="filter: brightness(0.9);">
99
  </div>
100
+ <div class="absolute -bottom-4 -right-4 bg-gradient-to-r from-cyan-400 to-blue-500 text-white px-6 py-3 rounded-full shadow-lg neon-text">
101
+ <span class="font-bold">5+ Years Experience</span>
102
  </div>
103
  </div>
104
  </div>
 
515
  <div class="flex flex-col md:flex-row justify-between items-center">
516
  <div class="mb-6 md:mb-0">
517
  <div class="flex items-center space-x-2">
518
+ <img src="piglet-logo.png" alt="Piglet Logo" class="h-10">
519
+ <span class="text-xl font-bold neon-pink">Piglet's Healing Hands</span>
520
+ </div>
 
 
521
  <p class="mt-4 text-gray-400">Professional Therapeutic Massage Services</p>
522
  </div>
523
 
524
  <div class="flex space-x-6">
525
+ <a href="#" class="text-gray-400 hover:text-cyan-300 transition-colors hover:drop-shadow-[0_0_8px_rgba(34,211,238,0.6)]">
526
+ <i data-feather="facebook"></i>
527
  </a>
528
+ <a href="#" class="text-gray-400 hover:text-pink-400 transition-colors hover:drop-shadow-[0_0_8px_rgba(236,72,153,0.6)]">
529
+ <i data-feather="instagram"></i>
530
  </a>
531
+ <a href="#" class="text-gray-400 hover:text-orange-400 transition-colors hover:drop-shadow-[0_0_8px_rgba(249,115,22,0.6)]">
532
+ <i data-feather="twitter"></i>
533
  </a>
534
  </div>
535
  </div>