:root {
    --bg-color: #050a14;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    /* Modern Blue */
    --accent-secondary: #10b981;
    /* Modern Green */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent scroll if content fits */
    position: relative;
}

/* Background Abstract Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    /* Violet hint */
    top: 40%;
    left: 60%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Header */
.header {
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: flex-start;
    /* Logo left */
    align-items: center;
    z-index: 10;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Main Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.content-wrapper {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.headline {
    font-size: clamp(3rem, 8vw, 6rem);
    /* Responsive typography */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.4 rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Email Form */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.notify-form button {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, var(--accent-color), #2563eb);
    color: white;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.notify-form button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        justify-content: center;
        /* Center logo on mobile */
    }

    .logo {
        height: 32px;
    }

    .headline {
        margin-bottom: 1rem;
    }

    .shape {
        filter: blur(60px);
        /* Reduce blur load slightly on mobile */
    }
}

/* --- Support for Content Pages (Impressum / Datenschutz) --- */

body.white-page {
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-y: auto;
    /* Allow scrolling */
    display: block;
    height: auto;
}

body.white-page .background-shapes {
    display: none;
    /* No shapes on text pages */
}

body.white-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

body.white-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111;
}

body.white-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

body.white-page p,
body.white-page li {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

body.white-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #000;
}

.simple-footer {
    border-top: 1px solid #eee;
    margin-top: 4rem;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

body.white-page .footer-nav {
    justify-content: flex-start;
}