/* --- 1. Globale Einstellungen & Reset --- */
:root {
    --primary-color: #A31F1F; /* Dunkles, edles Rot */
    --secondary-color: #F8F8F8; /* Helles Weiß für Text */
    --dark-bg: #222222; /* Sehr dunkler Hintergrund für den Rest der Seite */
    --info-card-bg: white;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--dark-bg);
}

/* --- 2. Hero Sektion (Das Herzstück mit Hintergrundbild) --- */
#hero-section {
    /* **WICHTIG:** Bildpfad anpassen. Das Bild muss im gleichen Ordner liegen! */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('wok_hintergrundbild.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    min-height: 100vh; 
    display: flex;
    align-items: center; 
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    /* Vertikales Padding unten, damit der Footer nicht direkt an den Karten klebt */
    padding-bottom: 5vh; 
}

/* --- 3. Branding (Der Work) --- */
#hero-section h1 {
    font-family: var(--font-heading);
    font-size: 5em;
    color: var(--primary-color); /* Rot, wie im Design */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    font-weight: 900;
}

.subtitle {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* --- 4. Call to Action Block (Text) --- */
.cta-block {
    max-width: 600px;
    margin-bottom: 50px;
}

.cta-block h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-block p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ccc;
}

/* --- 5. Der Prägnante Button --- */
.button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: none;
}

.button-primary:hover {
    background-color: #8D1A1A; 
    transform: translateY(-3px);
}

.button-primary .icon {
    margin-right: 10px;
    font-size: 1.4em;
    vertical-align: middle;
}

/* --- 6. Info-Boxen (Die weißen Karten) --- */
.info-blocks {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.info-card {
    flex-basis: calc(33.33% - 20px);
    background-color: var(--info-card-bg);
    color: var(--dark-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-family: var(--font-body); /* Stellt sicher, dass das Icon als Text dargestellt wird */
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.info-card h4 {
    color: #444; 
    margin-bottom: 5px;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    display: inline-block;
}

.info-card p {
    font-size: 0.95em;
    color: #666;
    margin: 5px 0;
}

/* --- 7. Footer --- */
footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 0.85em;
    /* Positionierung über dem Bild, falls Bild größer ist als der Viewport */
    position: relative; 
    width: 100%;
}

footer a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    color: var(--primary-color);
}

/* --- 8. Media Queries für Mobile --- */
@media (max-width: 900px) {
    #hero-section {
        background-attachment: scroll; /* Parallax auf Mobilgeräten deaktivieren */
    }
    
    #hero-section h1 {
        font-size: 4em;
    }
    
    .cta-block h2 {
        font-size: 2em;
    }

    .info-blocks {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .info-card {
        flex-basis: 100%;
        margin-bottom: 15px;
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}