/* css/angebot-template.css */

/* 1. Hero-Sektion */
.angebot-hero {
    position: relative;
    height: 40vh; /* Höhe des Hero-Bereichs, anpassbar */
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.4); /* Dunkler Overlay für bessere Lesbarkeit des Textes */
}

.hero-content {
    position: relative; /* Über dem Overlay */
    z-index: 2;
}

.angebot-hero h1 {
    color: var(--light-text-color);
    font-size: 2.8em;
    margin-bottom: 0.2em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.angebot-hero .subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}


/* 2. Allgemeine Inhaltsbereiche */
.content-column {
    max-width: 800px; /* Begrenzt die Breite von Textabschnitten für bessere Lesbarkeit */
    margin-left: auto;
    margin-right: auto;
}

.section-title-left {
    font-size: 2em;
    text-align: left; /* Überschriften im Textfluss linksbündig */
    margin-bottom: 20px;
}
.content-column p {
    margin-bottom: 1.2em;
    line-height: 1.7;
}


/* 3. Methodik-Sektion */
.method-section {
    background-color: var(--highlight-background-color); /* Hebt diesen Bereich visuell ab */
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsives Grid */
    gap: 30px;
    text-align: center;
}

.method-item h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.method-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 40px; /* Vertikale Zentrierung des Icons im Kreis */
}


/* 4. Kompetenz- & Erfahrungs-Sektion */
.competence-intro {
    font-size: 1.1em;
    font-style: italic;
    color: var(--primary-color);
}

.competence-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    columns: 2; /* Spaltenlayout für die Liste auf größeren Bildschirmen */
    column-gap: 40px;
}

.competence-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
.competence-list li::before {
    content: '\f00c'; /* Font Awesome Checkmark Icon */
    font-family: 'Font Awesome 6 Free'; /* Anpassen an deine FA Version */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
}


/* 5. Untere Call-to-Action Sektion */
.cta-section-bottom {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.cta-section-bottom h2 {
    color: var(--light-text-color);
}
.cta-section-bottom p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
    .angebot-hero h1 {
        font-size: 2.2em;
    }
    .competence-list {
        columns: 1; /* Liste wird einspaltig auf kleineren Bildschirmen */
    }
}