﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* button styling following vBtn from VIVES fwk */
.yp-btn {
    display: inline-flex;
    border: none;
    color: white;
    border-style: none;
    border-radius: 4px;
    padding: 11px 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background-color: #5488c7;
    cursor: pointer;

    &:disabled {
        opacity: 0.8;
    }

    &:hover:not(:disabled) {
        opacity: 0.8;
    }

    &:focus {
        outline: none;
    }
}

    .yp-btn-primary {
        background-color: #e00020;
        color: white !important;
    }

    .yp-btn-primary-outline {
        border: 1px solid #e00020;
        background-color: white;
        color: white !important;
    }

    .yp-btn-secondary {
        background-color: #6c757d;
        color: white !important;
    }

    .yp-btn-primary:disabled {
        background-color: #e00020;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .yp-btn-spacing {
        margin-left: 1rem;
    }


    .toast-top-right {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-radius: 0.375rem;
        color: #fff;
        font-size: 0.9rem;
        min-width: 250px;
        max-width: 360px;
        gap: 0.75rem;
    }

        .toast-top-right.toast-success {
            background-color: #198754;
        }

        .toast-top-right.toast-danger {
            background-color: #dc3545;
        }

        .toast-top-right.toast-info {
            background-color: #0d6efd;
        }

        .toast-top-right .toast-icon {
            width: 1.2rem;
            height: 1.2rem;
            flex-shrink: 0;
        }

        .toast-top-right .toast-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            flex-shrink: 0;
        }

    :root {
        --vives-rood: #e00020;
        --vives-donker: #1E1E1E;
        --vives-grijs-btn: #EFEEE9;
    }

    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        font-family: 'Poppins', sans-serif;
        background-color: #f5f5f5;
    }

    .page {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    main {
        flex: 1;
        padding-top: 80px;
        margin: 0;
        width: 100%;
        display: block;
    }

    @media (max-width: 991px) {
        main {
            padding-top: 65px;
        }
    }

    h1 {
        font-weight: 900;
        text-transform: uppercase;
        font-size: 2.5rem;
        max-width: 900px;
        color: #333;
        line-height: 1.1;
        margin: 0 auto;
    }

    .form-group .text-danger.small,
    .form-group .validation-message {
        margin-top: 8px;
        display: block;
        position: static;
    }

    .validation-message,
    .text-danger.small {
        margin-top: 8px;
        display: block;
    }
}

.sub-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    gap: 15px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white !important;
    border-bottom: 1px solid #dee2e6 !important;
    z-index: 1000;
    min-height: 80px;
    padding: 0 !important;
}


.navbar .container-fluid {
    padding-left: 0 !important;
    padding-right: 2rem !important;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
}

.reset-password-container,
.change-password-container {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
    border-radius: 12px;
    background: #fff;
    padding: 2rem;
}

.reset-password-container h3,
.change-password-container h3{
    font-weight: bold !important;
    letter-spacing: 0 !important;
    font-size: 35px !important;
    color: #1E1E1E !important;
}

.reset-password-container .form-group,
.change-password-container .form-group{
    margin-bottom: 24px;
}

.reset-password-container input,
.reset-password-container button,
.reset-password-container h5,
.change-password-container input,
.change-password-container button,
.change-password-container h5{
    font-family: 'Poppins', sans-serif !important;
}

.reset-password-container input:focus,
.change-password-container input:focus 
{
    border-color: #e00020;
    box-shadow: 0 0 0 2px rgba(224,0,32,0.1);
}

.reset-password-container .text-danger,
.change-password-container .text-danger {
    color: #e00020;
    font-size: 0.95rem;
}

.reset-password-container .text-success,
.change-password-container .text-success {
    color: #28a745;
    font-size: 0.95rem;
}

.btn-verzenden {
    padding: 8px 20px;
    background: #E00020;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
    box-shadow: 0 2px 8px rgba(224,0,32,0.08);
}

.btn-verzenden:hover,
.btn-verzenden:focus {
    transform: scale(1.1);
    outline: 0;
    box-shadow: 0 4px 16px rgba(224,0,32,0.16);
}

.btn-verzenden:active {
    background-color: rgb(201, 5, 5);
    border: none;
    outline: none;
}

.error-container {
    margin-top: 1rem;
}

.vives_logo_text {
    display: block;
    width: 160px;
    height: 70px;
    background-image: url("/images/logo_navbar.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    margin-left: 0;
}

.navbar-nav {
    display: flex;
    gap: 0px;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 400 !important;
    font-size: 1rem !important;
    color: var(--vives-donker) !important;
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
    letter-spacing: 0px;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--vives-rood) !important;
}

.nav-link.taalselect {
    background-color: #6c757d;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    font-size: 11px;
    font-weight: bold;
    color: white !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin-left: 5px;
}

.taaldropdown {
    position: relative;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
    padding-top: 3px;
}

.language-dropdown-menu .nav-link.taalselect {
    opacity: 1;
    font-weight: bold;
    background-color: #6c757d;
    border: none;
}

.language-dropdown-menu .nav-link.taalselect:hover {
    transform: scale(1.15);
    transition: transform 0.2s ease;
}

