Frajosgro commited on
Commit
c24f269
·
verified ·
1 Parent(s): ed22528

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +477 -188
  2. prompts.txt +1 -0
index.html CHANGED
@@ -6,22 +6,52 @@
6
  <title>Pferdeausbildung - Individuelles Training für Jungpferde & Reiter</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  <style>
 
 
 
 
 
 
10
  .hero-gradient {
11
- background: linear-gradient(135deg, rgba(139, 168, 129, 0.9) 0%, rgba(87, 117, 86, 0.9) 100%);
12
  }
 
13
  .card-hover:hover {
14
- transform: translateY(-5px);
15
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
  }
 
17
  .transition-all {
18
  transition: all 0.3s ease;
19
  }
 
20
  .before-after-container {
21
  position: relative;
22
- height: 300px;
23
  overflow: hidden;
 
 
24
  }
 
25
  .before-after-slider {
26
  position: absolute;
27
  width: 100%;
@@ -29,14 +59,17 @@
29
  background-size: cover;
30
  background-position: center;
31
  }
 
32
  .before-image {
33
  width: 50%;
34
  background-image: url('https://images.unsplash.com/photo-1553284965-83fd3e82ab5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
35
  }
 
36
  .after-image {
37
  width: 100%;
38
  background-image: url('https://images.unsplash.com/photo-1553284965-5dd8352ff1bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
39
  }
 
40
  .slider-handle {
41
  position: absolute;
42
  left: 50%;
@@ -47,57 +80,204 @@
47
  cursor: ew-resize;
48
  transform: translateX(-50%);
49
  }
 
50
  .slider-handle::before {
51
  content: "";
52
  position: absolute;
53
- width: 30px;
54
- height: 30px;
55
  border-radius: 50%;
56
- background-color: white;
57
  left: 50%;
58
  top: 50%;
59
  transform: translate(-50%, -50%);
60
- box-shadow: 0 2px 5px rgba(0,0,0,0.2);
 
 
 
 
 
 
 
61
  }
 
62
  .gallery-item {
63
  transition: all 0.3s ease;
 
 
 
64
  }
 
65
  .gallery-item:hover {
66
- transform: scale(1.03);
67
  z-index: 10;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  }
69
  </style>
70
  </head>
71
- <body class="font-sans bg-gray-50">
72
  <!-- Header/Navigation -->
73
  <header class="bg-white shadow-sm sticky top-0 z-50">
74
  <div class="container mx-auto px-4 py-4 flex justify-between items-center">
75
  <div class="flex items-center">
76
- <i class="fas fa-horse-head text-2xl text-green-700 mr-2"></i>
77
- <span class="text-xl font-semibold text-green-800">Pferdeausbildung</span>
 
 
78
  </div>
79
  <nav class="hidden md:flex space-x-8">
80
- <a href="#services" class="text-green-700 hover:text-green-900 transition-all">Leistungen</a>
81
- <a href="#philosophy" class="text-green-700 hover:text-green-900 transition-all">Philosophie</a>
82
- <a href="#gallery" class="text-green-700 hover:text-green-900 transition-all">Galerie</a>
83
- <a href="#contact" class="text-green-700 hover:text-green-900 transition-all">Kontakt</a>
84
  </nav>
85
- <button class="md:hidden text-green-700">
86
  <i class="fas fa-bars text-2xl"></i>
87
  </button>
88
  </div>
89
  </header>
90
 
91
  <!-- Hero Section -->
92
- <section class="hero-gradient text-white py-20 md:py-32">
93
- <div class="container mx-auto px-4 text-center">
94
- <h1 class="text-4xl md:text-5xl font-bold mb-6">Individuelle Pferdeausbildung</h1>
 
 
95
  <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Systematisch, strukturiert und pferdegerecht – für ein ausbalanciertes Pferd mit Freude an der Arbeit</p>
96
  <div class="flex flex-col sm:flex-row justify-center gap-4">
97
- <a href="#contact" class="bg-white text-green-800 font-semibold px-8 py-3 rounded-full hover:bg-gray-100 transition-all shadow-lg">
98
  Jetzt unverbindlich anfragen
99
  </a>
100
- <a href="#services" class="border-2 border-white text-white font-semibold px-8 py-3 rounded-full hover:bg-white hover:text-green-800 transition-all">
101
  Mehr erfahren
102
  </a>
103
  </div>
@@ -105,67 +285,71 @@
105
  </section>
106
 
107
  <!-- Services Section -->
108
- <section id="services" class="py-16 bg-white">
 
109
  <div class="container mx-auto px-4">
110
- <h2 class="text-3xl font-bold text-center text-green-800 mb-12">Meine Leistungen</h2>
 
 
 
111
 
112
  <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
113
  <!-- Service Card 1 -->
114
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
115
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
116
- <i class="fas fa-horse text-2xl text-green-700"></i>
117
  </div>
118
- <h3 class="text-xl font-semibold text-green-800 mb-3">Jungpferdeausbildung</h3>
119
  <p class="text-gray-600 mb-4">Systematische und pferdegerechte Grundausbildung für junge Pferde, die eine solide Basis für ihre weitere Entwicklung legt.</p>
120
  <p class="text-gray-600">Strukturiertes Training mit Geduld und klaren Prozessen für ein vertrauensvolles, sicheres Pferd.</p>
121
  </div>
122
 
123
  <!-- Service Card 2 -->
124
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
125
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
126
- <i class="fas fa-user-tie text-2xl text-green-700"></i>
127
  </div>
128
- <h3 class="text-xl font-semibold text-green-800 mb-3">Beritt & Reitunterricht</h3>
129
  <p class="text-gray-600 mb-4">Individueller Beritt für Ihr Pferd sowie stationärer und mobiler Reitunterricht für eine harmonische Partnerschaft.</p>
130
  <p class="text-gray-600">Anpassung an die Bedürfnisse von Pferd und Reiter für optimale Fortschritte.</p>
131
  </div>
132
 
133
  <!-- Service Card 3 -->
134
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
135
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
136
- <i class="fas fa-hands-helping text-2xl text-green-700"></i>
137
  </div>
138
- <h3 class="text-xl font-semibold text-green-800 mb-3">Handarbeit & Doppellonge</h3>
139
  <p class="text-gray-600 mb-4">Förderung von Balance und Selbsthaltung durch gezielte Bodenarbeit ohne Reitergewicht.</p>
140
  <p class="text-gray-600">Ideal für Jungpferde und zur Korrektur von älteren Pferden.</p>
141
  </div>
142
 
143
  <!-- Service Card 4 -->
144
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
145
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
146
- <i class="fas fa-chair text-2xl text-green-700"></i>
147
  </div>
148
- <h3 class="text-xl font-semibold text-green-800 mb-3">Sitzschulung</h3>
149
  <p class="text-gray-600 mb-4">Feine Hilfengebung und korrekte Einwirkung durch optimierten Reitersitz.</p>
150
  <p class="text-gray-600">Individuelle Korrekturen für eine bessere Kommunikation mit dem Pferd.</p>
151
  </div>
152
 
153
  <!-- Service Card 5 -->
154
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
155
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
156
- <i class="fas fa-tree text-2xl text-green-700"></i>
157
  </div>
158
- <h3 class="text-xl font-semibold text-green-800 mb-3">Geländetraining</h3>
159
  <p class="text-gray-600 mb-4">Steigerung von Trittsicherheit, Mut und Alltagsroutine durch gezieltes Geländetraining.</p>
160
  <p class="text-gray-600">Vorbereitung auf Ausritte und Turniere in natürlicher Umgebung.</p>
161
  </div>
162
 
163
  <!-- Service Card 6 -->
164
- <div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover transition-all">
165
- <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
166
- <i class="fas fa-star text-2xl text-green-700"></i>
167
  </div>
168
- <h3 class="text-xl font-semibold text-green-800 mb-3">Individuelle Pakete</h3>
169
  <p class="text-gray-600 mb-4">Kombination verschiedener Leistungen für maßgeschneidertes Training.</p>
170
  <p class="text-gray-600">Gerne erstelle ich ein auf Ihr Pferd abgestimmtes Konzept.</p>
171
  </div>
@@ -174,40 +358,53 @@
174
  </section>
175
 
176
  <!-- Philosophy Section -->
177
- <section id="philosophy" class="py-16 bg-green-50">
 
178
  <div class="container mx-auto px-4">
179
  <div class="flex flex-col lg:flex-row items-center gap-12">
180
- <div class="lg:w-1/2">
181
  <img src="https://images.unsplash.com/photo-1583121274602-3e2820c69888?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
182
  alt="Pferd und Trainer"
183
- class="rounded-xl shadow-lg w-full h-auto">
 
 
 
184
  </div>
185
  <div class="lg:w-1/2">
186
- <h2 class="text-3xl font-bold text-green-800 mb-6">Meine Philosophie</h2>
187
- <p class="text-gray-700 mb-4 text-lg">
188
  Mein ganzheitlicher Trainingsansatz zielt darauf ab, ein tragfähiges, ausbalanciertes Pferd zu entwickeln, das Freude an der Arbeit hat.
189
  </p>
190
- <p class="text-gray-700 mb-6">
191
  Besonders bei Jungpferden lege ich Wert auf feine Kommunikation, klare Strukturen und geduldiges Vorgehen. Jeder Lernschritt wird sorgfältig aufgebaut, um das Pferd nicht zu überfordern und Vertrauen aufzubauen.
192
  </p>
193
  <div class="space-y-4">
194
- <div class="flex items-start">
195
- <div class="bg-green-100 p-2 rounded-full mr-4">
196
- <i class="fas fa-check text-green-700"></i>
 
 
 
 
197
  </div>
198
- <p class="text-gray-700"><strong>Individuell</strong> - Jedes Pferd erhält ein auf seine Bedürfnisse abgestimmtes Training.</p>
199
  </div>
200
- <div class="flex items-start">
201
- <div class="bg-green-100 p-2 rounded-full mr-4">
202
- <i class="fas fa-check text-green-700"></i>
 
 
 
 
203
  </div>
204
- <p class="text-gray-700"><strong>Pferdegerecht</strong> - Respektvolle Ausbildung ohne Druck oder Gewalt.</p>
205
  </div>
206
- <div class="flex items-start">
207
- <div class="bg-green-100 p-2 rounded-full mr-4">
208
- <i class="fas fa-check text-green-700"></i>
 
 
 
 
209
  </div>
210
- <p class="text-gray-700"><strong>Nachhaltig</strong> - Solide Grundlagen für eine langfristige Entwicklung.</p>
211
  </div>
212
  </div>
213
  </div>
@@ -216,162 +413,213 @@
216
  </section>
217
 
218
  <!-- Before/After Section -->
219
- <section class="py-16 bg-white">
220
  <div class="container mx-auto px-4">
221
- <h2 class="text-3xl font-bold text-center text-green-800 mb-12">Trainingserfolge</h2>
222
- <div class="before-after-container rounded-xl shadow-xl">
 
 
 
223
  <div class="before-after-slider before-image"></div>
224
  <div class="before-after-slider after-image"></div>
225
  <div class="slider-handle"></div>
226
  </div>
227
- <div class="mt-8 text-center">
228
- <p class="text-gray-600 italic">"Aus einem unsicheren Jungpferd wird ein selbstbewusster Partner"</p>
 
 
 
 
 
 
229
  </div>
230
  </div>
231
  </section>
232
 
233
  <!-- Gallery Section -->
234
- <section id="gallery" class="py-16 bg-gray-50">
235
  <div class="container mx-auto px-4">
236
- <h2 class="text-3xl font-bold text-center text-green-800 mb-12">Galerie & Impressionen</h2>
237
- <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
238
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
 
 
 
239
  <img src="https://images.unsplash.com/photo-1553284965-83fd3e82ab5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
240
  alt="Jungpferd Training"
241
- class="w-full h-48 object-cover">
242
  </div>
243
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
244
  <img src="https://images.unsplash.com/photo-1553284965-5dd8352ff1bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
245
  alt="Beritt"
246
- class="w-full h-48 object-cover">
247
  </div>
248
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
249
  <img src="https://images.unsplash.com/photo-1583121274602-3e2820c69888?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
250
  alt="Handarbeit"
251
- class="w-full h-48 object-cover">
252
  </div>
253
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
254
  <img src="https://images.unsplash.com/photo-1605559421013-9a5dcde8b6d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
255
  alt="Doppellonge"
256
- class="w-full h-48 object-cover">
257
  </div>
258
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
259
  <img src="https://images.unsplash.com/photo-1605559420909-d37c5bb1ee50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
260
  alt="Sitzschulung"
261
- class="w-full h-48 object-cover">
262
  </div>
263
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
264
  <img src="https://images.unsplash.com/photo-1605559421013-9a5dcde8b6d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
265
  alt="Geländetraining"
266
- class="w-full h-48 object-cover">
267
  </div>
268
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
269
  <img src="https://images.unsplash.com/photo-1553284966-3e6ae56d0e41?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
270
  alt="Jungpferd"
271
- class="w-full h-48 object-cover">
272
  </div>
273
- <div class="gallery-item rounded-lg overflow-hidden shadow-md">
274
  <img src="https://images.unsplash.com/photo-1553284966-3e6ae56d0e41?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
275
  alt="Training"
276
- class="w-full h-48 object-cover">
277
  </div>
278
  </div>
 
 
 
 
 
279
  </div>
280
  </section>
281
 
282
  <!-- Contact Section -->
283
- <section id="contact" class="py-16 bg-green-800 text-white">
 
284
  <div class="container mx-auto px-4">
285
- <h2 class="text-3xl font-bold text-center mb-12">Kontakt</h2>
 
 
 
286
  <div class="flex flex-col lg:flex-row gap-12">
287
  <div class="lg:w-1/2">
288
- <h3 class="text-xl font-semibold mb-4">Kontaktinformationen</h3>
289
- <div class="space-y-4">
290
- <div class="flex items-start">
291
- <i class="fas fa-map-marker-alt mt-1 mr-4"></i>
292
- <div>
293
- <p class="font-medium">Standort</p>
294
- <p>Musterstraße 123, 12345 Musterstadt</p>
295
- <p class="text-green-200 mt-1">Einzugsgebiet: 50 km Umkreis</p>
 
 
 
 
296
  </div>
297
- </div>
298
- <div class="flex items-start">
299
- <i class="fas fa-mobile-alt mt-1 mr-4"></i>
300
- <div>
301
- <p class="font-medium">Telefon</p>
302
- <p>+49 123 456789</p>
 
 
303
  </div>
304
- </div>
305
- <div class="flex items-start">
306
- <i class="fas fa-envelope mt-1 mr-4"></i>
307
- <div>
308
- <p class="font-medium">E-Mail</p>
309
 
 
310
  </div>
311
- </div>
312
- <div class="flex items-start">
313
- <i class="fab fa-whatsapp mt-1 mr-4"></i>
314
- <div>
315
- <p class="font-medium">WhatsApp</p>
316
- <p>+49 123 456789</p>
317
- <a href="https://wa.me/49123456789" class="inline-block mt-2 bg-green-700 hover:bg-green-600 text-white px-4 py-2 rounded-full transition-all">
318
- <i class="fab fa-whatsapp mr-2"></i> Nachricht senden
319
- </a>
 
 
320
  </div>
321
  </div>
322
- </div>
323
- <div class="mt-8">
324
- <h3 class="text-xl font-semibold mb-4">Öffnungszeiten</h3>
325
- <div class="space-y-2">
326
- <p>Montag - Freitag: 8:00 - 18:00 Uhr</p>
327
- <p>Samstag: 9:00 - 14:00 Uhr</p>
328
- <p>Sonntag: nach Vereinbarung</p>
 
 
 
 
 
 
 
 
 
329
  </div>
330
  </div>
331
  </div>
332
  <div class="lg:w-1/2">
333
- <h3 class="text-xl font-semibold mb-4">Kontaktformular</h3>
334
- <form class="space-y-4">
335
- <div>
336
- <label for="name" class="block mb-1">Name</label>
337
- <input type="text" id="name" class="w-full px-4 py-2 rounded-lg bg-green-900 border border-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 text-white">
338
- </div>
339
- <div>
340
- <label for="email" class="block mb-1">E-Mail</label>
341
- <input type="email" id="email" class="w-full px-4 py-2 rounded-lg bg-green-900 border border-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 text-white">
342
- </div>
343
- <div>
344
- <label for="phone" class="block mb-1">Telefon</label>
345
- <input type="tel" id="phone" class="w-full px-4 py-2 rounded-lg bg-green-900 border border-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 text-white">
346
- </div>
347
- <div>
348
- <label for="service" class="block mb-1">Interesse an</label>
349
- <select id="service" class="w-full px-4 py-2 rounded-lg bg-green-900 border border-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 text-white">
350
- <option value="">Bitte auswählen</option>
351
- <option value="jungpferde">Jungpferdeausbildung</option>
352
- <option value="beritt">Beritt</option>
353
- <option value="unterricht">Reitunterricht</option>
354
- <option value="handarbeit">Handarbeit & Doppellonge</option>
355
- <option value="sitzschulung">Sitzschulung</option>
356
- <option value="gelände">Geländetraining</option>
357
- <option value="sonstiges">Sonstiges</option>
358
- </select>
359
- </div>
360
- <div>
361
- <label for="message" class="block mb-1">Nachricht</label>
362
- <textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg bg-green-900 border border-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 text-white"></textarea>
363
- </div>
364
- <button type="submit" class="w-full bg-green-600 hover:bg-green-500 text-white font-semibold px-6 py-3 rounded-lg transition-all shadow-lg">
365
- Nachricht senden
366
- </button>
367
- </form>
 
 
368
  </div>
369
  </div>
370
  </div>
371
  </section>
372
 
373
  <!-- Map Section -->
374
- <div class="h-96 bg-gray-200">
 
 
 
 
 
 
 
 
 
375
  <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2427.123456789012!2d13.123456789012345!3d52.12345678901234!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zNTLCsDA3JzI0LjQiTiAxM8KwMDcnMjQuNCJF!5e0!3m2!1sde!2sde!4v1234567890123!5m2!1sde!2sde"
376
  width="100%"
377
  height="100%"
@@ -382,41 +630,72 @@
382
  </div>
383
 
384
  <!-- Footer -->
385
- <footer class="bg-green-900 text-white py-8">
386
- <div class="container mx-auto px-4">
 
 
 
 
 
387
  <div class="flex flex-col md:flex-row justify-between items-center">
388
- <div class="mb-4 md:mb-0">
389
- <div class="flex items-center">
390
- <i class="fas fa-horse-head text-2xl mr-2"></i>
391
- <span class="text-xl font-semibold">Pferdeausbildung</span>
 
 
392
  </div>
393
- <p class="mt-2 text-green-300">Systematisch, strukturiert, pferdegerecht</p>
394
  </div>
395
- <div class="flex space-x-6">
396
- <a href="#" class="text-white hover:text-green-300 transition-all">
397
- <i class="fab fa-facebook-f text-xl"></i>
398
- </a>
399
- <a href="#" class="text-white hover:text-green-300 transition-all">
400
- <i class="fab fa-instagram text-xl"></i>
401
- </a>
402
- <a href="#" class="text-white hover:text-green-300 transition-all">
403
- <i class="fab fa-whatsapp text-xl"></i>
404
- </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  </div>
406
  </div>
407
- <div class="border-t border-green-800 mt-8 pt-8 text-center text-green-300">
408
  <p>&copy; 2023 Pferdeausbildung. Alle Rechte vorbehalten.</p>
409
- <div class="mt-2 flex justify-center space-x-4">
410
- <a href="#" class="hover:text-white transition-all">Impressum</a>
411
- <a href="#" class="hover:text-white transition-all">Datenschutz</a>
412
- </div>
413
  </div>
414
  </div>
415
  </footer>
416
 
417
  <!-- Back to Top Button -->
418
- <button id="backToTop" class="fixed bottom-8 right-8 bg-green-700 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all">
419
- <i class="fas fa-arrow-up"></i>
420
  </button>
421
 
422
  <script>
@@ -474,7 +753,6 @@
474
  });
