/* =====================================================
   GOEDERENTREINEN – KOP
   Versie: 2.0
   Datum: september 2026

   ✔ Grote vervoerderskop
   ✔ Eigen locomotieffoto als achtergrond
   ✔ Cinematische donkere verlooplaag
   ✔ Ruimte voor titel links
   ✔ Slogan rechts
   ✔ Vervoerderspecifieke kleuraccenten
   ✔ Vervoerderspecifieke afscheidingslijn
   ✔ Ruimte tussen kop en tabs
   ✔ Klaar voor meerdere vervoerders
   ===================================================== */

/* =====================================================
   BASIS – VERVOERDERSKOP
   ===================================================== */

.goederen-kop {
    position: relative;

    width: 100%;
    min-height: 360px;

    background-position: 65% center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
    box-sizing: border-box;
}


/* =====================================================
   DONKERE VERLOOPLAAG
   ===================================================== */

.goederen-kop::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 10, 12, 0.90) 0%,
            rgba(8, 10, 12, 0.62) 22%,
            rgba(8, 10, 12, 0.25) 45%,
            rgba(8, 10, 12, 0.05) 68%,
            rgba(8, 10, 12, 0.10) 100%
        );

    pointer-events: none;
}


/* =====================================================
   INHOUD
   ===================================================== */

.goederen-kop-inhoud {
    position: relative;
    z-index: 2;

    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 6%;

    box-sizing: border-box;
}


/* =====================================================
   TITEL – LINKS
   ===================================================== */

.goederen-kop-titel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 600px;
    flex-shrink: 0;
}


/* =====================================================
   VERVOERDER
   ===================================================== */

.goederen-kop-titel span {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.92;

    font-weight: 700;
    letter-spacing: 2px;

    color: #ffffff;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.65);
}


/* =====================================================
   SUBTITEL – LOCOMOTIEVEN
   ===================================================== */

.goederen-kop-titel strong {
    margin-top: 12px;

    font-size: clamp(20px, 2.2vw, 32px);

    line-height: 1;

    font-weight: 700;
    letter-spacing: 3px;

    color: #18b8c8;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.65);
}


/* =====================================================
   SLOGAN – RECHTS
   ===================================================== */

.goederen-kop-slogan {
    max-width: 280px;

    margin-left: auto;

    font-size: clamp(22px, 2.5vw, 34px);

    line-height: 1.15;

    font-style: italic;
    font-weight: 400;

    color: #ffffff;

    text-align: right;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.80);

    opacity: 0.95;
}


/* =====================================================
   RUIMTE TUSSEN KOP EN TABS
   ===================================================== */

.goederen-tabs {
    padding-top: 18px;
}

/* =====================================================
   MAATSCHAPPIJ – VARIANTEN
   ===================================================== */


/* =====================================================
   LINEAS
   ===================================================== */

.goederen-kop.lineas {

    background-image:
        url("/images/Website_Definitief/Fotoprojecten_Trein/Goederentreinen/1-Kop-Goederen/Lineas_kop/Opf_Fototrip_2024_01.jpg");

    border-bottom: 3px solid #18b8c8;

    box-shadow:
        0 2px 10px rgba(24, 184, 200, 0.35);
}


.goederen-kop.lineas .goederen-kop-titel {
    position: relative;
}


.goederen-kop.lineas .goederen-kop-titel::before {
    content: "";

    width: 90px;
    height: 4px;

    margin-bottom: 18px;

    background: #18b8c8;

    box-shadow:
        0 0 10px rgba(24, 184, 200, 0.45);
}

/* =====================================================
   LINEAS – TURQUOISE E
   ===================================================== */

.goederen-kop.lineas .lineas-e {
    color: #18b8c8;
}

/* =====================================================
   MOBIEL
   ===================================================== */

@media (max-width: 700px) {

    .goederen-kop {
        min-height: 250px;
    }


    .goederen-kop-inhoud {
        min-height: 250px;

        padding: 30px 5%;
    }


    .goederen-kop-slogan {
        display: none;
    }


    .goederen-kop-titel span {
        font-size: 48px;
    }


    .goederen-kop-titel strong {
        font-size: 20px;
        letter-spacing: 2px;
    }


    .goederen-tabs {
        padding-top: 14px;
    }

}