/* --- 1. DESIGN SYSTEM --- */
:root {
    --bg-dark: #1a252f;      /* Header & Footer Hintergrund */
    --accent-blue: #0099FF;  /* IO: Leuchtendes Blau */
    --accent-orange: #F39C12;/* Arrow: Signal Amber */
    --text-white: #ffffff;   /* VELD & Text auf Dunkel */
    --text-grey: #8899a6;    /* SYSTEMS & Footer Text */
    
    /* Content Palette */
    --bg-light: #ffffff;
    --text-main: #333333;
    --container-width: 1100px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark); /* Ganzes Body dunkel */
}

/* --- 2. LOGO & BRANDING --- */
.brand-logo {
    display: inline-block;
    text-decoration: none;
}

.brand-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* --- 3. LAYOUT KOMPONENTEN --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 25px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}
.btn:hover { background-color: #d68910; transform: translateY(-1px); }

/* --- 4. SEKTIONEN --- */

/* Header */
header {
    background-color: var(--bg-dark);
    padding: 25px 0;
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

/* Simple Hero */
.hero-simple {
    padding: 100px 0;
    color: var(--text-white);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-white);
    max-width: 850px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-grey);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Focus Box */
.focus-box {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
}

.focus-box h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.focus-box h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.focus-box p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

/* Legal Pages (Impressum, etc.) */
.legal-section {
    padding: 80px 0;
    color: var(--text-grey);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 3rem 0;
}

.summary-box {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-grey);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-grey);
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-grey);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .container { 
        padding: 0 35px; /* Erhöht den Seitenabstand von 25px auf 35px */
    }
    
    .hero-content h1 { 
        font-size: 1.9rem; /* Etwas kleiner, damit der Text nicht so "gedrängt" wirkt */
        line-height: 1.3;  /* Mehr Zeilenabstand für bessere Lesbarkeit */
    }

    .hero-simple { 
        padding: 40px 0; /* Weniger Abstand nach oben/unten auf kleinen Screens */
    }

    .footer-grid { 
        flex-direction: column; 
        text-align: left; 
    }
    
    .footer-contact { 
        text-align: left; 
    }
}