/* ============================================================
   RECRUITION - MODERN RECRUITMENT TEMPLATE
   Complete CSS
   ============================================================ */


/* ============================================================
   1. FONTS & KLEUREN
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #49A4A2;
    --primary-dark: #378987;
    --primary-light: #EAF6F5;

    --dark: #17252A;
    --text: #46545A;
    --muted: #7A888D;

    --white: #FFFFFF;
    --light: #F6F9F9;
    --border: #E3EAEA;

    --shadow: 0 10px 35px rgba(23, 37, 42, 0.08);
    --shadow-hover: 0 18px 45px rgba(23, 37, 42, 0.14);
}


/* ============================================================
   2. ALGEMENE BASIS
   ============================================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text);
    background: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    font-style: normal !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: var(--dark);
}

h1 {
    font-weight: 700;
}

h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 600;
}

a {
    transition: all .2s ease-in-out;
}


/* ============================================================
   3. NAVIGATIE
   ============================================================ */

.navbar {
    background: #fff;
    min-height: 64px;
    border: 0 !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.navbar a,
nav a {
    font-family: 'Roboto', sans-serif;
    color: var(--dark) !important;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.navbar a:hover,
nav a:hover {
    color: var(--primary) !important;
}

/* Eerste item blijft verborgen */
li.nav-item:first-child {
    display: none;
}


/* ============================================================
   4. HERO
   ============================================================ */

/*
   De hero is het belangrijkste onderdeel van de homepage.
   We maken hem rustiger en professioneler.
*/

.is-overlay {
    overflow: hidden;
}

/* Achtergrondafbeelding iets groter voor subtiel effect */
.is-overlay .is-overlay-bg {
    background-position: center center;
    transform: scale(1.01);
    transition: transform 8s ease;
}

/* Donkere transparante laag */
.is-overlay:after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 29, 33, .62) 0%,
            rgba(18, 29, 33, .45) 55%,
            rgba(18, 29, 33, .20) 100%
        ) !important;

    pointer-events: none;
}

/* Hero titel */
.is-overlay h1 {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin-bottom: 18px;

    color: #fff !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -1.5px;

    text-transform: uppercase;
}

/* Hero subtitel */
.is-overlay p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: rgba(255,255,255,.93) !important;

    font-size: 19px;
    line-height: 1.6;
}

/* Hero button */
.is-overlay .btn,
.is-overlay .btn-secondary {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-top: 12px;

    padding: 15px 28px;

    border: 0 !important;
    border-radius: 7px !important;

    background: var(--primary) !important;

    color: #fff !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: .2px;

    transition: all .2s ease-in-out;
}

.is-overlay .btn:hover,
.is-overlay .btn-secondary:hover {
    background: var(--primary-dark) !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);
}


/* ============================================================
   5. SECTIES
   ============================================================ */

.is-section {
    position: relative;
}

/*
   Meer ademruimte tussen de verschillende onderdelen.
*/

.is-section h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.is-section h3 {
    margin-bottom: 15px;
}


/* ============================================================
   6. EVEN VOORSTELLEN
   ============================================================ */

/* Iconen */
.icon-home {
    width: 64px;
    height: 64px;

    line-height: 64px;

    display: inline-block;

    text-align: center;

    border: 0 !important;
    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 8px 22px rgba(73,164,162,.22);

    transition: all .25s ease;
}

.icon-home:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(73,164,162,.28);
}

.icon-home b {
    color: #fff !important;
}

.icon-home .icon {
    color: #fff !important;
    font-size: 27px;
}

/* Tekst onder iconen */
.icon-home-title {
    margin-top: 18px;

    color: var(--dark);

    font-size: 21px;
    line-height: 1.45;

    letter-spacing: 0;
}

.icon-home-title span {
    color: var(--primary);
    font-weight: 700;
}


/* ============================================================
   7. ALGEMENE AFBEELDINGEN
   ============================================================ */

img {
    max-width: 100%;
}

img.shadow {
    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(20,40,45,.10) !important;
}

.col-md-6.img-default {
    padding: 0 30px;
}


/* ============================================================
   8. BEDRIJF / OVER ONS
   ============================================================ */

/*
   Afbeeldingen in de content krijgen afgeronde hoeken.
*/

.col-md-6.img-default img {
    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(20,40,45,.10);
}

/*
   Tekstgedeeltes wat rustiger maken.
*/

.col-md-6 p {
    color: var(--text);
}


/* ============================================================
   9. VACATURE FILTER
   ============================================================ */

/*
   De live site bevat een functie- en opleidingsfilter.
   We geven deze een moderne uitstraling.
*/

