:root {
    --blue: #002b5c;
    --blue-dark: #001f43;
    --gold: #b68a1f;
    --light: #f5f7fa;
    --text: #1f2933;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
}

a {
    color: var(--blue);
    text-decoration: none;
}

/* LOGIN */

.login-hero {
    min-height: 680px;
    background:
        linear-gradient(rgba(0, 20, 45, 0.65), rgba(0, 20, 45, 0.65)),
        url("../images/hero-login-documentatiecentrum1.jpg") center / cover no-repeat;
}

.login-overlay {
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 20px;
    text-align: center;
    color: var(--white);
}

.login-logo {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: white;
    margin-bottom: 35px;
}

.login-overlay h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: 700;
}

.login-overlay h2 {
    margin: 15px 0;
    color: var(--gold);
    font-size: 24px;
}

.login-overlay p {
    font-size: 17px;
    line-height: 1.6;
}

.login-card {
    margin-top: 25px;
    width: 390px;
    max-width: 100%;
    background: var(--white);
    color: var(--blue);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.login-card h3 {
    margin-top: 0;
    font-family: Georgia, serif;
    font-size: 24px;
}

.login-card input {
    width: 100%;
    padding: 13px;
    margin-bottom: 12px;
    border: 1px solid #d7dde5;
    border-radius: 5px;
}

.login-card button,
.login-card .btn {
    width: 100%;
    padding: 13px;
    border: 0;
    border-radius: 5px;
    background: var(--blue);
    color: white;
    font-weight: 700;
}

.login-card .mod-login__username label,
.login-card .mod-login__password label {
    display: none !important;
}

.login-card .mod-login__remember label,
.login-card .form-check-label {
    display: inline-block !important;
}

.login-card input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.login-card ul {
    list-style: none;
    padding-left: 0;
    margin: 18px 0 0;
}

.login-card li {
    margin: 6px 0;
}

/* PUBLIEKE INFO */

.public-info {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 25px 70px;
    text-align: center;
}

.public-info h2 {
    font-family: Georgia, serif;
    color: var(--blue);
    font-size: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.info-grid article {
    padding: 20px;
}

.icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e6edf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* DASHBOARD */

.site-header {
    height: 96px;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0 48px;
    gap: 45px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
}

.brand img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.brand strong {
    display: block;
    color: var(--blue);
}

.brand span {
    display: block;
    font-size: 14px;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.home-link {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.home-link:hover {
    color: var(--blue);
}

.main-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    color: #111;
    font-weight: 600;
}

.user-box {
    color: var(--blue);
    font-weight: 600;
}

.dashboard-hero {
    height: 310px;
    background:
        linear-gradient(rgba(0, 20, 45, 0.6), rgba(0, 20, 45, 0.6)),
        url("../images/hero-login-documentatiecentrum1.jpg") center / cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    padding-left: 70px;
}

.dashboard-hero h1 {
    font-family: Georgia, serif;
    font-size: 38px;
    margin: 0 0 18px;
}

.dashboard-main {
    max-width: 1180px;
    margin: -55px auto 0;
    padding: 0 25px 70px;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portal-card {
    background: white;
    border-radius: 8px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.portal-card h2 {
    color: #111;
    font-size: 22px;
}

.portal-card p {
    line-height: 1.6;
}

.portal-card a,
.brugse-stam a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    border-radius: 4px;
    background: var(--blue);
    color: white;
    font-weight: 700;
}

.portal-card .gold-button {
    background: var(--gold);
}

.portal-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.portal-icon.blue {
    background: var(--blue);
}

.portal-icon.gold {
    background: var(--gold);
}

.brugse-stam {
    position: relative;
    margin-top: 28px;
    background: #fbf6ec;
    border: 1px solid #e3c88a;
    border-radius: 8px;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 150px;
    gap: 30px;
    align-items: center;
}

.brugse-stam h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--blue);
}

.brugse-stam h3 {
    color: var(--gold);
}

.magazine-placeholder {
    height: 180px;
    background: white;
    border: 1px solid #ddd;
    transform: rotate(4deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 28px;
    color: #111;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.round-link {
    width: 120px;
    height: 120px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

.bottom-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bottom-grid article {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.bottom-grid h2 {
    color: var(--blue);
}

/* INHOUDSPAGINA'S */

.content-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 25px 120px;
    min-height: calc(100vh - 260px);
}

.content-page h1,
.content-page h2 {
    color: var(--blue);
    font-family: Georgia, serif;
}

.content-page h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.content-page .item-page {
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 60px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.content-page .page-header h1 {
    margin-top: 0;
}

.content-page .icons,
.content-page .article-info,
.content-page .published {
    display: none;
}

/* SUBPORTAAL */

.subportal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.subportal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.subportal-card h2 {
    color: #111;
    font-size: 22px;
}

.subportal-card p {
    line-height: 1.6;
}

.subportal-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    border-radius: 4px;
    background: var(--blue);
    color: white;
    font-weight: 700;
}

.subportal-card a.gold-button {
    background: var(--gold);
}

/* FOOTER */

.site-footer {
    background: #ffffff;
    color: var(--blue);
    padding: 28px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    border-top: 1px solid #e5e7eb;
    font-size: 16px;
}

.footer-contact {
    line-height: 1.75;
    max-width: 420px;
}

.footer-contact strong,
.footer-contact span,
.footer-contact a {
    display: block;
}

.footer-contact strong {
    margin-bottom: 8px;
}

.footer-contact a {
    margin-top: 12px;
    color: #0066cc;
}

.footer-support {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-support span {
    font-weight: 600;
    white-space: nowrap;
}

.footer-support img {
    max-height: 75px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .info-grid,
    .portal-grid,
    .bottom-grid,
    .brugse-stam,
    .subportal-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .dashboard-hero {
        padding: 40px 25px;
        height: 260px;
    }

    .dashboard-main {
        margin: 0 auto;
    }

    .content-page {
        padding: 40px 20px 80px;
    }

    .content-page .item-page {
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 60px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .footer-support {
        flex-wrap: wrap;
    }
}