Hier ist die komplette **index.html** für www.hzwoO.ch:
```html
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HzwoO — Wasserheilkunst Forschung & Bildung. Wissenschaftliche Integration von traditioneller Wasserheilkunde mit modernen Methoden.">
<title>HzwoO — Wasserheilkunst Forschung & Bildung</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--water-dark: #1a4d6d;
--water-light: #4a90e2;
--water-cyan: #00bcd4;
--text-dark: #2c3e50;
--text-light: #555;
--bg-light: #f8fbfc;
--white: #ffffff;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
overflow-x: hidden;
}
/* Navigation */
nav {
position: sticky;
top: 0;
background: rgba(26, 77, 109, 0.98);
backdrop-filter: blur(10px);
padding: 15px 40px;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
nav a {
color: white;
text-decoration: none;
margin: 0 25px;
font-size: 14px;
transition: color 0.3s;
display: inline-block;
}
nav a:hover {
color: var(--water-cyan);
}
nav .logo {
font-size: 24px;
font-weight: 300;
letter-spacing: 2px;
color: var(--water-cyan);
display: inline-block;
margin-right: 50px;
}
/* Hero */
.hero {
height: 100vh;
background: linear-gradient(135deg, var(--water-dark) 0%, var(--water-light) 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(0,188,212,0.2) 0%, transparent 70%);
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
50% { transform: translate(-50%, -50%) scale(1.1); }
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 80px;
font-weight: 300;
margin-bottom: 20px;
letter-spacing: 3px;
text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero .tagline {
font-size: 28px;
font-weight: 300;
margin-bottom: 40px;
opacity: 0.95;
letter-spacing: 1px;
}
.cta-button {
display: inline-block;
padding: 15px 40px;
background: var(--water-cyan);
color: var(--water-dark);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
border: 2px solid var(--water-cyan);
cursor: pointer;
font-size: 16px;
}
.cta-button:hover {
background: transparent;
color: white;
}
/* Sections */
section {
padding: 100px 60px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
font-size: 48px;
font-weight: 300;
margin-bottom: 50px;
text-align: center;
color: var(--water-dark);
position: relative;
padding-bottom: 20px;
}
h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--water-cyan);
}
/* Vision Section */
#vision {
background: var(--bg-light);
}
.vision-text {
font-size: 18px;
line-height: 1.9;
color: var(--text-light);
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.vision-text strong {
color: var(--water-dark);
}
/* Three Pillars */
#pillars {
background: white;
}
.pillars-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
margin-top: 60px;
}
.pillar {
background: var(--bg-light);
padding: 40px 30px;
border-radius: 8px;
border-top: 4px solid var(--water-cyan);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pillar-icon {
font-size: 48px;
margin-bottom: 20px;
}
.pillar h3 {
font-size: 24px;
color: var(--water-dark);
margin-bottom: 15px;
font-weight: 600;
}
.pillar p {
color: var(--text-light);
font-size: 15px;
line-height: 1.8;
}
/* CTA Section */
#cta {
background: linear-gradient(135deg, var(--water-dark) 0%, var(--water-light) 100%);
color: white;
text-align: center;
}
#cta h2 {
color: white;
}
#cta h2::after {
background: var(--water-cyan);
}
#cta p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
}
/* Footer */
footer {
background: var(--water-dark);
color: white;
text-align: center;
padding: 40px;
font-size: 14px;
}
footer a {
color: var(--water-cyan);
text-decoration: none;
margin: 0 15px;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
nav {
padding: 15px 20px;
}
nav a {
display: block;
margin: 8px 0;
}
.hero h1 {
font-size: 48px;
}
.hero .tagline {
font-size: 18px;
}
section {
padding: 60px 30px;
}
h2 {
font-size: 36px;
margin-bottom: 40px;
}
.pillars-grid {
grid-template-columns: 1fr;
}
}
/* Scroll Animation */
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<span class="logo">HzwoO</span>
<a href="#vision">Vision</a>
<a href="#pillars">Säulen</a>
<a href="#cta">Kontakt</a>
</nav>
<!-- Hero -->
<section class="hero">
<div class="hero-content">
<h1>🌊 HzwoO</h1>
<div class="tagline">Wasserheilkunst Forschung & Bildung</div>
<p style="font-size: 16px; margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto;">
Wissenschaftliche Integration von traditioneller Wasserheilkunde mit modernen Methoden. Mondrhythmen, Wasserkristalle, rituelles Wissen.
</p>
<a href="#cta" class="cta-button">Mehr erfahren</a>
</div>
</section>
<!-- Vision Section -->
<section id="vision">
<h2>Die Vision</h2>
<div class="vision-text">
<p>HzwoO ist ein <strong>Wasser-Forschungsverein</strong>, der traditionelle Wasserheilkunst mit moderner Wissenschaft verbindet. Wir erforschen die Heilkraft des Wassers durch drei integrierten Dimensionen:</p>
<p style="margin-top: 30px;"><strong>Wissenschaftliche Fundierung + Praktische Anwendung + Spirituelle Tiefe</strong></p>
<p style="margin-top: 30px; font-size: 16px;">Unser Ziel ist es, Menschen zur Aktivierung ihrer Selbstheilungskraft zu befähigen — indem wir Mondrhythmen, Wasserkristall-Analysen, Chronobiologie und indigene Wassertradition mit IoT-Sensoren und akademischer Forschung verbinden.</p>
</div>
</section>
<!-- Three Pillars -->
<section id="pillars">
<h2>Die Drei Säulen</h2>
<div class="pillars-grid">
<div class="pillar fade-in">
<div class="pillar-icon">🔬</div>
<h3>Wissenschaftliche Analyse</h3>
<p>Wasserkristall-Analysen, IoT-Sensoren, Mondrhythmus-Forschung und chronobiologische Wasserzyklen mit akademischen Hochschulen.</p>
</div>
<div class="pillar fade-in">
<div class="pillar-icon">💧</div>
<h3>Praktische Anwendung</h3>
<p>Basenbäder, Kaltanwendungen, Hydrotherapie, Güsse und Mondgebundene Anwendungen für gelebte Heilkunst im Alltag.</p>
</div>
<div class="pillar fade-in">
<div class="pillar-icon">🌙</div>
<h3>Bildung & Gemeinschaft</h3>
<p>Ausbildungen, Mentorship, Mastermind-Gruppen und der Aufbau einer globalen Wasserheilkunst-Gemeinschaft.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="cta">
<h2>Werden Sie Teil von HzwoO</h2>
<p>Wir suchen Forscher, Praktiker, Partner und Förderer, die an der Integration von Wasserheilkunst und Wissenschaft interessiert sind.</p>
<div>
<a href="mailto:verein@hzwoo.ch" class="cta-button" style="background: white; color: var(--water-dark);">Kontakt aufnehmen</a>
</div>
</section>
<!-- Footer -->
<footer>
<p><strong>HzwoO — Wasser Forschungs- & Bildungsverein</strong></p>
<p>Schützenmatte 17, 6247 Schötz | Kanton Luzern | Schweiz</p>
<p style="margin-top: 20px;">
<a href="#vision">Impressum</a>
<a href="#pillars">Datenschutz</a>
<a href="mailto:verein@hzwoo.ch">Kontakt</a>
</p>
<p style="margin-top: 15px; opacity: 0.7;">© 2026 HzwoO. Alle Rechte vorbehalten.</p>
</footer>
<script>
// Scroll animation
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -100px 0px'
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-in');
observer.unobserve(entry.target);
}
});
}, observerOptions);
document.querySelectorAll('.fade-in').forEach(el => {
observer.observe(el);
});
</script>
</body>
</html>
```
Speichern als: index.html in deinem Website-Ordner. Fertig zum Hochladen! 🌊