/* --- GRUNDEINSTELLUNGEN --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1f1f1f;
    position: relative;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO DESIGN (Groß & Cyan) */
.logo {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    color: #00d2ff !important;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px !important;
    margin-right: 20px !important;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #00d2ff;
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #112233 0%, #000000 70%) !important;
    position: relative;
    z-index: 999;
}

.hero-content h1 {
    font-size: 3.5rem !important;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

/* Status Badge "System Live" */
.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #333;
    border-radius: 20px;
    background: rgba(0,0,0,0.5);
    color: #00d2ff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #00d2ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #00d2ff;
}

/* Der neue Button */
.hero-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #00d2ff;
    color: #00d2ff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.hero-btn:hover {
    background: #00d2ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

/* --- PROJEKTE BEREICH (SPLIT LAYOUT V83) --- */
.projects-section, .projects {
    padding: 4rem 2rem;
    max-width: 1100px; 
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

/* Die Projekt Karte */
.project-card {
    display: flex;             /* Bild und Text nebeneinander */
    gap: 40px;                 /* Abstand dazwischen */
    background: #0e0e0e;       /* Sehr dunkles Grau */
    border: 1px solid #333;    /* Feiner Rahmen */
    padding: 30px;
    margin-bottom: 40px;       
    border-radius: 8px;
    align-items: flex-start;   /* Oben bündig */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-color: #00d2ff;     /* Leuchtet beim Drüberfahren */
}

/* Das Bild-Paket (Kompakt) */
.project-image {
    flex: 0 0 350px;           /* Feste Breite: 350px */
}

.project-image img {
    width: 100%;               
    height: auto;              
    border: 2px solid #00d2ff; /* Der coole Cyan-Rahmen */
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); /* Leichtes Leuchten */
    border-radius: 4px;
    display: block;
}

/* Der Text-Teil */
.project-info {
    flex: 1;                   /* Nimmt den restlichen Platz */
}

.project-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.project-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Features Liste */
.features-list { 
    list-style: none; 
    margin: 1.5rem 0; 
    color: #aaa; 
    background: #151515;
    padding: 15px;
    border-radius: 4px;
}

.features-list li {
    margin-bottom: 8px;
}

.features-list li strong {
    color: #00d2ff;
}

.project-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #00d2ff;
    color: #00d2ff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 10px;
}

.project-btn:hover {
    background: #00d2ff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* Blueprint Karten (Für Projekte ohne Bild) */
.blueprint-card {
    background: #0e0e0e; /* Etwas dunkler */
    border: 1px dashed #333; /* Gestrichelte Linie wie auf Plan */
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.blueprint-header {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blueprint-card h3 {
    color: #ddd;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.blueprint-card p {
    color: #999;
    max-width: 800px;
}

/* --- KONTAKT FORMULAR --- */
.content-panel { padding: 4rem 2rem; display: flex; justify-content: center; }
.contact-container {
    width: 100%; max-width: 600px; background: #111; padding: 2rem;
    border-radius: 8px; border: 1px solid #222;
}
.contact-container h2 { color: #00d2ff; margin-bottom: 0.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; color: #888; }
.form-group input, .form-group textarea {
    background: #0a0a0a; border: 1px solid #333; padding: 12px;
    color: #fff; border-radius: 4px; font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus { border-color: #00d2ff; outline: none; }
.form-group textarea { min-height: 150px; resize: vertical; }
.action-btn {
    background: transparent; border: 1px solid #00d2ff; color: #00d2ff;
    padding: 12px; cursor: pointer; font-weight: bold; text-transform: uppercase; transition: 0.3s;
}
.action-btn:hover { background: #00d2ff; color: #000; }

/* --- FOOTER (ZENTRIERT & OPTIMIERT) --- */
footer {
    background-color: #050505;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: #888;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stapelt Text und Links übereinander */
    align-items: center;    /* Zentriert alles horizontal */
    gap: 15px;              /* Abstand zwischen Text und Links */
}

.footer-links {
    list-style: none;       /* Keine Punkte */
    padding: 0;
    margin: 0;
    display: flex;          /* Links nebeneinander */
    gap: 30px;              /* Abstand zwischen den Links */
}

.footer-links a {
    color: #aaa; 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-links a:hover { 
    color: #00d2ff; 
}

/* --- IMPRESSUM --- */
.legal-page {
    max-width: 800px;
    margin: 80px auto 4rem auto;
    padding: 2rem;
    color: #ccc;
    line-height: 1.8;
}
.legal-page h1 { color: #00d2ff; border-bottom: 1px solid #333; padding-bottom: 1rem; margin-bottom: 2rem; }
.legal-page h2 { color: #fff; margin-top: 3rem; margin-bottom: 1rem; }
.legal-button {
    display: inline-block; margin-bottom: 2rem; color: #00d2ff;
    border: 1px solid #333; padding: 8px 16px; border-radius: 4px; font-size: 0.9rem;
}
.legal-button:hover { border-color: #00d2ff; }

/* --- HANDY ANPASSUNGEN (Responsive) --- */
@media (max-width: 900px) {
    .project-card {
        flex-direction: column; /* Bild oben, Text unten */
    }
    .project-image {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    nav {
        padding: 1rem;
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        margin-top: 10px;
    }
    .nav-links a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* --- SYSTEM-FIXES (WICHTIG!) --- */

/* Damit der Hintergrund NICHT die Links blockiert */
canvas {
    z-index: -1 !important;
    position: fixed !important;
    top: 0;
    left: 0;
}