/* /onze-missie/css/style.css */

/* --- Hero Sectie --- */
.page-hero {
    background-image: linear-gradient(rgba(45, 52, 54, 0.6), rgba(45, 52, 54, 0.6)), url('/images/banner-image.jpg');
    /* Hergebruik een relevante afbeelding */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
    /* Ruimte voor de vaste header */
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

/* --- Missie & Visie Sectie --- */
.mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px;
    color: #343a40;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 20px;
}

.mission-image {
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    opacity: 0.15;
}

/* --- Aanpak Sectie --- */
.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #343a40;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.approach-card {
    text-align: center;
    padding: 30px;
}

.approach-icon {
    font-size: 32px;
    color: #c0392b;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 22px;
    color: #343a40;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

/* --- Call to Action Sectie --- */
.cta-section {
    background-color: #c0392b;
    /* Themakleur als achtergrond */
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #c0392b;
    /* Themakleur als tekstkleur */
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #f1f2f6;
    transform: translateY(-3px);
}

/* --- Responsive aanpassingen --- */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-image {
        display: none;
    }
}