475
 
476
  document.addEventListener('touchend', () => {
477
- $0
478
  isDragging = false;
479
  });
480
 
@@ -492,6 +770,17 @@ $0
492
  beforeImage.style.width = `${percent}%`;
493
  sliderHandle.style.left = `${percent}%`;
494
  });
 
 
 
 
 
 
 
 
 
 
 
495
  </script>
496
  <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=Frajosgro/homepage-melina" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
497
  </html>
 
6
  <title>Pferdeausbildung - Individuelles Training für Jungpferde & Reiter</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#6C63FF',
15
+ secondary: '#FF6584',
16
+ accent: '#42E2B8',
17
+ dark: '#2F2E41',
18
+ light: '#F8F9FA'
19
+ },
20
+ fontFamily: {
21
+ sans: ['Poppins', 'sans-serif'],
22
+ },
23
+ }
24
+ }
25
+ }
26
+ </script>
27
  <style>
28
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
29
+
30
+ body {
31
+ font-family: 'Poppins', sans-serif;
32
+ }
33
+
34
  .hero-gradient {
35
+ background: linear-gradient(135deg, #6C63FF 0%, #42E2B8 100%);
36
  }
37
+
38
  .card-hover:hover {
39
+ transform: translateY(-10px);
40
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
41
  }
42
+
43
  .transition-all {
44
  transition: all 0.3s ease;
45
  }
46
+
47
  .before-after-container {
48
  position: relative;
49
+ height: 400px;
50
  overflow: hidden;
51
+ border-radius: 20px;
52
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
53
  }
54
+
55
  .before-after-slider {
56
  position: absolute;
57
  width: 100%;
 
59
  background-size: cover;
60
  background-position: center;
61
  }
62
+
63
  .before-image {
64
  width: 50%;
65
  background-image: url('https://images.unsplash.com/photo-1553284965-83fd3e82ab5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
66
  }
67
+
68
  .after-image {
69
  width: 100%;
70
  background-image: url('https://images.unsplash.com/photo-1553284965-5dd8352ff1bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
71
  }
72
+
73
  .slider-handle {
74
  position: absolute;
75
  left: 50%;
 
80
  cursor: ew-resize;
81
  transform: translateX(-50%);
82
  }
83
+
84
  .slider-handle::before {
85
  content: "";
86
  position: absolute;
87
+ width: 40px;
88
+ height: 40px;
89
  border-radius: 50%;
90
+ background: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
91
  left: 50%;
92
  top: 50%;
93
  transform: translate(-50%, -50%);
94
+ box-shadow: 0 4px 15px rgba(0,0,0,0.3);
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: center;
98
+ color: white;
99
+ font-weight: bold;
100
+ content: "↔";
101
+ font-size: 18px;
102
  }
103
+
104
  .gallery-item {
105
  transition: all 0.3s ease;
106
+ border-radius: 15px;
107
+ overflow: hidden;
108
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
109
  }
110
+
111
  .gallery-item:hover {
112
+ transform: scale(1.05);
113
  z-index: 10;
114
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
115
+ }
116
+
117
+ .service-card {
118
+ background: white;
119
+ border-radius: 20px;
120
+ overflow: hidden;
121
+ position: relative;
122
+ z-index: 1;
123
+ }
124
+
125
+ .service-card::before {
126
+ content: "";
127
+ position: absolute;
128
+ top: 0;
129
+ left: 0;
130
+ width: 100%;
131
+ height: 8px;
132
+ background: linear-gradient(90deg, #6C63FF, #FF6584, #42E2B8);
133
+ }
134
+
135
+ .icon-container {
136
+ width: 70px;
137
+ height: 70px;
138
+ border-radius: 20px;
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ margin-bottom: 20px;
143
+ background: linear-gradient(135deg, #6C63FF 0%, #42E2B8 100%);
144
+ color: white;
145
+ box-shadow: 0 10px 15px -3px rgba(108, 99, 255, 0.3);
146
+ }
147
+
148
+ .shape-1 {
149
+ position: absolute;
150
+ width: 200px;
151
+ height: 200px;
152
+ border-radius: 30px;
153
+ background: rgba(108, 99, 255, 0.1);
154
+ transform: rotate(45deg);
155
+ z-index: -1;
156
+ }
157
+
158
+ .shape-2 {
159
+ position: absolute;
160
+ width: 150px;
161
+ height: 150px;
162
+ border-radius: 50%;
163
+ background: rgba(255, 101, 132, 0.1);
164
+ z-index: -1;
165
+ }
166
+
167
+ .contact-card {
168
+ background: white;
169
+ border-radius: 20px;
170
+ padding: 30px;
171
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
172
+ position: relative;
173
+ overflow: hidden;
174
+ }
175
+
176
+ .contact-card::after {
177
+ content: "";
178
+ position: absolute;
179
+ bottom: 0;
180
+ left: 0;
181
+ width: 100%;
182
+ height: 8px;
183
+ background: linear-gradient(90deg, #6C63FF, #FF6584, #42E2B8);
184
+ }
185
+
186
+ .footer-wave {
187
+ position: absolute;
188
+ top: 0;
189
+ left: 0;
190
+ width: 100%;
191
+ overflow: hidden;
192
+ line-height: 0;
193
+ }
194
+
195
+ .footer-wave svg {
196
+ position: relative;
197
+ display: block;
198
+ width: calc(100% + 1.3px);
199
+ height: 100px;
200
+ }
201
+
202
+ .footer-wave .shape-fill {
203
+ fill: #FFFFFF;
204
+ }
205
+
206
+ .nav-link {
207
+ position: relative;
208
+ }
209
+
210
+ .nav-link::after {
211
+ content: '';
212
+ position: absolute;
213
+ width: 0;
214
+ height: 3px;
215
+ bottom: -5px;
216
+ left: 0;
217
+ background: linear-gradient(90deg, #6C63FF, #FF6584);
218
+ transition: width 0.3s ease;
219
+ }
220
+
221
+ .nav-link:hover::after {
222
+ width: 100%;
223
+ }
224
+
225
+ .btn-primary {
226
+ background: linear-gradient(135deg, #6C63FF 0%, #42E2B8 100%);
227
+ box-shadow: 0 10px 15px -3px rgba(108, 99, 255, 0.3);
228
+ }
229
+
230
+ .btn-primary:hover {
231
+ transform: translateY(-3px);
232
+ box-shadow: 0 15px 20px -5px rgba(108, 99, 255, 0.4);
233
+ }
234
+
235
+ .btn-secondary {
236
+ background: white;
237
+ color: #6C63FF;
238
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
239
+ }
240
+
241
+ .btn-secondary:hover {
242
+ transform: translateY(-3px);
243
+ box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.2);
244
  }
245
  </style>
246
  </head>
247
+ <body class="bg-light text-dark">
248
  <!-- Header/Navigation -->
249
  <header class="bg-white shadow-sm sticky top-0 z-50">
250
  <div class="container mx-auto px-4 py-4 flex justify-between items-center">
251
  <div class="flex items-center">
252
+ <div class="icon-container mr-3">
253
+ <i class="fas fa-horse-head text-2xl"></i>
254
+ </div>
255
+ <span class="text-2xl font-bold bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Pferdeausbildung</span>
256
  </div>
257
  <nav class="hidden md:flex space-x-8">
258
+ <a href="#services" class="nav-link text-dark font-medium transition-all">Leistungen</a>
259
+ <a href="#philosophy" class="nav-link text-dark font-medium transition-all">Philosophie</a>
260
+ <a href="#gallery" class="nav-link text-dark font-medium transition-all">Galerie</a>
261
+ <a href="#contact" class="nav-link text-dark font-medium transition-all">Kontakt</a>
262
  </nav>
263
+ <button class="md:hidden text-primary">
264
  <i class="fas fa-bars text-2xl"></i>
265
  </button>
266
  </div>
267
  </header>
268
 
269
  <!-- Hero Section -->
270
+ <section class="hero-gradient text-white py-20 md:py-32 relative overflow-hidden">
271
+ <div class="shape-1 -top-20 -left-20"></div>
272
+ <div class="shape-2 -bottom-10 -right-10"></div>
273
+ <div class="container mx-auto px-4 text-center relative z-10">
274
+ <h1 class="text-5xl md:text-6xl font-bold mb-6">Individuelle Pferdeausbildung</h1>
275
  <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Systematisch, strukturiert und pferdegerecht – für ein ausbalanciertes Pferd mit Freude an der Arbeit</p>
276
  <div class="flex flex-col sm:flex-row justify-center gap-4">
277
+ <a href="#contact" class="btn-primary font-semibold px-8 py-4 rounded-full transition-all">
278
  Jetzt unverbindlich anfragen
279
  </a>
280
+ <a href="#services" class="btn-secondary font-semibold px-8 py-4 rounded-full transition-all">
281
  Mehr erfahren
282
  </a>
283
  </div>
 
285
  </section>
286
 
287
  <!-- Services Section -->
288
+ <section id="services" class="py-20 bg-white relative overflow-hidden">
289
+ <div class="shape-1 -top-20 right-0 opacity-30"></div>
290
  <div class="container mx-auto px-4">
291
+ <div class="text-center mb-16">
292
+ <h2 class="text-4xl font-bold mb-4 bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Meine Leistungen</h2>
293
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Individuell abgestimmte Trainingskonzepte für jedes Pferd und jeden Reiter</p>
294
+ </div>
295
 
296
  <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
297
  <!-- Service Card 1 -->
298
+ <div class="service-card p-8 card-hover transition-all">
299
+ <div class="icon-container">
300
+ <i class="fas fa-horse text-2xl"></i>
301
  </div>
302
+ <h3 class="text-2xl font-semibold text-dark mb-3">Jungpferdeausbildung</h3>
303
  <p class="text-gray-600 mb-4">Systematische und pferdegerechte Grundausbildung für junge Pferde, die eine solide Basis für ihre weitere Entwicklung legt.</p>
304
  <p class="text-gray-600">Strukturiertes Training mit Geduld und klaren Prozessen für ein vertrauensvolles, sicheres Pferd.</p>
305
  </div>
306
 
307
  <!-- Service Card 2 -->
308
+ <div class="service-card p-8 card-hover transition-all">
309
+ <div class="icon-container">
310
+ <i class="fas fa-user-tie text-2xl"></i>
311
  </div>
312
+ <h3 class="text-2xl font-semibold text-dark mb-3">Beritt & Reitunterricht</h3>
313
  <p class="text-gray-600 mb-4">Individueller Beritt für Ihr Pferd sowie stationärer und mobiler Reitunterricht für eine harmonische Partnerschaft.</p>
314
  <p class="text-gray-600">Anpassung an die Bedürfnisse von Pferd und Reiter für optimale Fortschritte.</p>
315
  </div>
316
 
317
  <!-- Service Card 3 -->
318
+ <div class="service-card p-8 card-hover transition-all">
319
+ <div class="icon-container">
320
+ <i class="fas fa-hands-helping text-2xl"></i>
321
  </div>
322
+ <h3 class="text-2xl font-semibold text-dark mb-3">Handarbeit & Doppellonge</h3>
323
  <p class="text-gray-600 mb-4">Förderung von Balance und Selbsthaltung durch gezielte Bodenarbeit ohne Reitergewicht.</p>
324
  <p class="text-gray-600">Ideal für Jungpferde und zur Korrektur von älteren Pferden.</p>
325
  </div>
326
 
327
  <!-- Service Card 4 -->
328
+ <div class="service-card p-8 card-hover transition-all">
329
+ <div class="icon-container">
330
+ <i class="fas fa-chair text-2xl"></i>
331
  </div>
332
+ <h3 class="text-2xl font-semibold text-dark mb-3">Sitzschulung</h3>
333
  <p class="text-gray-600 mb-4">Feine Hilfengebung und korrekte Einwirkung durch optimierten Reitersitz.</p>
334
  <p class="text-gray-600">Individuelle Korrekturen für eine bessere Kommunikation mit dem Pferd.</p>
335
  </div>
336
 
337
  <!-- Service Card 5 -->
338
+ <div class="service-card p-8 card-hover transition-all">
339
+ <div class="icon-container">
340
+ <i class="fas fa-tree text-2xl"></i>
341
  </div>
342
+ <h3 class="text-2xl font-semibold text-dark mb-3">Geländetraining</h3>
343
  <p class="text-gray-600 mb-4">Steigerung von Trittsicherheit, Mut und Alltagsroutine durch gezieltes Geländetraining.</p>
344
  <p class="text-gray-600">Vorbereitung auf Ausritte und Turniere in natürlicher Umgebung.</p>
345
  </div>
346
 
347
  <!-- Service Card 6 -->
348
+ <div class="service-card p-8 card-hover transition-all">
349
+ <div class="icon-container">
350
+ <i class="fas fa-star text-2xl"></i>
351
  </div>
352
+ <h3 class="text-2xl font-semibold text-dark mb-3">Individuelle Pakete</h3>
353
  <p class="text-gray-600 mb-4">Kombination verschiedener Leistungen für maßgeschneidertes Training.</p>
354
  <p class="text-gray-600">Gerne erstelle ich ein auf Ihr Pferd abgestimmtes Konzept.</p>
355
  </div>
 
358
  </section>
359
 
360
  <!-- Philosophy Section -->
361
+ <section id="philosophy" class="py-20 bg-gradient-to-br from-primary/10 to-accent/10 relative overflow-hidden">
362
+ <div class="shape-2 top-20 left-0 opacity-20"></div>
363
  <div class="container mx-auto px-4">
364
  <div class="flex flex-col lg:flex-row items-center gap-12">
365
+ <div class="lg:w-1/2 relative">
366
  <img src="https://images.unsplash.com/photo-1583121274602-3e2820c69888?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
367
  alt="Pferd und Trainer"
368
+ class="rounded-3xl shadow-2xl w-full h-auto">
369
+ <div class="absolute -bottom-6 -right-6 bg-secondary text-white px-6 py-3 rounded-full shadow-lg">
370
+ <i class="fas fa-heart mr-2"></i> Seit 2010 für Pferde im Einsatz
371
+ </div>
372
  </div>
373
  <div class="lg:w-1/2">
374
+ <h2 class="text-4xl font-bold mb-6 bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Meine Philosophie</h2>
375
+ <p class="text-lg text-gray-700 mb-6">
376
  Mein ganzheitlicher Trainingsansatz zielt darauf ab, ein tragfähiges, ausbalanciertes Pferd zu entwickeln, das Freude an der Arbeit hat.
377
  </p>
378
+ <p class="text-gray-700 mb-8">
379
  Besonders bei Jungpferden lege ich Wert auf feine Kommunikation, klare Strukturen und geduldiges Vorgehen. Jeder Lernschritt wird sorgfältig aufgebaut, um das Pferd nicht zu überfordern und Vertrauen aufzubauen.
380
  </p>
381
  <div class="space-y-4">
382
+ <div class="flex items-start bg-white p-4 rounded-xl shadow-sm">
383
+ <div class="bg-primary text-white p-2 rounded-full mr-4">
384
+ <i class="fas fa-check"></i>
385
+ </div>
386
+ <div>
387
+ <h4 class="font-semibold text-lg text-dark mb-1">Individuell</h4>
388
+ <p class="text-gray-600">Jedes Pferd erhält ein auf seine Bedürfnisse abgestimmtes Training.</p>
389
  </div>
 
390
  </div>
391
+ <div class="flex items-start bg-white p-4 rounded-xl shadow-sm">
392
+ <div class="bg-accent text-white p-2 rounded-full mr-4">
393
+ <i class="fas fa-check"></i>
394
+ </div>
395
+ <div>
396
+ <h4 class="font-semibold text-lg text-dark mb-1">Pferdegerecht</h4>
397
+ <p class="text-gray-600">Respektvolle Ausbildung ohne Druck oder Gewalt.</p>
398
  </div>
 
399
  </div>
400
+ <div class="flex items-start bg-white p-4 rounded-xl shadow-sm">
401
+ <div class="bg-secondary text-white p-2 rounded-full mr-4">
402
+ <i class="fas fa-check"></i>
403
+ </div>
404
+ <div>
405
+ <h4 class="font-semibold text-lg text-dark mb-1">Nachhaltig</h4>
406
+ <p class="text-gray-600">Solide Grundlagen für eine langfristige Entwicklung.</p>
407
  </div>
 
408
  </div>
409
  </div>
410
  </div>
 
413
  </section>
414
 
415
  <!-- Before/After Section -->
416
+ <section class="py-20 bg-white">
417
  <div class="container mx-auto px-4">
418
+ <div class="text-center mb-16">
419
+ <h2 class="text-4xl font-bold mb-4 bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Trainingserfolge</h2>
420
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Sehen Sie selbst den Unterschied vor und nach dem Training</p>
421
+ </div>
422
+ <div class="before-after-container">
423
  <div class="before-after-slider before-image"></div>
424
  <div class="before-after-slider after-image"></div>
425
  <div class="slider-handle"></div>
426
  </div>
427
+ <div class="mt-12 text-center">
428
+ <p class="text-xl font-medium text-dark mb-2">"Aus einem unsicheren Jungpferd wird ein selbstbewusster Partner"</p>
429
+ <div class="flex justify-center items-center">
430
+ <div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-3">
431
+ <i class="fas fa-quote-left"></i>
432
+ </div>
433
+ <p class="text-gray-600 italic">- Zufriedener Kunde</p>
434
+ </div>
435
  </div>
436
  </div>
437
  </section>
438
 
439
  <!-- Gallery Section -->
440
+ <section id="gallery" class="py-20 bg-gradient-to-br from-primary/10 to-accent/10">
441
  <div class="container mx-auto px-4">
442
+ <div class="text-center mb-16">
443
+ <h2 class="text-4xl font-bold mb-4 bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Galerie & Impressionen</h2>
444
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Einblicke in meine Arbeit mit Pferden und Reitern</p>
445
+ </div>
446
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
447
+ <div class="gallery-item rounded-lg overflow-hidden">
448
  <img src="https://images.unsplash.com/photo-1553284965-83fd3e82ab5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
449
  alt="Jungpferd Training"
450
+ class="w-full h-64 object-cover">
451
  </div>
452
+ <div class="gallery-item rounded-lg overflow-hidden">
453
  <img src="https://images.unsplash.com/photo-1553284965-5dd8352ff1bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
454
  alt="Beritt"
455
+ class="w-full h-64 object-cover">
456
  </div>
457
+ <div class="gallery-item rounded-lg overflow-hidden">
458
  <img src="https://images.unsplash.com/photo-1583121274602-3e2820c69888?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
459
  alt="Handarbeit"
460
+ class="w-full h-64 object-cover">
461
  </div>
462
+ <div class="gallery-item rounded-lg overflow-hidden">
463
  <img src="https://images.unsplash.com/photo-1605559421013-9a5dcde8b6d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
464
  alt="Doppellonge"
465
+ class="w-full h-64 object-cover">
466
  </div>
467
+ <div class="gallery-item rounded-lg overflow-hidden">
468
  <img src="https://images.unsplash.com/photo-1605559420909-d37c5bb1ee50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
469
  alt="Sitzschulung"
470
+ class="w-full h-64 object-cover">
471
  </div>
472
+ <div class="gallery-item rounded-lg overflow-hidden">
473
  <img src="https://images.unsplash.com/photo-1605559421013-9a5dcde8b6d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
474
  alt="Geländetraining"
475
+ class="w-full h-64 object-cover">
476
  </div>
477
+ <div class="gallery-item rounded-lg overflow-hidden">
478
  <img src="https://images.unsplash.com/photo-1553284966-3e6ae56d0e41?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
479
  alt="Jungpferd"
480
+ class="w-full h-64 object-cover">
481
  </div>
482
+ <div class="gallery-item rounded-lg overflow-hidden">
483
  <img src="https://images.unsplash.com/photo-1553284966-3e6ae56d0e41?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
484
  alt="Training"
485
+ class="w-full h-64 object-cover">
486
  </div>
487
  </div>
488
+ <div class="text-center mt-12">
489
+ <button class="btn-primary font-semibold px-8 py-3 rounded-full transition-all">
490
+ <i class="fas fa-images mr-2"></i> Alle Bilder ansehen
491
+ </button>
492
+ </div>
493
  </div>
494
  </section>
495
 
496
  <!-- Contact Section -->
497
+ <section id="contact" class="py-20 bg-dark text-white relative overflow-hidden">
498
+ <div class="shape-1 top-0 left-0 opacity-10"></div>
499
  <div class="container mx-auto px-4">
500
+ <div class="text-center mb-16">
501
+ <h2 class="text-4xl font-bold mb-4 bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Kontakt</h2>
502
+ <p class="text-lg text-gray-300 max-w-2xl mx-auto">Vereinbaren Sie noch heute einen Termin für ein unverbindliches Beratungsgespräch</p>
503
+ </div>
504
  <div class="flex flex-col lg:flex-row gap-12">
505
  <div class="lg:w-1/2">
506
+ <div class="contact-card text-dark">
507
+ <h3 class="text-2xl font-semibold mb-6">Kontaktinformationen</h3>
508
+ <div class="space-y-6">
509
+ <div class="flex items-start">
510
+ <div class="bg-primary/10 text-primary p-3 rounded-lg mr-4">
511
+ <i class="fas fa-map-marker-alt text-xl"></i>
512
+ </div>
513
+ <div>
514
+ <p class="font-medium text-lg">Standort</p>
515
+ <p>Musterstraße 123, 12345 Musterstadt</p>
516
+ <p class="text-primary mt-1 font-medium">Einzugsgebiet: 50 km Umkreis</p>
517
+ </div>
518
  </div>
519
+ <div class="flex items-start">
520
+ <div class="bg-primary/10 text-primary p-3 rounded-lg mr-4">
521
+ <i class="fas fa-mobile-alt text-xl"></i>
522
+ </div>
523
+ <div>
524
+ <p class="font-medium text-lg">Telefon</p>
525
+ <p>+49 123 456789</p>
526
+ </div>
527
  </div>
528
+ <div class="flex items-start">
529
+ <div class="bg-primary/10 text-primary p-3 rounded-lg mr-4">
530
+ <i class="fas fa-envelope text-xl"></i>
531
+ </div>
532
+ <div>
533
+ <p class="font-medium text-lg">E-Mail</p>
534
535
+ </div>
536
  </div>
537
+ <div class="flex items-start">
538
+ <div class="bg-primary/10 text-primary p-3 rounded-lg mr-4">
539
+ <i class="fab fa-whatsapp text-xl"></i>
540
+ </div>
541
+ <div>
542
+ <p class="font-medium text-lg">WhatsApp</p>
543
+ <p>+49 123 456789</p>
544
+ <a href="https://wa.me/49123456789" class="inline-block mt-3 bg-primary hover:bg-primary/90 text-white px-6 py-2 rounded-full transition-all">
545
+ <i class="fab fa-whatsapp mr-2"></i> Nachricht senden
546
+ </a>
547
+ </div>
548
  </div>
549
  </div>
550
+ <div class="mt-10">
551
+ <h3 class="text-2xl font-semibold mb-4">Öffnungszeiten</h3>
552
+ <div class="space-y-3">
553
+ <div class="flex justify-between border-b border-gray-200 pb-2">
554
+ <span>Montag - Freitag</span>
555
+ <span class="font-medium">8:00 - 18:00 Uhr</span>
556
+ </div>
557
+ <div class="flex justify-between border-b border-gray-200 pb-2">
558
+ <span>Samstag</span>
559
+ <span class="font-medium">9:00 - 14:00 Uhr</span>
560
+ </div>
561
+ <div class="flex justify-between">
562
+ <span>Sonntag</span>
563
+ <span class="font-medium">nach Vereinbarung</span>
564
+ </div>
565
+ </div>
566
  </div>
567
  </div>
568
  </div>
569
  <div class="lg:w-1/2">
570
+ <div class="contact-card h-full">
571
+ <h3 class="text-2xl font-semibold mb-6">Kontaktformular</h3>
572
+ <form class="space-y-5">
573
+ <div>
574
+ <label for="name" class="block mb-2 font-medium">Name</label>
575
+ <input type="text" id="name" class="w-full px-5 py-3 rounded-lg bg-gray-100 border border-gray-200 focus:outline-none focus:ring-2 focus:ring-primary text-dark">
576
+ </div>
577
+ <div>
578
+ <label for="email" class="block mb-2 font-medium">E-Mail</label>
579
+ <input type="email" id="email" class="w-full px-5 py-3 rounded-lg bg-gray-100 border border-gray-200 focus:outline-none focus:ring-2 focus:ring-primary text-dark">
580
+ </div>
581
+ <div>
582
+ <label for="phone" class="block mb-2 font-medium">Telefon</label>
583
+ <input type="tel" id="phone" class="w-full px-5 py-3 rounded-lg bg-gray-100 border border-gray-200 focus:outline-none focus:ring-2 focus:ring-primary text-dark">
584
+ </div>
585
+ <div>
586
+ <label for="service" class="block mb-2 font-medium">Interesse an</label>
587
+ <select id="service" class="w-full px-5 py-3 rounded-lg bg-gray-100 border border-gray-200 focus:outline-none focus:ring-2 focus:ring-primary text-dark">
588
+ <option value="">Bitte auswählen</option>
589
+ <option value="jungpferde">Jungpferdeausbildung</option>
590
+ <option value="beritt">Beritt</option>
591
+ <option value="unterricht">Reitunterricht</option>
592
+ <option value="handarbeit">Handarbeit & Doppellonge</option>
593
+ <option value="sitzschulung">Sitzschulung</option>
594
+ <option value="gelände">Geländetraining</option>
595
+ <option value="sonstiges">Sonstiges</option>
596
+ </select>
597
+ </div>
598
+ <div>
599
+ <label for="message" class="block mb-2 font-medium">Nachricht</label>
600
+ <textarea id="message" rows="5" class="w-full px-5 py-3 rounded-lg bg-gray-100 border border-gray-200 focus:outline-none focus:ring-2 focus:ring-primary text-dark"></textarea>
601
+ </div>
602
+ <button type="submit" class="w-full btn-primary font-semibold px-6 py-4 rounded-lg transition-all mt-6">
603
+ <i class="fas fa-paper-plane mr-2"></i> Nachricht senden
604
+ </button>
605
+ </form>
606
+ </div>
607
  </div>
608
  </div>
609
  </div>
610
  </section>
611
 
612
  <!-- Map Section -->
613
+ <div class="h-96 bg-gray-200 relative">
614
+ <div class="absolute inset-0 bg-primary/10 flex items-center justify-center">
615
+ <div class="text-center p-8 bg-white rounded-xl shadow-xl max-w-md mx-4">
616
+ <h3 class="text-2xl font-bold text-dark mb-3">Besuchen Sie uns</h3>
617
+ <p class="text-gray-600 mb-4">Vereinbaren Sie einen Termin für ein persönliches Gespräch und eine Stallbesichtigung.</p>
618
+ <a href="#contact" class="btn-primary font-semibold px-6 py-3 rounded-full inline-block transition-all">
619
+ Termin vereinbaren
620
+ </a>
621
+ </div>
622
+ </div>
623
  <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2427.123456789012!2d13.123456789012345!3d52.12345678901234!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zNTLCsDA3JzI0LjQiTiAxM8KwMDcnMjQuNCJF!5e0!3m2!1sde!2sde!4v1234567890123!5m2!1sde!2sde"
624
  width="100%"
625
  height="100%"
 
630
  </div>
631
 
632
  <!-- Footer -->
633
+ <footer class="bg-dark text-white pt-20 relative">
634
+ <div class="footer-wave">
635
+ <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
636
+ <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
637
+ </svg>
638
+ </div>
639
+ <div class="container mx-auto px-4 pb-12">
640
  <div class="flex flex-col md:flex-row justify-between items-center">
641
+ <div class="mb-8 md:mb-0 text-center md:text-left">
642
+ <div class="flex items-center justify-center md:justify-start">
643
+ <div class="icon-container mr-3">
644
+ <i class="fas fa-horse-head text-2xl"></i>
645
+ </div>
646
+ <span class="text-2xl font-bold bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">Pferdeausbildung</span>
647
  </div>
648
+ <p class="mt-4 text-gray-300 max-w-md">Systematisch, strukturiert, pferdegerecht – für ein ausbalanciertes Pferd mit Freude an der Arbeit</p>
649
  </div>
650
+ <div class="flex flex-col sm:flex-row gap-8">
651
+ <div>
652
+ <h4 class="text-lg font-semibold mb-4 text-white">Navigation</h4>
653
+ <ul class="space-y-2">
654
+ <li><a href="#services" class="text-gray-300 hover:text-primary transition-all">Leistungen</a></li>
655
+ <li><a href="#philosophy" class="text-gray-300 hover:text-primary transition-all">Philosophie</a></li>
656
+ <li><a href="#gallery" class="text-gray-300 hover:text-primary transition-all">Galerie</a></li>
657
+ <li><a href="#contact" class="text-gray-300 hover:text-primary transition-all">Kontakt</a></li>
658
+ </ul>
659
+ </div>
660
+ <div>
661
+ <h4 class="text-lg font-semibold mb-4 text-white">Rechtliches</h4>
662
+ <ul class="space-y-2">
663
+ <li><a href="#" class="text-gray-300 hover:text-primary transition-all">Impressum</a></li>
664
+ <li><a href="#" class="text-gray-300 hover:text-primary transition-all">Datenschutz</a></li>
665
+ <li><a href="#" class="text-gray-300 hover:text-primary transition-all">AGB</a></li>
666
+ </ul>
667
+ </div>
668
+ <div>
669
+ <h4 class="text-lg font-semibold mb-4 text-white">Social Media</h4>
670
+ <div class="flex space-x-4">
671
+ <a href="#" class="bg-primary text-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-primary/90 transition-all">
672
+ <i class="fab fa-facebook-f"></i>
673
+ </a>
674
+ <a href="#" class="bg-secondary text-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-secondary/90 transition-all">
675
+ <i class="fab fa-instagram"></i>
676
+ </a>
677
+ <a href="#" class="bg-accent text-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-accent/90 transition-all">
678
+ <i class="fab fa-whatsapp"></i>
679
+ </a>
680
+ </div>
681
+ <div class="mt-4">
682
+ <a href="#contact" class="inline-flex items-center text-primary font-medium">
683
+ <i class="fas fa-envelope mr-2"></i> Newsletter abonnieren
684
+ </a>
685
+ </div>
686
+ </div>
687
  </div>
688
  </div>
689
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
690
  <p>&copy; 2023 Pferdeausbildung. Alle Rechte vorbehalten.</p>
691
+ <p class="mt-2">Made with <i class="fas fa-heart text-secondary"></i> for horses</p>
 
 
 
692
  </div>
693
  </div>
694
  </footer>
695
 
696
  <!-- Back to Top Button -->
697
+ <button id="backToTop" class="fixed bottom-8 right-8 bg-gradient-to-br from-primary to-secondary text-white w-14 h-14 rounded-full shadow-2xl flex items-center justify-center opacity-0 invisible transition-all hover:shadow-lg hover:scale-105">
698
+ <i class="fas fa-arrow-up text-xl"></i>
699
  </button>
700
 
701
  <script>
 
753
  });
754
 
755
  document.addEventListener('touchend', () => {
 
756
  isDragging = false;
757
  });
758
 
 
770
  beforeImage.style.width = `${percent}%`;
771
  sliderHandle.style.left = `${percent}%`;
772
  });
773
+
774
+ // Smooth scrolling for anchor links
775
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
776
+ anchor.addEventListener('click', function (e) {
777
+ e.preventDefault();
778
+
779
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
780
+ behavior: 'smooth'
781
+ });
782
+ });
783
+ });
784
  </script>
785
  <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=Frajosgro/homepage-melina" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
786
  </html>
prompts.txt CHANGED
@@ -0,0 +1 @@
 
 
1
+ ändere bitte das Farbdesign, es können auch individuelle formen und mehrfabrige Elemente geben, es muss mehr vibrant werden - anschaulich und ein einzgartiges Endergebnis erzielen.