267 lines
7.4 KiB
HTML
267 lines
7.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Robert Müller — Webseite im Aufbau</title>
|
|
<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=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg-dark: #090d16;
|
|
--panel-bg: rgba(255, 255, 255, 0.03);
|
|
--panel-hover: rgba(255, 255, 255, 0.06);
|
|
--border-color: rgba(255, 255, 255, 0.08);
|
|
--accent-color: #6366f1;
|
|
--accent-glow: rgba(99, 102, 241, 0.3);
|
|
--text-main: #f8fafc;
|
|
--text-muted: #94a3b8;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Outfit', sans-serif;
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-main);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
padding: 2rem 1rem;
|
|
}
|
|
|
|
/* Animated Ambient Lights */
|
|
.ambient-glow {
|
|
position: absolute;
|
|
width: 60vw;
|
|
height: 60vw;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(6, 182, 212, 0.04) 50%, rgba(0,0,0,0) 70%);
|
|
filter: blur(120px);
|
|
z-index: 0;
|
|
top: -10vw;
|
|
left: -10vw;
|
|
animation: drift 25s infinite alternate ease-in-out;
|
|
}
|
|
|
|
.ambient-glow-2 {
|
|
position: absolute;
|
|
width: 50vw;
|
|
height: 50vw;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(99, 102, 241, 0.04) 50%, rgba(0,0,0,0) 70%);
|
|
filter: blur(120px);
|
|
z-index: 0;
|
|
bottom: -10vw;
|
|
right: -10vw;
|
|
animation: drift 20s infinite alternate-reverse ease-in-out;
|
|
}
|
|
|
|
@keyframes drift {
|
|
0% { transform: translate(0, 0) scale(1); }
|
|
100% { transform: translate(5vw, 5vw) scale(1.1); }
|
|
}
|
|
|
|
/* Container Card */
|
|
.container {
|
|
background: var(--panel-bg);
|
|
backdrop-filter: blur(24px);
|
|
-webkit-backdrop-filter: blur(24px);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 24px;
|
|
padding: 4rem 3rem;
|
|
width: 100%;
|
|
max-width: 600px;
|
|
text-align: center;
|
|
z-index: 10;
|
|
box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
|
|
transition: border-color 0.5s ease;
|
|
}
|
|
|
|
.container:hover {
|
|
border-color: rgba(99, 102, 241, 0.2);
|
|
}
|
|
|
|
/* Construction / Under Construction Icon */
|
|
.icon-wrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin: 0 auto 2rem;
|
|
background: rgba(99, 102, 241, 0.1);
|
|
border: 1px solid rgba(99, 102, 241, 0.3);
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #a5b4fc;
|
|
position: relative;
|
|
}
|
|
|
|
.icon-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20px;
|
|
border: 1px solid var(--accent-color);
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
.container:hover .icon-wrapper::after {
|
|
opacity: 1;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Header */
|
|
h1 {
|
|
font-size: 2.75rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.divider {
|
|
width: 60px;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--accent-color), #06b6d4);
|
|
margin: 1.5rem auto;
|
|
}
|
|
|
|
.greeting {
|
|
font-size: 1rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 1.5rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
p.description {
|
|
color: var(--text-muted);
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
margin-bottom: 2.5rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Actions / Button */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, var(--accent-color) 0%, #4f46e5 100%);
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 0.9rem 2.25rem;
|
|
border-radius: 99px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
box-shadow: 0 10px 25px -5px var(--accent-glow);
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 15px 30px -5px var(--accent-glow);
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.btn svg {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
margin-top: 3rem;
|
|
font-size: 0.8rem;
|
|
color: rgba(255,255,255,0.15);
|
|
z-index: 10;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.container {
|
|
padding: 3rem 1.5rem;
|
|
}
|
|
h1 { font-size: 2.25rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="ambient-glow"></div>
|
|
<div class="ambient-glow-2"></div>
|
|
|
|
<div class="container">
|
|
<div class="icon-wrapper">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>
|
|
</svg>
|
|
</div>
|
|
|
|
<h1>Robert Müller</h1>
|
|
<div class="subtitle">Webseite im Aufbau</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="greeting" id="greeting-box">...</div>
|
|
|
|
<p class="description">
|
|
Herzlich willkommen! Meine neue Internetpräsenz befindet sich aktuell im Aufbau. Bitte schauen Sie zu einem späteren Zeitpunkt noch einmal vorbei. Bei Fragen oder Mitteilungen können Sie mich gerne per E-Mail kontaktieren.
|
|
</p>
|
|
|
|
<a href="mailto:mail@robert-mueller.net" class="btn" id="contact-button">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
|
|
<polyline points="22,6 12,13 2,6"></polyline>
|
|
</svg>
|
|
Kontakt aufnehmen
|
|
</a>
|
|
</div>
|
|
|
|
<footer>
|
|
© 2026 Robert Müller. Alle Rechte vorbehalten.
|
|
</footer>
|
|
|
|
<script src="js/utils.js"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
// Dynamic Greeting based on time
|
|
const hour = new Date().getHours();
|
|
let timeOfDay = 'day';
|
|
if (hour < 12) timeOfDay = 'morning';
|
|
else if (hour < 18) timeOfDay = 'afternoon';
|
|
else timeOfDay = 'evening';
|
|
|
|
const greetingBox = document.getElementById('greeting-box');
|
|
if (typeof formatGreeting === 'function') {
|
|
greetingBox.textContent = formatGreeting(timeOfDay, 'Robert Müller');
|
|
} else {
|
|
greetingBox.textContent = `Herzlich willkommen!`;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|