.registreermenu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.registrerenbtn, .registrerenbtn2, .vacancyBtn {
    cursor: pointer;
    padding: 8px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.registrerenbtn {
    background: var(--vives-grijs-btn);
    color: var(--vives-donker);
}

.registrerenbtn2, .vacancyBtn {
    background: var(--vives-rood);
    color: white !important;
}

@media only screen and (max-width: 1100px) {
    .navbar .container-fluid {
        padding-left: 0.5rem !important;
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding-left: 0.5rem !important;
    }
}

@media (max-width: 900px) {
    .register-row {
        flex-direction: column;
    }
    .register-image-col {
        display: none;
    }
    .register-form-col {
        border-radius: 0 0 12px 12px;
        min-width: unset;
        max-width: 100%;
        padding: 2rem 0.5rem;
    }
    .register-form-col .register-container {
        margin: 40px 20px;
    }
    .register-title {
        font-size: 2rem;
    }
    .account-type-btn {
        font-size: 0.85rem;
        padding: 12px 8px;
        min-height: 60px;
    }
}


.hero-section {
    position: relative;
    background-color: #000;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/home.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1250px;
    padding: 0 15px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: white;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hero-button-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.btn-vives {
    background-color: #e00020;
    color: white !important;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
    display: inline-block;
}

.btn-vives:hover {
    background-color: #c4001c;
}

.main-footer {
    background-color: #1E1E1E;
    color: white;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li a {
    font-size: 0.9rem;
    color: #d6d6d6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-nav-list li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p, .footer-column a {
    font-size: 0.9rem;
    color: #d6d6d6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-logo {
    height: 100px;
    width: 180px;
    max-width: 150px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem !important;
    color: #a0a0a0;
}

.register-container {
    max-width: 100%;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.register-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 18px;
    color: #222;
    text-transform: uppercase;
    line-height: 1.1;
}

.register-logo {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 220px;
    width: 100%;
}

.account-type-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f1ee;
    border: none;
}

.account-type-btn {
    flex: 1;
    padding: 15px 10px;
    margin: 5px;
    border: none;
    background: #f3f1ee;
    color: #222;
    font-weight: 600;
    border-radius: 24px !important;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
    white-space: normal;
    line-height: 1.3;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.account-type-btn:hover {
    background: #ede9e6;
    color: #111;
}

.account-type-btn.active {
    background: #ede9e6;
    color: #111;
}

.register-row {
    display: flex;
    align-items: stretch;
    margin: 0;
    width: 100%;
    height: 100%;
}

.register-image-col {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.register-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

.register-form-col {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
}

.register-form-col .register-container {
    background: #fff;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    margin: 100px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
    border-radius: 0 12px 12px 0;
}

.register-input {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #222;
    background: #fff;
}

.register-input.required-field {
    border-left: 4px solid #dc3545;
}

.register-input.optional-field {
    border-left: 3px solid #ddd;
}

.register-input::placeholder {
    color: #999;
}

.register-input:focus {
    outline: none;
    border-color: #999;
    border-left-width: 3px;
}

.required-field.modified.valid.register-input {
    border-left-color: #28a745 !important;
}

.required-field.modified.invalid.register-input {
    border-left-color: #dc3545 !important;
}

.register-btn {
    width: 100%;
    padding: 15px;
    background-color: #e60000;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.register-btn:hover {
    background-color: #cc0000;
}

.login-row {
    display: flex;
    min-height: 100vh;
}

.login-image-col {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.login-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.login-form-col {
    flex: 1;
    display: flex;
    background-color: white;
}

.login-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: white;
}

.login-form-col .login-container {
    max-width: 500px;
    width: 100%;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    margin: 0 auto;
}

.login-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-login {
    background-color: #e60000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-login:hover {
    background-color: #cc0000;
}

@media (max-width: 900px) {
    .login-row {
        flex-direction: column;
    }
    .login-image-col {
        order: 1;
        width: 100%;
    }
    .login-form-col {
        order: 2;
        width: 100%;
    }
}

.btn-login-annuleren {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.reset-password-link-container {
    display: flex;
    justify-content: flex-start;
    margin-top: .75rem;

    color: black;
    font-size: 13px;
    font-style: italic;
}

.reset-password-link-item {
    color: var(--vives-rood) !important;
}

.resetpassword-redirect,
.register-redirect {
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;
}

.register-redirect {
    margin-top: 1.5rem;
}

.resetpassword-redirect a,
.register-redirect a {
    color: #0072ed;
    text-decoration: underline;
    cursor: pointer;
}

.resetpassword-redirect a:hover,
.register-redirect a:hover {
    color: #0056b3;
}

.reset-message-margin {
    margin-top: 1rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #666;
}

.form-control.input-validation-error {
    border-color: #dc3545;
}

.form-control.input-validation-error:focus {
    border-color: #dc3545;
}

.input-wrapper {
    position: relative;
}

.input-wrapper:has(.input-validation-error) .error-icon {
    display: block !important;
}

.error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 1.2rem;
}

.text-danger {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.text-danger.small {
    font-size: 12px;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
}

.text-danger-left {
    text-align: left !important;
    display: block;
    margin-left: 0 !important;
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.btn-vac {
    background-color: #e00020 !important;
    color: white !important;
    border: none !important;
    padding: 8px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-vac:hover {
    background-color: #c0001a !important;
    color: white !important;
}

.btn-vives:hover {
    background-color: #c4001c;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.modal-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.modal-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-modal-close {
    background-color: #e60000;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.btn-modal-close:hover {
    background-color: #c00000;
}

/* === Hero / Homepage === */
.masthead {
    height: 100vh;
    min-height: 500px;
    background-image: url("images/home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Register === */
.register-form-container {
    background: white;
}

.register-input {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #222;
    background: #fff;
}

.register-input.required-field {
    border-left: 4px solid #dc3545;
}

.register-input.optional-field {
    border-left: 3px solid #ddd;
}

.register-input::placeholder {
    color: #999;
}

.register-input:focus {
    outline: none;
    border-color: #999;
    border-left-width: 3px;
}

.required-field.modified.valid.register-input {
    border-left-color: #28a745 !important;
}

.required-field.modified.invalid.register-input {
    border-left-color: #dc3545 !important;
}

.register-btn {
    width: 100%;
    padding: 15px;
    background-color: #e60000;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.register-btn:hover {
    background-color: #cc0000;
}

.registrerenbtnwrapper {
    gap: 12px;
}

#student-form,
#company-form {
    display: block;
}

/* === Login / Create Vacancy === */
.login-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: white;
}

.login-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-login {
    background-color: #e60000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #cc0000;
}

/* === Create Vacancy === */
.form-control::file-selector-button {
    background-color: #dc3545 !important;
    background-image: none !important;
    color: white !important;
    border: 1px solid #dc3545 !important;
    padding: .375rem .75rem;
    border-radius: .25rem;
    cursor: pointer;
    transition: none !important;
}

.form-control:hover::file-selector-button,
.form-control::file-selector-button:hover,
.form-control::file-selector-button:active {
    background-color: #dc3545 !important;
    background-image: none !important;
    color: white !important;
    border-color: #dc3545 !important;
    opacity: 1 !important;
}

.form-control::-webkit-file-upload-button:hover {
    background-color: #dc3545 !important;
    opacity: 1 !important;
}

.vacancy-dropdown-btn {
    width: 100%;
    text-align: start;
    color: #6c757d;
    background-color: transparent;
    border: 1px solid #6c757d;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    cursor: pointer;
}

    .vacancy-dropdown-btn:hover {
        color: #fff;
        background-color: #6c757d;
    }

.vacancy-dropdown-list {
    width: 100%;
    padding: .5rem;
    max-height: 300px;
    overflow-y: auto;
}

.vacancy-studiegebied-item {
    display: block;
    padding: .25rem .5rem .25rem 1.5rem;
    border-left: 3px solid #6c757d;
    margin: 4px 4px 2px 4px;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.vacancy-studiegebied-label {
    font-weight: bold;
    cursor: pointer;
}

.vacancy-opleiding-item {
    display: block;
    padding: .25rem .5rem .25rem 2rem;
    margin: 1px 4px;
}

.vacancy-opleiding-label {
    cursor: pointer;
    margin-left: 0.5rem;
}

.form-control.vacancy-file-input {
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vacancy-file-input::file-selector-button {
    background-color: #e60000 !important;
    color: white !important;
    border: none;
    border-right: 2px solid #ddd;
    padding: 12px 20px;
    margin-right: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 100%;
}

/* ==== ResetPassword.razor styles moved to site.css ==== */
.reset-password-wrapper,
.change-password-wrapper{
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.reset-password-content,
.change-password-content{
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.reset-left-section,
.change-password-left-section {
    background-color: #e00020;
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-container {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.lock-icon {
    width: 50px;
    height: 50px;
    color: white;
}

.reset-title,
.change-password-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.reset-subtitle,
.change-password-subtitle {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    color: #fff;
}

.reset-right-section,
.change-password-right-section{
    padding: 60px 50px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.label-icon {
    width: 18px;
    height: 18px;
    color: #dc0032;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px 45px 15px 18px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #dc0032;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(220, 0, 50, 0.1);
}

.form-input::placeholder {
    color: #bbb;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.form-input:focus + .input-icon {
    opacity: 1;
}

.btn-reset {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc0032 0%, #b8002a 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-reset:hover {
    background: linear-gradient(135deg, #b8002a 0%, #9a0023 100%);
    box-shadow: 0 6px 20px rgba(220, 0, 50, 0.4);
}

.btn-reset:active {
    box-shadow: 0 2px 10px rgba(220, 0, 50, 0.3);
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

.validation-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc0032;
    font-size: 13px;
    margin-top: 8px;
}

.message-alert {
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe9a6 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-success {
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 8px;
    color: #155724;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .reset-password-content,
    .change-password-content {
        grid-template-columns: 1fr;
    }

    .reset-left-section,
    .change-password-left-section {
        padding: 40px 30px;
    }

    .reset-right-section,
    .change-password-right-section {
        padding: 40px 30px;
    }

    .reset-title,
    .change-password-title {
        font-size: 26px;
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }

    .lock-icon {
        width: 40px;
        height: 40px;
    }

    .reset-subtitle,
    .change-password-subtitle {
        font-size: 15px;
    }

    .btn-reset {
        padding: 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reset-password-wrapper,
    .change-password-wrapper{
        padding: 20px 12px;
        margin-top: 65px;
    }

    .reset-password-content,
    .change-password-content {
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .reset-left-section,
    .change-password-left-section {
        padding: 30px 20px;
    }

    .reset-right-section,
    .change-password-right-section {
        padding: 30px 20px;
    }

    .reset-title,
    .change-password-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .reset-subtitle,
    .change-password-subtitle {
        font-size: 14px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .lock-icon {
        width: 35px;
        height: 35px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input {
        padding: 12px 40px 12px 14px;
        font-size: 14px;
    }

    .btn-reset {
        padding: 14px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .message-alert,
    .message-success {
        padding: 12px;
        font-size: 13px;
        margin-top: 20px;
    }
}

.vacancy-file-input:hover::file-selector-button,
.vacancy-file-input::file-selector-button:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

/* === Hamburger menu (mobiel) === */
@media (max-width: 991px) {
    .navbar {
        min-height: unset;
    }

    .navbar .container-fluid {
        flex-wrap: wrap;
        padding: 10px 16px !important;
        align-items: center;
    }

    .navbar-items {
        width: 100%;
        background-color: white;
        border-top: 1px solid #eee;
        padding: 10px 0 16px 0;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center;
        width: 100%;
        gap: 4px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 1rem !important;
    }

    .registreermenu {
        flex-direction: column;
        align-items: center;
        padding: 10px 0 0 0;
        gap: 8px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .navbar {
        display: flex;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: row !important;
    }
}

/* === Vacature aanmaken === */
.vacancy-page-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.vacancy-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 720px;
}

.vacancy-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--vives-donker);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* === Contact === */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 620px;
}

.contact-header {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--vives-donker);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.contact-info-footer {
    margin-top: 2.5rem;
    margin-left: -3.5rem;
    margin-right: -3.5rem;
    margin-bottom: -3rem;
    padding: 1.5rem 3.5rem 2rem 3.5rem;
    background-color: var(--vives-rood);
    border-radius: 0 0 12px 12px;
}

    .contact-info-footer h2 {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        margin-bottom: 0.5rem;
    }

.contact-info-footer p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

@media (max-width: 795px) {
    /* === HomePage === */
    .hero-section {
        height: auto;
        min-height: calc(100vh - 80px);
        padding: 60px 20px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-buttons, .hero-button-list {
        gap: 6px;
        padding: 0 10px;
    }

    .btn-vives {
        width: auto;
        min-width: 220px;
        text-align: center;
        padding: 11px 18px;
        font-size: 0.75rem;
    }

    /* === Footer === */
    .main-footer {
        padding: 40px 0 24px 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .footer-logo {
        height: 60px;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-container {
        padding: 20px 12px;
        align-items: stretch;
    }

    .contact-card {
        padding: 1.8rem 1.2rem;
        border-radius: 10px;
        box-shadow: none;
    }

    .contact-header {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-footer {
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        margin-bottom: -1.8rem;
        padding: 1.2rem 1.2rem 1.8rem 1.2rem;
    }

    /* === HomePage === */
    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-buttons, .hero-button-list {
        gap: 6px;
    }

    .btn-vives {
        width: auto;
        min-width: 200px;
        text-align: center;
        padding: 11px 16px;
        font-size: 0.75rem;
    }

    /* === Vacature aanmaken === */
    .vacancy-page-container {
        padding: 20px 12px;
    }

    .vacancy-card {
        padding: 1.8rem 1.2rem;
        border-radius: 10px;
        box-shadow: none;
    }

    .vacancy-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    /* === Register === */
    .register-form-col .register-container {
        margin: 20px 12px;
        padding: 2rem 1.2rem;
    }

    .register-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .register-logo {
        max-width: 180px;
        margin-bottom: 14px;
    }

    .account-type-buttons {
        gap: 6px;
        margin-bottom: 24px;
    }

    .account-type-btn {
        font-size: 0.75rem;
        padding: 10px 6px;
        min-height: 55px;
        line-height: 1.2;
    }

    .register-input {
        padding: 14px;
        font-size: 1rem;
    }

    .register-btn {
        padding: 14px;
        font-size: 15px;
    }

    /* === ResetPasswordAanvraag === */
    .register-row .register-form-col {
        padding: 20px 12px;
    }

    .reset-message-margin {
        margin-top: 0.75rem;
        font-size: 14px;
    }

    .login-container {
        margin: 20px 12px;
        padding: 20px 16px;
    }

    .login-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    /* === Login === */
    .login-row {
        flex-direction: column;
        min-height: 100vh;
    }

    .login-image-col {
        display: flex !important;
    }

    .login-form-col .login-container {
        padding: 2rem 1.5rem;
        margin: 0;
        max-width: 100%;
    }

    /* === Gedeeld === */
    .btn-login {
        width: 100%;
        padding: 14px;
    }
}

/* === PROFILE ====*/

#profiel {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: initial;
}

.profileSection {
    padding: 30px 0;
}

/* Card container */
.profile-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    max-width: 900px;
    width: 100%;
}

/* Header */
.profile-header {
    margin-bottom: 40px;
}

.profileTitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 32px;
    color: #e50001;
}

.profile-header .profileTitle {
    margin: 0;
    max-width: none;
    text-align: left;
}
/* Grid layout */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* Item */
.profile-item {
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    background: #fafafa;
    border-radius: 14px;
    transition: all 0.2s ease;
}

    .profile-item:hover {
        background: #f3f3f3;
        transform: translateY(-2px);
    }

    /* Label */
    .profile-item .label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #737373; /* WCAG AA compliant */
        margin-bottom: 6px;
    }

    .profile-item a {
        color: #b00000; /* darker brand red */
        font-weight: 600;
        text-decoration: underline;
    }

        .profile-item a:hover {
            color: #8c0000;
        }

    /* Value */
    .profile-item .value {
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

/* Button */
.profile-actions {
    margin-top: 50px;
    text-align: right;
}

#profiel .btn-primary {
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    background: #e50001;
    border: none;
    transition: all 0.25s ease;
}

#profiel .btn-primary:hover {
    background: #c40000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 0, 1, 0.25);
}

.profile-buttons-container {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}

.profile-change-password-container {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.profile-button-spacing {

}

/* Loader */
.loader-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {

    .profile-card {
        padding: 30px;
    }

    .profile-actions {
        text-align: center;
    }

    #profiel .btn-primary {
        width: 100%;
    }
}
/* Add this small block near the other responsive rules (e.g. after @media (max-width: 768px)) */

@media (max-width: 576px) {
    /* Make the action buttons stack and be full width on small phones */
    .profile-form-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem;
    }

        .profile-form-actions .btn {
            width: 100% !important;
            padding-left: 0.75rem !important;
            padding-right: 0.75rem !important;
        }
}
/* Land (country) select in EditProfile – ensure 4.5:1 contrast (WCAG 1.4.3)
   #212529 op #ffffff = 16:1 */
#profiel .form-select,
#profiel .form-select option {
    color: #212529;
    background-color: #ffffff;
}

/* Limit custom dropdown panels so long option lists scroll instead of expanding the page */
.select-panel, .dropdown-menu.select-panel {
    max-height: 240px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}
/*LoginPrtial*/
.profiel-bewerken {
    width: max-content
    color: #1E1E1E;
    text-decoration: none;
    font-weight: normal;
}

    .profiel-bewerken:hover {
        text-decoration: underline;
    }

/* === EigenJobs === */
.eigenjobs-page {
    margin-top: 1.5rem;
}

.eigenjobs-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.eigenjobs-create-btn {
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.eigenjobs-pagination-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    background-color: #fbfbfb;
}

.eigenjobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eigenjobs-loader {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.eigenjobs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.eigenjobs-card-description {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.eigenjobs-card-meta {
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.eigenjobs-toolbar .form-select,
.eigenjobs-pagination-bar .form-select {
    background-color: #ffffff;
    color: #212529;
}

.eigenjobs-toolbar .form-select option,
.eigenjobs-pagination-bar .form-select option {
    background-color: #ffffff;
    color: #212529;
}

.btn-eigenjobs {
    background-color: #c3312f;
    border-color: #c3312f;
    color: #fff;
}

.btn-eigenjobs:hover {
    background-color: #a82826;
    border-color: #a82826;
    color: #fff;
}

.eigenjobs-card-title {
    font-weight: 700;
    color: #e00020;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.eigenjobs-card-type {
    color: #6c757d;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.eigenjobs-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e00020;
    font-size: 1.6rem;
    cursor: pointer;
}

.eigenjobs-search-input {
    max-width: 300px;
}

/* === EigenJob Detail === */
.eigenjobs-card-title-link {
    color: inherit;
    text-decoration: none;
}

.eigenjobs-card-title-link:hover {
    text-decoration: underline;
    color: #c0001a;
}

.eigenjobs-detail-back {
    margin-bottom: 0.5rem;
}

.eigenjobs-detail-backlink {
    color: #e00020;
    text-decoration: none;
    font-size: 0.9rem;
}

.eigenjobs-detail-backlink:hover {
    text-decoration: underline;
    color: #c0001a;
}

.eigenjobs-detail-card {
    max-width: 860px;
}

.eigenjobs-detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.eigenjobs-detail-value {
    display: block;
    font-size: 0.95rem;
}

.eigenjobs-description {
    color: #6c757d;
}

.eigenjobs-page-btn {
    color: #e00020;
    cursor: pointer;
}

.eigenjobs-page-btn:hover {
    color: #c0001a;
}

.eigenjobs-pencil-btn {
    font-size: 1.7rem;
}
    
.eigenjobs-delete-btn:hover {
    color: #c0001a;
}

.eigenjobs-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.eigenjobs-modal {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.eigenjobs-modal-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.eigenjobs-modal-delete-btn {
    background-color: #e00020 !important;
    border-color: #c0001a !important;
}

.eigenjobs-modal-delete-btn:hover {
    background-color: #c0001a !important;
    border-color: #a0001a !important;
}

.eigenjobs-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}


@media (max-width: 991px) {
    .eigenjobs-page {
        padding-top: 2rem;
    }

    .eigenjobs-detail-back {
        padding-top: 2rem;
    }
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}


.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    background-color: rgb(224, 0, 32) !important;
    color: white;
    padding: 5px 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: #a01829;
    }

    .faq-question.active {
        background-color: #a01829;
    }

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}

.faq-answer {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 3px solid #c41e3a;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 600px) {
  .faq-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 8px;
  }
  .faq-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 24px;
  }
  .faq-section-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .faq-question {
    padding: 10px 12px;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* ================================================
   VACANCY STYLES (merged from vacancy.css)
   ================================================ */

/* ============================================
   RESPONSIVE TITLE LINKS
   ============================================ */
.vac-title-link--mobile {
    display: none !important;
}

.vac-title-link--desktop {
    display: block !important;
}

.vac-details-column--desktop {
    display: flex !important;
}

@media (max-width: 991.98px) {
    .vac-title-link--desktop {
        display: none !important;
    }

    .vac-title-link--mobile {
        display: block !important;
    }

    .vac-details-column--desktop {
        display: none !important;
    }
}

/* ============================================
   PAGE LAYOUT
   ============================================ */
.vac-page-wrapper {
    padding-top: 10px;
    min-height: 100vh;
    background-color: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.vac-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    overflow-x: visible;
}

.vac-content-row {
    display: flex;
    margin: 0;
    min-height: calc(100vh - 80px);
    width: 100%;
    align-items: flex-start;
}

/* ============================================
   LEFT & CENTER WRAPPER
   ============================================ */
.vac-left-center-wrapper {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    position: relative;
    background-color: #ffffff;
    width: 100%;
    overflow: visible;
}

.vac-scrollable-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: visible;
}

/* ============================================
   FILTER COLUMN
   ============================================ */
.vac-filter-column {
    flex: 0 0 42.857143%;
    max-width: 42.857143%;
    background-color: #ffffff;
    width: 100%;
    padding-top: 25px;
}

.vac-filter-inner-wrapper {
    padding: 1.5rem;
    padding-top: 1rem;
}

.vac-filter-column ul,
.vac-filter-column li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* ============================================
   VACANCY LIST COLUMN
   ============================================ */
.vac-list-column {
    flex: 0 0 57.142857%;
    max-width: 57.142857%;
    background-color: #ffffff;
    width: 100%;
}

.vac-list-wrapper {
    padding: 1rem;
    overflow: visible;
}

/* ============================================
   RIGHT DETAILS PANEL
   ============================================ */
.vac-details-column {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    background-color: transparent;
    position: fixed;
    top: 100px;
    right: 0;
    width: 41.666667%;
    height: calc((100vh - 100px) * 0.92);
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
}

.vac-details-column:has(.vac-details-sticky-wrapper > *) {
    background-color: #ffffff;
    pointer-events: auto;
}

.vac-details-sticky-wrapper {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.vac-details-sticky-wrapper > * {
    margin-top: 0;
    padding: 0;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button {
    display: block;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.05);
    background-repeat: no-repeat;
    background-position: center;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:start:decrement {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 4l4 4H2z'/%3E%3C/svg%3E");
    border-radius: 6px 6px 0 0;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:end:increment {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    border-radius: 0 0 6px 6px;
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:start:decrement:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 4l4 4H2z'/%3E%3C/svg%3E");
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:end:increment:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:active {
    background-color: rgba(0, 0, 0, 0.12);
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:start:decrement:active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 4l4 4H2z'/%3E%3C/svg%3E");
}

.vac-details-sticky-wrapper::-webkit-scrollbar-button:vertical:end:increment:active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
}

/* ============================================
   VACANCY CARDS
   ============================================ */
.vac-card {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.vac-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vac-card-body {
    padding: 1rem;
}

h5.vac-title,
.vac-title {
    color: #E00020 !important;
    font-weight: bold !important;
    margin: 0 !important;
    font-size: 1.25rem !important;
    text-transform: uppercase;
    transition: transform 0.2s;
    text-decoration: none;
    line-height: 1.2 !important;
    visibility: visible !important;
    display: block !important;
    max-width: none !important;
}

.vac-title-link,
.vac-title-link:link,
.vac-title-link:visited,
.vac-title-link:hover,
.vac-title-link:active,
.vac-title-link:focus {
    color: inherit !important;
    text-decoration: none !important;
    outline: none !important;
}

a:hover > h5.vac-title,
h5.vac-title:hover {
    text-decoration: underline;
    text-decoration-color: #E00020;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
    transform: scale(1.02);
}

.vac-section {
    margin-bottom: 0.5rem;
}

.vac-card-meta {
    color: #6c757d;
    font-size: 15px !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem;
}

.vac-card-body h6.vac-card-meta {
    font-size: 15px !important;
    font-weight: bold !important;
    color: #1E1E1E;
}

.vac-period {
    font-weight: bold;
}

.vac-job-type-text {
    margin: 0;
    display: inline;
    font-size: 16px;
}

.vac-text-pre {
    white-space: pre-line;
}

/* ============================================
   DETAILS PANEL CONTENT
   ============================================ */
.vac-btn-close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    margin-left: auto;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.vac-btn-close::before {
    content: "✕";
}

.vac-btn-close:hover {
    background-color: #1E1E1E;
    color: white;
}

.vac-jumbotron {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin: 0;
}

.vac-title-h1 {
    color: #e50001 !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s;
    margin: 0 0 0.5rem 0 !important;
    max-width: none !important;
    line-height: 1.2 !important;
    word-break: break-word;
    overflow-wrap: break-word;
}

.vac-title-h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.vac-meta-h6 {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vac-description {
    white-space: pre-line;
    line-height: 1.6;
    font-size: 1rem;
}

.vac-details-panel-title-link,
.vac-details-panel-title-link:link,
.vac-details-panel-title-link:visited,
.vac-details-panel-title-link:hover,
.vac-details-panel-title-link:active,
.vac-details-panel-title-link:focus {
    color: inherit !important;
    text-decoration: none !important;
    outline: none !important;
}

.vac-details-panel-title-link:hover > .vac-title-h1,
.vac-details-panel-title-link .vac-title-h1:hover {
    text-decoration: underline;
    text-decoration-color: #E00020;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
    transform: scale(1.02);
}

/* ============================================
   FILE ATTACHMENT
   ============================================ */
.vac-file-label {
    align-items: stretch;
    display: flex;
    cursor: pointer;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

.vac-file-cta {
    background-color: #E00020;
    border-color: transparent;
    color: white;
    border-radius: 0.5rem;
    padding: 6px 2rem 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vac-file-cta:hover {
    background-color: #c00018;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 0, 32, 0.3);
    text-decoration: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.vac-pagination-top {
    padding: 1rem;
    background: white;
    z-index: 10;
    margin-top: 0;
}

.vac-pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vac-pagination-info {
    font-size: 0.9rem;
    color: #6c757d;
    white-space: nowrap;
}

.vac-page-size-select {
    width: 80px;
    display: inline-block;
}

.vac-pagination-range {
    font-size: 0.9rem;
    color: #495057;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.vac-pagination-arrows {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.vac-pagination-link {
    padding: 0.25rem 0.5rem;
    border: none;
    background: white;
    color: #495057;
    border-radius: 0.25rem;
    cursor: pointer;
}

.vac-pagination-link:hover:not(:disabled) {
    background: #f8f9fa;
    color: #E00020;
}

.vac-pagination-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   LOADING & ALERTS
   ============================================ */
.vac-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.vac-loadspinner {
    width: 80px;
    height: auto;
}

.vac-alert {
    margin: 1rem;
    border-radius: 0.5rem;
}

/* ============================================
   FILTER FORM ELEMENTS
   ============================================ */
.vac-filter-inner-wrapper .vac-form-select,
.vac-filter-inner-wrapper .vac-form-input {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width:100%;
}

.vac-filter-inner-wrapper .vac-form-select:hover,
.vac-filter-inner-wrapper .vac-form-input:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    background-color: #e9ecef;
}

.vac-filter-inner-wrapper .vac-form-select:focus,
.vac-filter-inner-wrapper .vac-form-input:focus {
    border-color: #E00020;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(224, 0, 32, 0.15), 0 2px 8px rgba(224, 0, 32, 0.2);
    background-color: #ffffff;
}

.vac-filter-inner-wrapper .vac-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.vac-filter-inner-wrapper .vac-form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23E00020' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3E");
}

.vac-filter-inner-wrapper .vac-form-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
    font-style: italic;
}

.vac-filter-inner-wrapper .vac-form-input:focus::placeholder {
    opacity: 0.5;
}

.vac-filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.vac-filter-inner-wrapper > .vac-mb {
    margin-bottom: 1.5rem !important;
}

.vac-filter-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.75rem 0 0.35rem 0;
}

/* ============================================
   FILTER CHECKBOXES
   ============================================ */
.vac-checkbox-label {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    line-height: 20px;
}

.vac-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.vac-checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.55);
}

.vac-checkbox-label:hover input ~ .vac-checkmark {
    background-color: #ccc;
}

.vac-checkbox-label input:checked ~ .vac-checkmark {
    background-color: #E00020;
    border-color: #E00020;
}

.vac-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.vac-checkbox-label input:checked ~ .vac-checkmark:after {
    display: block;
}

.vac-checkbox-label .vac-checkmark:after {
    left: 5px;
    top: 2px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.vac-checkbox-type-group {
    display: inline-block;
    margin-bottom: 30px;
}

/* ============================================
   STUDY AREA DROPDOWNS
   ============================================ */
.vac-study-area-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vac-study-area-list > li {
    display: block;
    margin-bottom: 5px;
}

.vac-study-area-text {
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-left: 25px;
    font-size: 14px;
    vertical-align: top;
}

.vac-dropdown-icon {
    cursor: pointer;
    vertical-align: middle;
    margin-left: 0.25rem;
    font-size: 20px;
    color: #495057;
    transition: transform 0.2s ease;
}

.vac-dropdown-icon:hover {
    color: #E00020;
}

ul[id^="degree-types-"] {
    padding-left: 0;
    margin-top: 0.5rem;
    list-style: none;
}

ul[id^="degree-types-"] > li {
    margin-left: 25px !important;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

ul[id^="bachelor-majors-"],
ul[id^="graduate-majors-"] {
    padding-left: 0;
    margin-top: 0.5rem;
    list-style: none;
}

ul[id^="bachelor-majors-"] > li,
ul[id^="graduate-majors-"] > li {
    margin-left: 25px !important;
    margin-bottom: 5px;
}

ul[id^="degree-types-"] ul,
ul[id^="bachelor-majors-"] ul,
ul[id^="graduate-majors-"] ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul[id^="degree-types-"] li,
ul[id^="bachelor-majors-"] li,
ul[id^="graduate-majors-"] li {
    list-style: none;
    padding: 0;
}

ul[id^="degree-types-"] > li > .vac-checkbox-label {
    padding-left: 0;
    width: 28px;
    flex-shrink: 0;
    margin-bottom: 0;
}

ul[id^="degree-types-"] > li > div {
    flex: 1;
    display: inline-block;
}

ul[id^="degree-types-"] > li > ul {
    width: 100%;
    margin-left: 28px;
}

.vac-degree-type-name {
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

/* ============================================
   FILTER BUTTON
   ============================================ */
.vac-btn-filter {
    background-color: #E00020;
    color: white;
    border: none;
    box-shadow: none;
    padding: 5px 50px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.vac-btn-filter:hover {
    background-color: #c00018;
    transform: scale(1.1);
}

.vac-btn-filter:focus {
    transform: scale(1.1);
}

.vac-btn-filter:active {
    transform: translateY(0);
}

/* ============================================
   VACANCY DETAIL PAGE
   ============================================ */
.vac-detail-page {
    padding: 2rem 0 4rem 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.vac-detail-back {
    margin-bottom: 1.5rem;
}

.vac-detail-back-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vac-detail-back-link:hover {
    color: #E00020;
}

.vac-detail-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 3rem;
    max-width: 860px;
    margin: 0 auto;
}

.vac-detail-header {
    margin-bottom: 1.5rem;
}

.vac-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    margin-bottom: 1.5rem;
}

.vac-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #555;
}

.vac-detail-meta-item i {
    color: #E00020;
    font-size: 1rem;
}

.vac-detail-divider {
    border-color: #e9ecef;
    margin: 1.5rem 0;
}

.vac-detail-description {
    margin-bottom: 2rem;
}

.vac-detail-actions {
    margin-top: 1.5rem;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ============================================
   VACANCY MOBILE - TABLET (max 992px)
   ============================================ */
@media (max-width: 992px) {
    .vac-page-wrapper {
        padding-top: 60px;
        overflow-x: hidden;
    }

    .vac-content-row {
        flex-direction: column !important;
        height: auto;
        overflow: visible;
        width: 100%;
    }

    .vac-left-center-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 0 !important;
        height: auto;
        overflow: visible;
    }

    .vac-details-column {
        display: none !important;
    }

    .vac-scrollable-content {
        flex-direction: column !important;
        height: auto;
        overflow: visible;
        width: 100%;
    }

    .vac-filter-column,
    .vac-list-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        border-right: none;
        border-bottom: none;
    }

    .vac-filter-inner-wrapper {
        padding: 1rem !important;
        padding-top: 1.5rem !important;
    }

    .vac-list-wrapper {
        padding: 0.75rem !important;
    }

    .vac-pagination-top {
        margin-top: 0 !important;
        padding: 0.75rem !important;
    }

    .vac-pagination-controls {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem;
    }

    .vac-pagination-range {
        text-align: left !important;
    }

    .vac-card {
        margin-bottom: 0.5rem !important;
    }

    .vac-card-body {
        padding: 0.75rem !important;
    }

    .vac-pagination-info,
    .vac-page-size-select {
        font-size: 0.85rem;
    }

    .vac-pagination-range {
        font-size: 0.85rem;
    }

    .vac-filter-inner-wrapper > .vac-mb {
        margin-bottom: 1rem !important;
    }
}

/* ============================================
   VACANCY MOBILE - SMALL PHONES (max 576px)
   ============================================ */
@media (max-width: 576px) {
    .vac-page-wrapper {
        padding-top: 50px;
    }

    .vac-filter-inner-wrapper {
        padding: 0.75rem !important;
        padding-top: 1rem !important;
    }

    .vac-list-wrapper {
        padding: 0.5rem !important;
    }

    .vac-pagination-top {
        padding: 0.5rem !important;
    }

    .vac-checkbox-label {
        font-size: 13px;
    }

    .vac-study-area-text,
    .vac-degree-type-name {
        font-size: 13px;
    }

    .vac-card-body {
        padding: 0.5rem !important;
    }

    h5.vac-title,
    .vac-title {
        font-size: 0.95rem !important;
    }

    .vac-card-meta {
        font-size: 0.75rem;
    }

    .vac-checkbox-type-group {
        margin-bottom: 15px;
    }

    .vac-btn-filter {
        padding: 8px 30px !important;
        font-size: 0.875rem !important;
    }

    .vac-pagination-controls {
        display: grid;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        gap: 0.4rem 0.5rem;
    }

    .vac-pagination-info  { grid-column: 1; grid-row: 1; font-size: 0.8rem; }
    .vac-page-size-select { grid-column: 2; grid-row: 1; width: 64px; }
    .vac-pagination-range { grid-column: 3; grid-row: 1; font-size: 0.8rem; text-align: center; flex: unset; }
    .vac-pagination-arrows { grid-column: 4; grid-row: 1; margin-left: 0; }

    .vac-detail-card {
        padding: 1.5rem 1.2rem;
        border-radius: 8px;
        box-shadow: none;
    }

    .vac-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .language-select-item {
        width: min-content;
    }
}
/* ==============================
   Levenslang Leren
   Scope: #navorming.ll-page
================================= */

#navorming.ll-page {
    overflow-x: hidden;
    background-color: #ffffff;
}

/* HERO */
#navorming .ll-hero__image {
    min-height: 100vh;
    overflow:hidden;
}

#navorming .ll-hero__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: inline;
}

#navorming .ll-hero__content {
    background-color: #fbfbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 100vh;
}

#navorming .ll-hero__inner {
    width: 100%;
    max-width: 650px;
    text-align: left;
}

#navorming .ll-hero__title {
    font-size: 42px;
    font-weight: 900;
    color: var(--vives-donker);
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

#navorming .ll-hero__divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    opacity: 1;
    margin: 0 0 30px 0;
}

#navorming .ll-hero__lead {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--vives-donker);
}

#navorming .ll-hero__text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2b2b2b;
}

/* Links */
#navorming .ll-link {
    color: var(--vives-rood);
    text-decoration: underline;
    text-underline-offset: 2px;
}

    #navorming .ll-link:hover {
        color: #c0001a;
    }

/* Button */
#navorming .ll-btn {
    background: var(--vives-rood);
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    width: auto;
}

    #navorming .ll-btn:hover {
        background-color: #c0001a;
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(224, 0, 32, 0.18);
    }

    #navorming a:focus-visible,
    #navorming button:focus-visible,
    #navorming .ll-btn:focus-visible {
        outline: 3px solid #111;
        outline-offset: 3px;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
    }

/* CONTENT */
#navorming .ll-content {
    background-color: #ffffff;
    padding: 30px 0;
}

#navorming .ll-content__title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: var(--vives-donker);
}

/* Items */
#navorming .ll-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2px;
}

    #navorming .ll-item:last-child {
        border-bottom: none;
    }

#navorming .ll-item__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--vives-donker);
}

#navorming .ll-item__text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2b2b2b;
}

#navorming .ll-item__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 991.98px) {
    #ll-img {
        display: none !important;
    }

    #navorming .ll-hero__image {
        display: none;
    }

    #navorming .ll-hero__content {
        padding: 40px 20px;
        min-height: auto;
    }

    #navorming .ll-hero__title {
        font-size: 30px;
    }

    #navorming .ll-hero__lead,
    #navorming .ll-hero__text {
        font-size: 15px;
    }

    #navorming .ll-content {
        padding: 60px 20px;
    }

    #navorming .ll-item {
        padding: 40px 0;
    }
}