:root {
    --blue: #3B82F6;
    --orange: #F97316;
    --dark: #070A11;
    --dark-glass: rgba(15, 23, 42, 0.6);
    --light-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Canvas */
#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: radial-gradient(circle at center, #111827 0%, var(--dark) 100%);
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; z-index: 1; }

h1 { font-size: 1.8rem; font-weight: 800; margin-left: 15px; letter-spacing: 1px; }
h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.subtitle { font-size: 1.2rem; color: var(--text-muted); font-weight: 300; margin-bottom: 40px; }

.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Klassen */
.glass-header {
    background: var(--dark-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass); padding: 15px 40px;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100;
}

.brand-logo {
    max-width: none; height: auto; border-radius: 8px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
    transition: transform 0.3s ease;
}
.brand-logo:hover { transform: scale(1.1) rotate(5deg); }

.brand { display: flex; align-items: center; }

.main-nav a {
    color: var(--text-muted); text-decoration: none; margin-left: 30px; font-weight: 500;
    transition: color 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-main); border-bottom: 2px solid var(--orange); }

.hero-section {
    flex: 1; display: flex; justify-content: center; align-items: center; padding: 40px 20px;
}

.glass-card {
    background: var(--light-glass); backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass); border-radius: 20px;
    padding: 60px 50px; max-width: 1100px; width: 100%; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: floatUp 1s ease-out forwards;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 1;
}

.hero-wappen img, .hero-stecker-logo img {
    max-width: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-wappen img, .hero-stecker-logo img {
        max-width: 100%;
        height: auto;
    }
}

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 15px 30px; border-radius: 30px;
    background: linear-gradient(45deg, var(--blue), var(--orange)); color: white;
    text-decoration: none; font-weight: 600; font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(249, 115, 22, 0.4); }

.glass-footer {
    background: var(--dark-glass); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass); padding: 20px 40px; margin-top: auto;
}
.footer-content { display: flex; justify-content: space-between; color: var(--text-muted); }
.footer-content a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-content a:hover { color: var(--text-main); }

@keyframes floatUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