select,
.form-control {
    border: 1px solid var(--border) !important;

    border-radius: 7px !important;

    background: #fff;

    color: var(--text);

    min-height: 46px;

    padding: 10px 14px;

    box-shadow: none !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

select:focus,
.form-control:focus {
    border-color: var(--primary) !important;

    box-shadow:
        0 0 0 4px rgba(73,164,162,.10) !important;

    outline: none;
}


/* ============================================================
   10. VACATURE KAARTEN
   ============================================================ */

/*
   De vacaturelijst op jullie pagina bevat meerdere vacatures.
   Onderstaande styling maakt vacature-elementen duidelijker.
*/

/* Veelgebruikte vacature containers */
.vacancy,
.vacancy-item,
.vacancy-list-item,
.job-item {
    border-radius: 10px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

/*
   Hover-effect voor vacatureblokken.
*/

.vacancy:hover,
.vacancy-item:hover,
.vacancy-list-item:hover,
.job-item:hover {
    transform: translateY(-3px);

    box-shadow:
        var(--shadow-hover);
}


/* Vacature links */
.vacancy a,
.vacancy-item a,
.vacancy-list-item a,
.job-item a {
    color: var(--dark);

    text-decoration: none;
}

.vacancy a:hover,
.vacancy-item a:hover,
.vacancy-list-item a:hover,
.job-item a:hover {
    color: var(--primary);
}


/* ============================================================
   11. VACATURE DETAIL
   ============================================================ */

.vacancy-detail .employee {
    background: var(--primary);

    border-radius: 9px;
}

.vacancy-detail .form-control {
    min-height: 48px;

    padding: 12px 15px;

    border-radius: 7px !important;

    border: 1px solid var(--border);
}

.vacancy-detail .form-control:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(73,164,162,.10);
}


/* Sollicitatiebutton */

.apply-btn-submit {
    padding: 14px 25px !important;

    border: 0 !important;

    border-radius: 7px !important;

    background: var(--primary) !important;

    color: #fff !important;

    font-family: 'Montserrat', sans-serif !important;

    font-weight: 600;

    transition: all .2s ease;
}

.apply-btn-submit:hover {
    background: var(--primary-dark) !important;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(73,164,162,.25);
}


/* ============================================================
   12. CTA
   ============================================================ */

.cta-title {
    margin-bottom: 20px;

    color: var(--dark);

    font-size: 40px;
    line-height: 1.2;

    font-family: 'Montserrat', sans-serif !important;

    font-weight: 600;
}


/* ============================================================
   13. CONTACT
   ============================================================ */

/*
   Contactblok wat meer als een echte CTA laten voelen.
*/

.cta-title + p {
    color: var(--muted);
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.is-footer {
    background: var(--dark) !important;

    color: rgba(255,255,255,.72);

    border-top: 0 !important;
}

.is-footer h3,
.is-footer h4,
.is-footer h5 {
    color: #fff !important;
}

.is-footer p {
    color: rgba(255,255,255,.70);
}

.is-footer a {
    color: rgba(255,255,255,.78);

    text-decoration: none;
}

.is-footer a:hover {
    color: var(--primary) !important;
}

.is-footer b {
    color: var(--primary);
}

.is-footer img {
    width: 200px !important;
    max-width: 100%;
}


/* ============================================================
   15. ALGEMENE KNOPPEN
   ============================================================ */

.btn,
.btn-secondary {
    border-radius: 7px !important;

    padding: 13px 24px;

    font-family: 'Montserrat', sans-serif !important;

    font-weight: 600;

    transition: all .2s ease-in-out;
}

.btn-secondary {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff !important;
}

.btn-secondary:hover {
    background: var(--primary-dark);

    border-color: var(--primary-dark);

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(73,164,162,.22);
}


/* ============================================================
   16. LINKS
   ============================================================ */

a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}


/* ============================================================
   17. MOBIEL - TABLET
   ============================================================ */

@media screen and (max-width: 992px) {

    .col-md-6.img-default {
        padding: 15px;
    }

    .is-overlay .is-overlay-bg {
        background-position: center center;
    }

    .is-footer img {
        width: 180px !important;
    }

    .icon-home-title {
        margin-top: 10px !important;
        margin-bottom: 35px;

        letter-spacing: 0 !important;
    }

    .is-overlay h1 {
        font-size: 42px;

        letter-spacing: -.8px;
    }

    .cta-title {
        font-size: 32px;
    }

    .is-section h2 {
        font-size: 31px;
    }
}


/* ============================================================
   18. MOBIEL - TELEFOON
   ============================================================ */

@media screen and (max-width: 576px) {

    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    h2,
    .is-section h2 {
        font-size: 28px;

        line-height: 1.25;
    }

    h3 {
        font-size: 21px;
    }

    /* Hero */
    .is-overlay h1 {
        font-size: 31px;

        line-height: 1.12;

        letter-spacing: -.5px;
    }

    .is-overlay p {
        font-size: 17px;

        line-height: 1.5;
    }

    .is-overlay .btn,
    .is-overlay .btn-secondary {
        width: 100%;

        padding: 14px 20px;

        text-align: center;
    }

    /* Iconen */
    .icon-home {
        width: 58px;
        height: 58px;

        line-height: 58px;
    }

    .icon-home .icon {
        font-size: 24px;
    }

    .icon-home-title {
        font-size: 18px;
    }

    /* CTA */
    .cta-title {
        font-size: 28px;
    }

    /* Footer */
    .is-footer img {
        width: 160px !important;
    }
}


/* ============================================================
   19. EXTRA POLISH
   ============================================================ */

/* Selectie van tekst */
::selection {
    background: var(--primary);
    color: #fff;
}


/* Focus voor toegankelijkheid */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-color: var(--primary);
}


/* Verwijder overmatige italic styling */
em,
i {
    font-style: normal;
}


/* Subtiele overgang voor afbeeldingen */
img {
    transition: all .25s ease;
}


/* ============================================================
   EINDE
   ============================================================ */