/* style.css - Modernes "Hero-Card" Design */

/* Grundlegende Einstellungen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc; /* Sehr heller, sauberer Hintergrund */
    color: #212529; /* Dunkle Schrift für Kontrast */
    line-height: 1.6;
}

/* 1. Der Header-Bereich (nur für das Logo) */
header {
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.logo img {
    max-width: 250px; /* Logo etwas kleiner für den Header */
    height: auto;
}

/* 2. Der "Hero"-Bereich (Blauer Banner) */
.hero {
    background-color: #A3C6E5; /* Helleres Blau aus dem Logo */
    background-image: linear-gradient(135deg, #A3C6E5 0%, #6A98DA 100%); /* Verlauf */
    color: #ffffff;
    padding: 60px 20px 100px 20px; /* Extra Platz unten, damit die Karte überlappt */
    text-align: center;
}

.hero h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.1em;
    font-weight: 300;
    margin: 0;
}

/* 3. Der Hauptinhalt-Wrapper (zentriert alles) */
.content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4. Die schwebende Kontakt-Karte */
.contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px; /* DER TRICK: Zieht die Karte nach oben */
    position: relative; /* Stellt sicher, dass die Karte über dem Hero ist */
    z-index: 10;
    text-align: center;
}

.contact-card h2 {
    color: #6A98DA; /* Dunkleres Blau */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 30px;
}

/* 5. Die Call-to-Action Buttons */
.cta-buttons {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px 5px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

/* Grüner Button (Primär) */
.cta-button.primary {
    background-color: #8BB944; /* Grün aus dem Logo */
    color: #ffffff;
}

.cta-button.primary:hover {
    background-color: #7bab3b;
    transform: translateY(-2px); /* Leichter Schwebe-Effekt */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Blauer Button (Sekundär) */
.cta-button.secondary {
    background-color: #6A98DA; /* Blau aus dem Logo */
    color: #ffffff;
}

.cta-button.secondary:hover {
    background-color: #5a85c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 6. Der Footer (Firmeninfos) */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px;
    color: #888;
}

/* Responsivität für Mobilgeräte */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .hero {
        padding-bottom: 80px;
    }
    .contact-card {
        padding: 25px;
        margin-top: -40px;
    }
    .cta-button {
        display: block; /* Buttons untereinander auf Mobilgeräten */
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}