- kilofant.de: KIlofant — playful elephant theme with stampede CSS animations, warm earthy colors, Baloo 2 font - omakise.de: OmaKIse — Japanese-inspired minimalist design with 7-course omakase menu metaphor, Noto Serif JP, dark sumi section - heygoldi.de: Hey Goldi! — warm, friendly AI companion for older people, large fonts, gold tones, teddy bear vibes, Nunito font (alias: heygoldi.com) Updated Caddyfile with all three new domains.
584 lines
16 KiB
HTML
584 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hey Goldi! — Dein freundlicher KI-Begleiter</title>
|
|
<meta name="description" content="Hey Goldi! — KI-Companion für Menschen, die es einfach mögen. Warm, freundlich, immer da.">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🧸</text></svg>">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after {
|
|
margin: 0; padding: 0; box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--gold: #D4A033;
|
|
--gold-light: #E8C567;
|
|
--gold-bright: #F5D78E;
|
|
--gold-pale: #FBF0D4;
|
|
--gold-glow: rgba(212, 160, 51, 0.15);
|
|
--warm: #8B6233;
|
|
--warm-light: #A07842;
|
|
--cream: #FFF9EE;
|
|
--cream-warm: #FFF3DD;
|
|
--cream-rose: #FFF0E8;
|
|
--text: #3D2E1C;
|
|
--text-soft: #7A6B58;
|
|
--text-gentle: #A89880;
|
|
--rose: #E8A090;
|
|
--rose-soft: rgba(232, 160, 144, 0.12);
|
|
--sage: #8BA87A;
|
|
--sky: #A8C8D8;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Nunito', -apple-system, sans-serif;
|
|
background: var(--cream);
|
|
color: var(--text);
|
|
line-height: 1.7;
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow-x: hidden;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* === NAV === */
|
|
nav {
|
|
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
|
padding: 16px 0;
|
|
background: rgba(255, 249, 238, 0.94);
|
|
backdrop-filter: blur(12px);
|
|
border-bottom: 2px solid var(--gold-pale);
|
|
}
|
|
|
|
nav .inner {
|
|
max-width: 800px; margin: 0 auto; padding: 0 28px;
|
|
display: flex; justify-content: space-between; align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.3rem; font-weight: 800;
|
|
color: var(--text);
|
|
}
|
|
|
|
.logo .goldi { color: var(--gold); }
|
|
.logo .bear { font-size: 1.2em; margin-right: 6px; }
|
|
|
|
nav a {
|
|
color: var(--text-soft); text-decoration: none;
|
|
font-size: 0.95rem; font-weight: 600;
|
|
background: var(--gold);
|
|
color: white;
|
|
padding: 8px 20px;
|
|
border-radius: 40px;
|
|
transition: all 0.3s;
|
|
}
|
|
nav a:hover {
|
|
background: var(--warm);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* === HERO === */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex; flex-direction: column;
|
|
align-items: center; justify-content: center;
|
|
text-align: center; padding: 120px 28px 80px;
|
|
background:
|
|
radial-gradient(ellipse at 50% 60%, var(--gold-glow) 0%, transparent 50%),
|
|
radial-gradient(ellipse at 30% 80%, var(--rose-soft) 0%, transparent 40%),
|
|
var(--cream);
|
|
}
|
|
|
|
.hero-bear {
|
|
font-size: clamp(6rem, 15vw, 10rem);
|
|
line-height: 1;
|
|
margin-bottom: 16px;
|
|
animation: gentle-bounce 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes gentle-bounce {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
h1 {
|
|
font-size: clamp(2.8rem, 8vw, 4.5rem);
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1 .hey { color: var(--text); }
|
|
h1 .goldi { color: var(--gold); }
|
|
h1 .excl { color: var(--rose); }
|
|
|
|
.hero-sub {
|
|
font-size: clamp(1.1rem, 2.5vw, 1.35rem);
|
|
color: var(--text-soft);
|
|
font-weight: 500;
|
|
max-width: 500px;
|
|
margin: 0 auto 32px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.hero-sub strong {
|
|
color: var(--text);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.cta-big {
|
|
display: inline-flex; align-items: center; gap: 12px;
|
|
padding: 18px 44px;
|
|
background: var(--gold);
|
|
color: white;
|
|
font-size: 1.15rem; font-weight: 700;
|
|
border-radius: 60px;
|
|
text-decoration: none; border: none; cursor: pointer;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 8px 28px var(--gold-glow);
|
|
}
|
|
|
|
.cta-big:hover {
|
|
background: var(--warm);
|
|
transform: translateY(-2px) scale(1.02);
|
|
box-shadow: 0 12px 40px rgba(212, 160, 51, 0.25);
|
|
}
|
|
|
|
/* === CONTAINER === */
|
|
.container {
|
|
max-width: 800px; margin: 0 auto; padding: 0 28px;
|
|
}
|
|
|
|
/* === INTRO === */
|
|
.intro {
|
|
text-align: center;
|
|
padding: 80px 28px;
|
|
background: var(--cream-warm);
|
|
border-radius: 0;
|
|
}
|
|
|
|
.intro-text {
|
|
font-size: clamp(1.15rem, 2.5vw, 1.45rem);
|
|
font-weight: 500;
|
|
line-height: 2;
|
|
color: var(--text-soft);
|
|
max-width: 560px; margin: 0 auto;
|
|
}
|
|
|
|
.intro-text strong { color: var(--text); font-weight: 700; }
|
|
.intro-text .goldi { color: var(--gold); font-weight: 800; }
|
|
|
|
/* === SECTIONS === */
|
|
section { padding: 80px 0; }
|
|
|
|
.section-emoji {
|
|
font-size: 2rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: clamp(1.6rem, 4vw, 2.2rem);
|
|
font-weight: 800;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.section-desc {
|
|
color: var(--text-soft);
|
|
font-size: 1rem;
|
|
max-width: 500px;
|
|
margin-bottom: 48px;
|
|
line-height: 1.8;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === FEATURES === */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
.feature-card {
|
|
background: white;
|
|
border: 2px solid var(--gold-pale);
|
|
border-radius: 24px;
|
|
padding: 36px 28px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
border-color: var(--gold-light);
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 32px var(--gold-glow);
|
|
}
|
|
|
|
.feature-emoji {
|
|
font-size: 2.2rem;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.15rem; font-weight: 700;
|
|
margin-bottom: 8px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--text-soft);
|
|
font-size: 0.95rem; line-height: 1.7;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === HOW IT WORKS === */
|
|
.steps-section {
|
|
background: var(--cream-warm);
|
|
}
|
|
|
|
.steps-list {
|
|
display: flex; flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.step {
|
|
display: flex; gap: 24px;
|
|
align-items: flex-start;
|
|
background: white;
|
|
border-radius: 20px;
|
|
padding: 28px;
|
|
border: 2px solid var(--gold-pale);
|
|
}
|
|
|
|
.step-number {
|
|
flex-shrink: 0;
|
|
width: 52px; height: 52px;
|
|
background: var(--gold);
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 1.3rem; font-weight: 800;
|
|
}
|
|
|
|
.step-body h3 {
|
|
font-size: 1.1rem; font-weight: 700;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.step-body p {
|
|
color: var(--text-soft);
|
|
font-size: 0.95rem; line-height: 1.7;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === TESTIMONIAL === */
|
|
.testimonial-section {
|
|
text-align: center;
|
|
padding: 80px 28px;
|
|
background: var(--cream-rose);
|
|
}
|
|
|
|
.testimonial-quote {
|
|
font-size: clamp(1.2rem, 2.8vw, 1.6rem);
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
color: var(--text);
|
|
max-width: 520px; margin: 0 auto 20px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.testimonial-author {
|
|
font-size: 0.95rem;
|
|
color: var(--text-soft);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* === REASSURANCE === */
|
|
.reassurance {
|
|
text-align: center;
|
|
padding: 60px 28px;
|
|
}
|
|
|
|
.reassurance-items {
|
|
display: flex; justify-content: center;
|
|
gap: 40px; flex-wrap: wrap;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.reassurance-item {
|
|
text-align: center;
|
|
max-width: 160px;
|
|
}
|
|
|
|
.reassurance-emoji {
|
|
font-size: 2rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.reassurance-text {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
}
|
|
|
|
.reassurance-sub {
|
|
font-size: 0.8rem;
|
|
color: var(--text-gentle);
|
|
margin-top: 2px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === CTA === */
|
|
.cta-section {
|
|
text-align: center;
|
|
padding: 80px 28px 120px;
|
|
background:
|
|
radial-gradient(ellipse at 50% 50%, var(--gold-glow) 0%, transparent 50%),
|
|
var(--cream);
|
|
}
|
|
|
|
.cta-section h2 {
|
|
font-size: clamp(1.8rem, 4vw, 2.5rem);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.cta-section p {
|
|
color: var(--text-soft);
|
|
font-size: 1.05rem;
|
|
max-width: 440px;
|
|
margin: 0 auto 36px;
|
|
line-height: 1.8;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === FOOTER === */
|
|
footer {
|
|
background: var(--warm);
|
|
color: var(--gold-pale);
|
|
text-align: center;
|
|
padding: 36px 28px;
|
|
}
|
|
|
|
.footer-bear {
|
|
font-size: 2rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.footer-text {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.footer-copy {
|
|
font-size: 0.75rem;
|
|
opacity: 0.4;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.footer-copy a {
|
|
color: var(--gold-pale);
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* === MOBILE === */
|
|
@media (max-width: 768px) {
|
|
.features-grid { grid-template-columns: 1fr; }
|
|
.reassurance-items { gap: 24px; }
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
body { font-size: 17px; }
|
|
.hero { padding: 110px 20px 60px; }
|
|
section { padding: 60px 0; }
|
|
.step { flex-direction: column; gap: 16px; }
|
|
.feature-card { padding: 28px 24px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="inner">
|
|
<div class="logo">
|
|
<span class="bear">🧸</span>
|
|
Hey <span class="goldi">Goldi</span>!
|
|
</div>
|
|
<a href="#kontakt">Hallo sagen</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="hero-bear">🧸</div>
|
|
<h1><span class="hey">Hey </span><span class="goldi">Goldi</span><span class="excl">!</span></h1>
|
|
<p class="hero-sub">
|
|
Dein <strong>freundlicher KI-Begleiter</strong>.<br>
|
|
Immer da. Immer geduldig.<br>
|
|
Wie ein guter Freund, der alles erklärt.
|
|
</p>
|
|
<a href="#kontakt" class="cta-big">
|
|
🧸 Goldi kennenlernen
|
|
</a>
|
|
</section>
|
|
|
|
<div class="intro">
|
|
<div class="container">
|
|
<p class="intro-text">
|
|
Technik muss nicht <strong>kompliziert</strong> sein.<br>
|
|
<span class="goldi">Goldi</span> erklärt alles in <strong>einfachen Worten</strong>.<br>
|
|
Kein Fachchinesisch. Keine Hektik.<br>
|
|
Nur ein <strong>freundliches Gespräch</strong>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<section id="features">
|
|
<div class="container">
|
|
<div class="section-emoji">✨</div>
|
|
<h2>Was Goldi alles kann</h2>
|
|
<div class="section-desc">
|
|
Goldi hilft dir bei allem, was im Alltag anfällt.
|
|
Geduldig, verständlich und immer freundlich.
|
|
</div>
|
|
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">💬</div>
|
|
<h3>Einfach plaudern</h3>
|
|
<p>Frag Goldi was du möchtest. Zum Wetter, zu Rezepten, zur Nachrichten-Lage. Goldi antwortet so, dass es Spaß macht.</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">📱</div>
|
|
<h3>Technik-Hilfe</h3>
|
|
<p>Das Handy spinnt? Die App macht Probleme? Goldi erklärt Schritt für Schritt, was zu tun ist. In deinem Tempo.</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">📝</div>
|
|
<h3>Briefe & Texte</h3>
|
|
<p>Goldi hilft beim Schreiben. Ob Kündigung, Beschwerde oder Geburtstagsgruß — verständlich und auf den Punkt.</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">🧠</div>
|
|
<h3>Gedächtnisstütze</h3>
|
|
<p>Goldi merkt sich, was dir wichtig ist. Arzttermine, Geburtstage, Einkaufslisten — alles sicher aufgehoben.</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">📖</div>
|
|
<h3>Geschichten & Rätsel</h3>
|
|
<p>Langeweile? Goldi erzählt Geschichten, stellt Quizfragen oder liest dir etwas vor. Unterhaltung, wann immer du magst.</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-emoji">❤️</div>
|
|
<h3>Einfach zuhören</h3>
|
|
<p>Manchmal braucht man jemanden zum Reden. Goldi hört zu, ohne zu urteilen. Und hat immer ein offenes Ohr.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="steps-section">
|
|
<div class="container">
|
|
<div class="section-emoji">👋</div>
|
|
<h2>So einfach geht's</h2>
|
|
<div class="section-desc">
|
|
Drei Schritte. Mehr braucht es nicht.
|
|
</div>
|
|
|
|
<div class="steps-list">
|
|
<div class="step">
|
|
<div class="step-number">1</div>
|
|
<div class="step-body">
|
|
<h3>Sag "Hey Goldi!"</h3>
|
|
<p>Einfach ansprechen — per Handy, Tablet oder Computer. Goldi ist sofort da und freut sich.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step">
|
|
<div class="step-number">2</div>
|
|
<div class="step-body">
|
|
<h3>Stell deine Frage</h3>
|
|
<p>Was auch immer dich beschäftigt. Goldi versteht dich, auch wenn du nicht die perfekten Worte findest.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step">
|
|
<div class="step-number">3</div>
|
|
<div class="step-body">
|
|
<h3>Goldi antwortet</h3>
|
|
<p>Klar, freundlich, verständlich. Und wenn etwas unklar ist: einfach nochmal fragen. Goldi erklärt es gerne anders.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="testimonial-section">
|
|
<div class="container">
|
|
<div class="section-emoji">💛</div>
|
|
<p class="testimonial-quote">
|
|
"Endlich jemand, der mir alles in Ruhe erklärt.
|
|
Ohne dass ich mich dumm fühle."
|
|
</p>
|
|
<p class="testimonial-author">— So soll es sich anfühlen.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="reassurance">
|
|
<div class="container">
|
|
<h2>Das versprechen wir</h2>
|
|
<div class="reassurance-items">
|
|
<div class="reassurance-item">
|
|
<div class="reassurance-emoji">🔒</div>
|
|
<div class="reassurance-text">Privat & sicher</div>
|
|
<div class="reassurance-sub">Deine Daten bleiben bei dir</div>
|
|
</div>
|
|
<div class="reassurance-item">
|
|
<div class="reassurance-emoji">🐢</div>
|
|
<div class="reassurance-text">In deinem Tempo</div>
|
|
<div class="reassurance-sub">Keine Hektik, kein Druck</div>
|
|
</div>
|
|
<div class="reassurance-item">
|
|
<div class="reassurance-emoji">😊</div>
|
|
<div class="reassurance-text">Immer freundlich</div>
|
|
<div class="reassurance-sub">Goldi wird nie ungeduldig</div>
|
|
</div>
|
|
<div class="reassurance-item">
|
|
<div class="reassurance-emoji">🇩🇪</div>
|
|
<div class="reassurance-text">Auf Deutsch</div>
|
|
<div class="reassurance-sub">Kein Fachchinesisch</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<section id="kontakt" class="cta-section">
|
|
<div class="container">
|
|
<div class="section-emoji">🧸</div>
|
|
<h2>Sag <span style="color:var(--gold);">Hallo</span>!</h2>
|
|
<p>
|
|
Goldi freut sich, dich kennenzulernen.
|
|
Schreib uns — und wir bringen euch zusammen.
|
|
</p>
|
|
<a href="mailto:heygoldi@msbls.de?subject=Hey%20Goldi!%20—%20Hallo" class="cta-big">
|
|
🧸 heygoldi@msbls.de
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="footer-bear">🧸</div>
|
|
<p class="footer-text">Hey Goldi! — Dein freundlicher KI-Begleiter.</p>
|
|
<p class="footer-copy">© 2026 heygoldi.de — ein Projekt von <a href="https://msbls.de">msbls.de</a></p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|