/* ========================================
   Algemene pagina's
   ======================================== */

.page-header {
    padding: 70px 0;

    background: var(--color-primary);
    color: var(--color-white);

    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-bottom: 20px;
}

.content-section p {
    max-width: 850px;
    margin-bottom: 20px;
}

/* ========================================
   BMW K1 hero
   ======================================== */

.k1-hero {
    position: relative;

    width: 100%;

    min-height: 500px;

    overflow: hidden;

    background: #222;
}

.k1-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.k1-hero-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.05)
        );
}

.k1-hero-content {
    color: #fff;

    max-width: 600px;

    padding: 40px 0;
}

.k1-hero-content h1 {
    margin: 0 0 10px;

    font-size: clamp(
        3rem,
        7vw,
        6rem
    );

    line-height: 1;

    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.5);
}

.k1-hero-content p {
    margin: 0;

    font-size: clamp(
        1.2rem,
        2.5vw,
        1.8rem
    );

    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.5);
}


/* Mobiel */

@media (max-width: 700px) {

    .k1-hero {
        min-height: 380px;
    }

    .k1-hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.70),
                rgba(0, 0, 0, 0.10)
            );
    }

    .k1-hero-content {
        padding: 30px 0;
    }

}