Refactor code structure and remove redundant changes
This commit is contained in:
@@ -0,0 +1,230 @@
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Kraftwerk | Dein Weg zur körperlichen Stärke</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<style>
|
||||
:root {
|
||||
--color-primary: #B91C1C; /* Deep Red - Strong, Energetic */
|
||||
--color-secondary: #475569; /* Slate Gray - Grounded, Professional */
|
||||
--color-background: #F9FAFB; /* Light Gray */
|
||||
}
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: var(--color-background);
|
||||
}
|
||||
.btn-primary {
|
||||
background-color: var(--color-primary);
|
||||
transition: background-color 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
.btn-primary:hover {
|
||||
background-color: #991b1b; /* Darker Red */
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
.card-hover {
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
.card-hover:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: 0 15px 30px rgba(185, 28, 28, 0.2);
|
||||
}
|
||||
/* Custom Gradient for Hero */
|
||||
.hero-bg {
|
||||
background-image: linear-gradient(to bottom, #FEF2F2, #E5E7EB);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="text-gray-800 antialiased">
|
||||
|
||||
<!-- Navigation -->
|
||||
<header class="sticky top-0 z-50 bg-white shadow-lg">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="flex justify-between items-center h-16">
|
||||
<!-- Logo / Brand Name -->
|
||||
<div class="flex-shrink-0">
|
||||
<a href="#" class="text-3xl font-extrabold tracking-tight" style="color: var(--color-primary);">
|
||||
Kraftwerk
|
||||
</a>
|
||||
</div>
|
||||
<!-- Desktop Menu -->
|
||||
<div class="hidden md:flex space-x-8">
|
||||
<a href="#methodik" class="text-lg font-medium hover:text-red-700 transition duration-150 p-2">Methode</a>
|
||||
<a href="#leistungen" class="text-lg font-medium hover:text-red-700 transition duration-150 p-2">Angebote</a>
|
||||
<a href="#erfolge" class="text-lg font-medium hover:text-red-700 transition duration-150 p-2">Erfolge</a>
|
||||
<a href="#kontakt" class="text-lg font-medium hover:text-red-700 transition duration-150 p-2">Kontakt</a>
|
||||
</div>
|
||||
<!-- CTA Button (Desktop) -->
|
||||
<div class="hidden md:block">
|
||||
<a href="#kontakt" class="btn-primary text-white font-semibold py-2 px-4 rounded-lg shadow-md">
|
||||
Jetzt Starten
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Mobile Menu (Hidden by default, controlled by JS) -->
|
||||
<div id="mobile-menu" class="md:hidden bg-white shadow-md border-t hidden">
|
||||
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
|
||||
<a href="#methodik" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-gray-100">Methode</a>
|
||||
<a href="#leistungen" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-gray-100">Angebote</a>
|
||||
<a href="#erfolge" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-gray-100">Erfolge</a>
|
||||
<a href="#kontakt" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-gray-100">Kontakt</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 1. Hero Section -->
|
||||
<section class="hero-bg pt-16 pb-20 border-b" style="background-image: linear-gradient(to bottom, #FEF2F2, #E5E7EB);">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||
<h1 class="text-6xl sm:text-7xl font-extrabold mb-4 leading-tight tracking-tight">
|
||||
Baut Deine Kraft. <span class="block text-red-700 mt-2">Definiere Deine Stärke.</span>
|
||||
</h1>
|
||||
<p class="text-xl sm:text-2xl text-gray-600 mb-10 max-w-3xl mx-auto font-medium">
|
||||
Kraftwerk ist mehr als Training. Es ist die systematische Transformation deines Körpers und deines Geistes durch Coaching, das messbare Ergebnisse liefert.
|
||||
</p>
|
||||
<div class="flex justify-center space-x-4">
|
||||
<a href="#kontakt" class="btn-primary text-white text-xl font-bold py-3 px-8 rounded-xl shadow-xl hover:shadow-2xl">
|
||||
Kostenloses Erstgespräch
|
||||
</a>
|
||||
<a href="#leistungen" class="bg-white border-2 border-gray-300 text-gray-800 text-xl font-semibold py-3 px-8 rounded-xl shadow-md hover:bg-gray-50 transition duration-300">
|
||||
Alle Angebote Sehen
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 2. Value Proposition / Methodik Section -->
|
||||
<section id="methodik" class="py-20 sm:py-28">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-sm uppercase tracking-widest text-red-600 font-semibold mb-2">DIE STRUKTUR</h2>
|
||||
<p class="text-5xl sm:text-6xl font-extrabold text-gray-900">
|
||||
Die Kraftwerk-Methode
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
|
||||
|
||||
<!-- Card 1 -->
|
||||
<div class="card-hover bg-white p-8 rounded-2xl shadow-lg border-t-4 border-red-600 transition duration-300">
|
||||
<div class="text-5xl mb-4 text-red-600">⚙️</div>
|
||||
<h3 class="text-2xl font-bold mb-3 text-gray-900">Analyse & Diagnose</h3>
|
||||
<p class="text-gray-600">
|
||||
Wir beginnen nicht mit dem Training, sondern mit der tiefgehenden Analyse deiner aktuellen Lebenssituation, deiner Ziele und deiner körperlichen Ausgangsbasis. Keine leeren Versprechen – nur datengestützte Planung.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card 2 -->
|
||||
<div class="card-hover bg-white p-8 rounded-2xl shadow-lg border-t-4 border-red-600 transition duration-300">
|
||||
<div class="text-5xl mb-4 text-red-600">🎯</div>
|
||||
<h3 class="text-2xl font-bold mb-3 text-gray-900">Gezieltes Programmieren</h3>
|
||||
<p class="text-gray-600">
|
||||
Ob Hypertrophie, Kraftsteigerung oder Stoffwechseloptimierung – dein Programm wird individuell angepasst und kontinuierlich an deine Fortschritte angepasst, nicht standardisiert.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card 3 -->
|
||||
<div class="card-hover bg-white p-8 rounded-2xl shadow-lg border-t-4 border-red-600 transition duration-300">
|
||||
<div class="text-5xl mb-4 text-red-600">🚀</div>
|
||||
<h3 class="text-2xl font-bold mb-3 text-gray-900">Nachhaltige Umsetzung</h3>
|
||||
<p class="text-gray-600">
|
||||
Training allein reicht nicht. Wir integrieren Ernährung, Regeneration und mentale Haltung, um langfristige, tiefgreifende und gesunde Veränderungen zu gewährleisten.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 3. Services/Leistungen Section -->
|
||||
<section id="leistungen" class="bg-gray-50 py-20 sm:py-28">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-sm uppercase tracking-widest text-red-600 font-semibold mb-2">UNSERE ANBIETE</h2>
|
||||
<p class="text-5xl sm:text-6xl font-extrabold text-gray-900">
|
||||
Wähle deinen Weg zur Stärke
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
||||
|
||||
<!-- Service Card 1: Intensiv Coaching -->
|
||||
<div class="lg:col-span-2 bg-white p-10 rounded-3xl shadow-2xl border-b-8 border-red-600 card-hover">
|
||||
<h3 class="text-4xl font-bold text-gray-900 mb-4 leading-snug">
|
||||
Premium-Coaching (1:1)
|
||||
</h3>
|
||||
<p class="text-lg text-gray-600 mb-6 border-l-4 border-gray-300 pl-3 italic">
|
||||
Intensives, persönliches Training, Ernährungsberatung und mentale Stärkung in einem maßgeschneiderten Programm.
|
||||
</p>
|
||||
<ul class="space-y-3 text-gray-700 mb-8">
|
||||
<li class="flex items-center"><span class="text-red-600 mr-2 font-extrabold">✓</span> Individuelle Trainingspläne</li>
|
||||
<li class="flex items-center"><span class="text-red-600 mr-2 font-extrabold">✓</span> Ernährungsberatung (Mikronährstoff-Fokus)</li>
|
||||
<li class="flex items-center"><span class="text-red-600 mr-2 font-extrabold">✓</span> Laufende Performance-Analyse</li>
|
||||
<li class="flex items-center"><span class="text-red-600 mr-2 font-extrabold">✓</span> Maximale Skalierbarkeit deiner Ziele</li>
|
||||
</ul>
|
||||
<p class="text-xl font-bold text-red-600 mb-6">Ab €199 / Monat</p>
|
||||
<a href="#kontakt" class="btn-primary text-white text-lg font-semibold py-3 px-6 rounded-xl shadow-lg transition duration-300">
|
||||
Programm starten
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Service Card 2: Community/Digital -->
|
||||
<div class="bg-white p-10 rounded-3xl shadow-lg border-t-4 border-gray-400 lg:col-span-1 card-hover">
|
||||
<h3 class="text-3xl font-bold mb-3 text-gray-900">
|
||||
Stärke Community (Digital)
|
||||
</h3>
|
||||
<p class="text-gray-600 mb-6">
|
||||
Für alle, die Selbstdisziplin suchen. Zugriff auf Video-Bibliotheken, Trainingspläne und die Community-Unterstützung.
|
||||
</p>
|
||||
<div class="flex items-center mb-6">
|
||||
<span class="text-4xl text-red-600 mr-3">👥</span>
|
||||
<p class="text-lg font-semibold">Gemeinschaftlicher Fortschritt</p>
|
||||
</div>
|
||||
<p class="text-xl font-bold text-gray-600 mb-6">Ab €49 / Monat</p>
|
||||
<a href="#kontakt" class="bg-gray-200 text-gray-800 text-lg font-semibold py-3 px-6 rounded-xl shadow-md hover:bg-gray-300 transition duration-300">
|
||||
Details ansehen
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 4. Testimonials/Erfolge Section -->
|
||||
<section id="erfolge" class="py-20 sm:py-28">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-sm uppercase tracking-widest text-red-600 font-semibold mb-2">ERFOLGE</h2>
|
||||
<p class="text-5xl sm:text-6xl font-extrabold text-gray-900">
|
||||
Echte Transformationen
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
|
||||
|
||||
<!-- Testimonial 1 -->
|
||||
<div class="bg-white p-8 rounded-2xl shadow-xl border-l-8 border-red-400 card-hover">
|
||||
<p class="text-4xl mb-4 text-gray-500">“</p>
|
||||
<p class="text-xl italic text-gray-700 mb-6">
|
||||
"Innerhalb von sechs Monaten habe ich nicht nur Muskelmasse aufgebaut, sondern auch meine mentale Disziplin revolutioniert. Kraftwerk hat mir Struktur gegeben, die ich mir selbst nicht bauen konnte."
|
||||
</p>
|
||||
<div class="font-bold text-lg text-gray-900">- Max G.</div>
|
||||
<div class="text-sm text-red-500">Coaching Klient</div>
|
||||
</div>
|
||||
|
||||
<!-- Testimonial 2 -->
|
||||
<div class="bg-white p-8 rounded-2xl shadow-xl border-l-8 border-red-400 card-hover">
|
||||
<p class="text-4xl mb-4 text-gray-500">“</p>
|
||||
<p class="text-xl italic text-gray-700 mb-6">
|
||||
"Ich dachte, ich wäre an meinen Grenzen. Kraftwerk hat gezeigt, dass Grenzen nur mentale Konstrukte sind. Die Coaching-Begleitung war unverzichtbar."
|
||||
</p>
|
||||
<div class="font-bold text-lg text-gray-900">- Lena S.</div>
|
||||
<div class="text-sm text-red-500">Fitness-Enthusiastin</div>
|
||||
</div>
|
||||
|
||||
<!-- Testimonial 3 -->
|
||||
<div class="bg-white p-8 rounded-2xl shadow-xl border-l-8 border-red-400 card-hover">
|
||||
<p class="text-4xl mb-4 text-gray-500">“</p>
|
||||
<p class="text-xl italic text-gray-700 mb-6">
|
||||
"Die Kombination aus<div style="position:fixed;right:12px;bottom:12px;z-index:2147483647;background:rgba(17,24,39,.92);color:#fff;padding:8px 10px;border-radius:10px;font:12px/1.3 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;box-shadow:0 8px 20px rgba(0,0,0,.28)">Generated in 31.03s</div>
|
||||
Reference in New Issue
Block a user