:root{
    --brand-primary:#91c3c6;
    --brand-secondary:#F2326E;
    --text:#000;
    --bg:#f6f8fb;
}

/* Base look */
html, body { height: 100%; }
body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg), #fff 40%);
}

/* Top gradient bar */
.topbar {
    height: 6px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

/* Card width limiter to complement Bootstrap */
.card-narrow { max-width: 760px; }

/* Brand/logo + animation */
.brand-logo {
    opacity: 0;
    transform: translateY(-24px);
    animation: logoFloatIn 700ms cubic-bezier(.22, 1, .36, 1) 200ms forwards;
    will-change: transform, opacity;
}

.brand-logo img {
    display: block;
    max-width: 248px;  /* keep logo at a sensible size */
    height: auto;
}

@keyframes logoFloatIn {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Accessibility: prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .brand-logo { animation: none; opacity: 1; transform: none; }
}


/* Status balkje/indicator */
.status {
    margin: 18px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.progress {
    flex: 1;
    height: 8px;
    background: #e9eef5;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.progress span {
    display: block;
    height: 100%;
    width: 45%;
    background: var(--brand-secondary);
    animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
    0%   { width: 30%; opacity: .85; }
    50%  { width: 68%; opacity: 1; }
    100% { width: 30%; opacity: .85; }
}

/* CTA knoppen */
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}
.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 16px;
    transition: transform .05s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn-primary {
    background: var(--brand-secondary);
    color: #fff;
    border: 1px solid var(--brand-secondary);
    transform: translateY(0);
    transition: transform .05s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
    box-shadow: 0 8px 18px rgba(28,139,193,.35);
}
.btn-primary:hover { transform: translateY(-1px); background: #fff; border: 1px solid var(--brand-secondary); color: var(--brand-secondary);}
.btn-outline {
    background: #fff;
    color: var(--brand-primary);
    border: 2px solid rgba(28,139,193,.25);
}
.btn-outline:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* Footer */
.footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e6e9ef;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}
.footer a { color: var(--brand-primary); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Klein scherm */
@media (max-width: 520px) {
    .card { padding: 24px; }
    .content h2 { font-size: 24px; }
    .brand-text h1 { font-size: 18px; }
}

h2 {
    text-transform: uppercase;
    font-weight: 600;
}

.jobs {
    margin-top: 3rem;
}
.jobs dl {
    margin: 0;
    padding: 0;
    list-style: none;
}
.jobs h2 {
    margin-bottom: 2rem;
}
.jobs dt a {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-secondary);
    text-decoration: none;
}
.jobs dd {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: var(--brand-primary) 1px solid;
}
.modal-title {
    text-transform: uppercase;
}

.job-description strong {
    font-weight: 600;
    color: var(--brand-secondary);
    text-transform: uppercase;
}

.job-description em {
    font-weight: 600;
}