/* ===============================
   RESET & BASIS
================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f7fa;
    color: #222;
}

/* ===============================
   LAYOUT
================================= */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 5.5rem;
}

.content {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

/* ===============================
   TEKST
================================= */
h1 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.intro {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
    color: #333;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #444;
}

/* ===============================
   DIVIDER
================================= */
.divider {
    width: 60px;
    height: 1px;
    background: #dcdfe4;
    margin: 1.25rem auto;
}

/* ===============================
   STATUS
================================= */
.status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.status-badge {
    padding: 0.2rem 0.45rem;
    border: 1px solid #d0d4da;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    background: #fff;
}

.status-text {
    font-weight: 500;
}

/* ===============================
   LOADING DOTS
================================= */
.dots::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    text-align: left;
    animation: dots 1.6s steps(4, end) infinite;
}

@keyframes dots {
    0%   { content: ''; }
    10%  { content: '.'; }
    20%  { content: '..'; }
    30%  { content: '...'; }
    40%  { content: '....'; }
    50%  { content: '.....'; }
    60%  { content: '......'; }
    70%  { content: '.......'; }
    80%  { content: '........'; }
    90%  { content: '.........'; }
    100% { content: ''; }
}

/* ===============================
   FOOTER
================================= */
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e1e4e8;
    padding: 0.75rem 1rem;
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #666;
}

.separator {
    opacity: 0.4;
}

/* ===============================
   EMAIL
================================= */
.email {
    cursor: pointer;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email:hover {
    color: #c9a227;
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
}

/* ===============================
   GERELATEERDE WEBSITES
================================= */
.divider.small {
    width: 40px;
    margin: 1rem auto 0.75rem;
}

.related-sites {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #666;
}

.related-sites a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.related-sites a:hover {
    color: #c9a227;
}

/* ===============================
   INFORMATIEMELDING
================================= */
.notice {
    max-width: 520px;
    margin: 0 auto 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.notice p {
    margin-bottom: 0.75rem;
}

.notice strong {
    font-weight: 600;
    color: #222;
}

.notice .closing {
    margin-top: 0.75rem;
}

/* Inline e-mail (in tekst) */
.email-inline {
    font-weight: 600;
    white-space: nowrap;
}