/* ============================================================
   SCZ Productions — app.css
   Design tokens, base reset, alle component-stijlen
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --primary: #F2A900;
    --primary-dark: #d99500;
    --secondary: #614400;
    --white: #FFFFFF;
    --dark: #2d2d2d;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-text: #888888;
    --font-title: 'Luckiest Guy', cursive;
    --font-quote: 'Indie Flower', cursive;
    --font-body: 'Aptos Display', 'Segoe UI', system-ui, sans-serif;
    --border-dashed: 2px dashed var(--secondary);
    --radius-card: 14px;
    --radius-btn: 12px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
    --transition: 0.25s ease;
    --max-width: 1200px;
    --section-py: 80px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Blazor loading screen ──────────────────────────────────── */
.blazor-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1rem;
}

    .blazor-loading img {
        width: 80px;
        animation: pulse 1.4s ease-in-out infinite;
    }

    .blazor-loading p {
        font-family: var(--font-body);
        color: var(--gray-text);
        font-size: 0.95rem;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ── Blazor error UI ────────────────────────────────────────── */
#blazor-error-ui {
    background: #ffebe5;
    border-top: 2px solid #e06040;
    padding: 0.75rem 1.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

    #blazor-error-ui .reload {
        color: var(--secondary);
        font-weight: 600;
        margin-left: 0.5rem;
    }

    #blazor-error-ui .dismiss {
        float: right;
        cursor: pointer;
        font-size: 1.1rem;
    }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section {
    padding-block: var(--section-py);
}

.btn {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.8rem;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: none;
    text-align: center;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

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

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-outline-dark {
    background: var(--white);
    color: var(--secondary);
    border: var(--border-dashed);
}

    .btn-outline-dark:hover {
        background: var(--gray-light);
    }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 2rem 1.75rem;
}

.card-dashed {
    background: var(--white);
    border-radius: var(--radius-card);
    border: var(--border-dashed);
    padding: 2rem 1.75rem;
}

/* ── Section backgrounds ────────────────────────────────────── */
.bg-gold {
    background: var(--primary);
}

.bg-white {
    background: var(--white);
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  NAVBAR                                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.85rem;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.navbar-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.navbar-name {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--dark);
    letter-spacing: 0.03em;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    transition: color var(--transition);
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: width var(--transition);
    }

    .nav-link:hover {
        color: var(--secondary);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

    .nav-link.active {
        color: var(--secondary);
    }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: default;
    user-select: none;
}

    .nav-dropdown-trigger .arrow {
        font-size: 0.7rem;
        transition: transform var(--transition);
        line-height: 1;
    }

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* direct aansluitend — geen gap */
    right: 0;
    padding-top: 0.75rem; /* ruimte zit nu BINNEN de hover-zone */
    background: transparent;
    min-width: 180px;
}

/* Binnenste kaart */
.nav-dropdown-menu-inner {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    color: var(--dark);
    transition: background var(--transition);
}

    .nav-dropdown-menu a:hover {
        background: var(--gray-light);
    }

/* Hamburger */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .navbar-toggler span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: all var(--transition);
    }

    .navbar-toggler.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler.open span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile nav */
@media (max-width: 768px) {
    .navbar-toggler {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 1rem 1.5rem 1.5rem;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-link {
        padding: 0.6rem 0;
        width: 100%;
        font-size: 1rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    /* Op mobiel altijd zichtbaar (geen hover) */
    .nav-dropdown-menu {
        display: block;
        position: static;
        padding-top: 0;
        background: transparent;
        min-width: unset;
    }

    .nav-dropdown-menu-inner {
        box-shadow: none;
        border-top: 1px solid var(--gray-mid);
        border-radius: 0;
        padding: 0.25rem 0;
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  FOOTER                                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-mid);
    padding-block: 3rem 1.5rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--dark);
    letter-spacing: 0.03em;
    display: block;
}

.footer-tagline {
    font-family: var(--font-quote);
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-top: 0.25rem;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    margin-bottom: 2rem;
}

    .footer-nav a {
        font-size: 0.9rem;
        color: var(--gray-text);
        transition: color var(--transition);
    }

        .footer-nav a:hover {
            color: var(--secondary);
        }

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-text);
    border-top: 1px solid var(--gray-mid);
    padding-top: 1.25rem;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  NIEUWSBRIEF BANNER                                      ║
   ╚══════════════════════════════════════════════════════════╝ */

.nieuwsbrief-banner {
    background: var(--white);
    padding-block: 4rem;
    border-top: 1px solid var(--gray-mid);
}

.nieuwsbrief-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nieuwsbrief-left {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 280px;
}

.nieuwsbrief-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 3px;
}

.nieuwsbrief-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--dark);
    display: block;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nieuwsbrief-sub {
    font-size: 0.92rem;
    color: var(--gray-text);
    margin-top: 0.35rem;
    display: block;
}

.nieuwsbrief-form {
    display: flex;
    gap: 0.6rem;
    flex: 1;
    min-width: 260px;
    max-width: 440px;
}

.nieuwsbrief-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--gray-mid);
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

    .nieuwsbrief-input:focus {
        border-color: var(--primary);
    }

    .nieuwsbrief-input::placeholder {
        color: var(--gray-text);
    }

@media (max-width: 640px) {
    .nieuwsbrief-form {
        flex-direction: column;
        max-width: 100%;
    }

    .nieuwsbrief-inner {
        flex-direction: column;
    }
}

@media (min-width: 641px) and (max-width: 820px) {
    .nieuwsbrief-form {
        flex-direction: column;
        max-width: 100%;
    }

        .nieuwsbrief-form .btn {
            align-self: flex-start;
        }
}

/* Nieuwsbrief — feedback & validatie */
.nieuwsbrief-feedback {
    font-family: 'Aptos Display', sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.nieuwsbrief-succes {
    color: #166534;
}

.nieuwsbrief-info {
    color: #1e40af;
}

.nieuwsbrief-fout {
    color: #991b1b;
}

.nieuwsbrief-validatie {
    font-size: 0.8rem;
    color: #991b1b;
    margin-top: 4px;
    display: block;
}

.nieuwsbrief-input.input-fout {
    border-color: #ef4444;
    outline-color: #ef4444;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE — HERO (Sectie 1)                              ║
   ╚══════════════════════════════════════════════════════════╝ */

.hero {
    padding-block: 5rem 4rem;
    background: var(--white);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-name {
    font-family: var(--font-body);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.hero-brand {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--primary);
    letter-spacing: 0.04em;
    display: block;
    margin-top: 0.3rem;
}

.hero-quote {
    font-family: var(--font-quote);
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-top: 0.75rem;
    display: block;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascotte {
    width: min(300px, 100%);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(242,169,0,0.18));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-mascotte {
        width: min(260px, 70%);
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE — PROPOSITIE (Sectie 2)                        ║
   ╚══════════════════════════════════════════════════════════╝ */

.propositie {
    background: var(--primary);
    padding-block: var(--section-py);
    text-align: center;
}

.propositie-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.propositie-sub {
    font-size: 1.05rem;
    color: var(--white);
    margin-top: 0.75rem;
    opacity: 0.95;
}

.propositie-quote {
    font-family: var(--font-quote);
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 0.5rem;
    display: block;
    opacity: 0.9;
}

.propositie-cta {
    margin-top: 2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: var(--border-dashed);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(97,68,0,0.18);
    }

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.6;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .feature-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE — SPECIALITEITEN (Sectie 3)                    ║
   ╚══════════════════════════════════════════════════════════╝ */

.specialiteiten {
    background: var(--white);
    padding-block: var(--section-py);
}

.specialiteiten-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spec-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--dark);
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.spec-body {
    font-size: 0.97rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.spec-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-bullet {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.spec-bullet-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.spec-graph {
    display: flex;
    justify-content: center;
}

.graph-svg {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.07));
}

@media (max-width: 820px) {
    .specialiteiten-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .spec-graph {
        order: -1;
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE — REFERENTIES (Sectie 5)                       ║
   ╚══════════════════════════════════════════════════════════╝ */

.referenties {
    background: var(--primary);
    padding-block: var(--section-py);
    text-align: center;
}

.referenties-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 2.5rem;
}

.carousel {
    position: relative;
    max-width: 640px;
    margin-inline: auto;
}

.carousel-track {
    overflow: hidden;
    border-radius: var(--radius-card);
}

.ref-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    text-align: center;
}

.ref-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-inline: auto;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
    background: var(--gray-light);
}

.ref-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}

.ref-function {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 0.35rem;
}

.ref-company {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ref-quote {
    font-family: var(--font-quote);
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.75;
    opacity: 1;
    margin-top: 0.75rem;
    padding: 0 0.5rem;
}

    .ref-quote p {
        margin: 0;
    }

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.carousel-btn {
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--secondary);
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .carousel-btn:hover {
        background: var(--gray-light);
        transform: scale(1.08);
    }

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
    padding: 0;
}

    .carousel-dot.active {
        background: var(--white);
        transform: scale(1.3);
    }

/* ╔══════════════════════════════════════════════════════════╗
   ║  CONTACTPAGINA — HERO                                    ║
   ╚══════════════════════════════════════════════════════════╝ */

.contact-hero {
    background: var(--primary);
    padding-block: 5rem 4rem;
    text-align: center;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.85;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.contact-sub {
    font-size: 1.05rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
}

.contact-card {
    background: var(--white);
    border: var(--border-dashed);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(97,68,0,0.18);
    }

/* Icon badge bovenaan */
.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-card-content {
    font-size: 0.93rem;
    color: var(--dark);
    line-height: 1.7;
    opacity: 0.85;
}

    .contact-card-content a {
        color: var(--dark);
        opacity: 0.85;
        transition: color var(--transition), opacity var(--transition);
    }

        .contact-card-content a:hover {
            color: var(--secondary);
            opacity: 1;
            text-decoration: underline;
        }

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gray-light);
    border-radius: 10px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    border: 1.5px solid var(--gray-mid);
}

    .social-icon:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: scale(1.08);
    }

@media (max-width: 720px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* ── Print utility ──────────────────────────────────────────── */
@media print {
    .no-print {
        display: none !important;
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  ADMIN LAYOUT                                            ║
   ╚══════════════════════════════════════════════════════════╝ */

/*.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-nav {
    width: 240px;
    flex-shrink: 0;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-nav-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-nav-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}*/

.admin-nav-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 0.04em;
}

/*.admin-nav-links {
    flex: 1;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

    .admin-nav-link:hover,
    .admin-nav-link.active {
        background: rgba(242,169,0,0.15);
        color: var(--primary);
    }

.admin-nav-footer {
    padding: 1rem 0.75rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    text-align: left;
    width: 100%;
    font-family: var(--font-body);
}

    .admin-logout-btn:hover {
        background: rgba(255,80,80,0.15);
        color: #ff6b6b;
    }

.admin-main {
    flex: 1;
    background: var(--gray-light);
    padding: 2.5rem;
    min-width: 0;
}

.admin-page-header {
    margin-bottom: 2rem;
}

.admin-page-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--dark);
    letter-spacing: 0.03em;
}

.admin-page-sub {
    font-size: 0.92rem;
    color: var(--gray-text);
    margin-top: 0.35rem;
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-nav {
        width: 100%;
        height: auto;
        position: static;
    }

    .admin-main {
        padding: 1.5rem;
    }
}*/

/* ============================================================
   USER CASES — publieke pagina stijlen
   Voeg toe aan het einde van wwwroot/css/app.css
   ============================================================ */

/* ── Loading / empty states ─────────────────────────────────── */
.uc-loading,
.uc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 1rem;
    color: var(--gray-text);
    text-align: center;
}

.uc-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-mid);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Categorie-filter ───────────────────────────────────────── */
.uc-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.uc-filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 2px solid var(--gray-mid);
    background: var(--white);
    color: var(--gray-text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

    .uc-filter-btn:hover {
        border-color: var(--primary);
        color: var(--secondary);
    }

    .uc-filter-btn.actief {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--secondary);
    }

/* ── Kaarten grid ───────────────────────────────────────────── */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.uc-grid-compact {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
    .uc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .uc-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Kaart ──────────────────────────────────────────────────── */
.uc-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

    .uc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    }

/* Afbeelding bovenaan kaart */
.uc-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--gray-light);
    flex-shrink: 0;
}

    .uc-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.uc-card:hover .uc-card-image img {
    transform: scale(1.04);
}

.uc-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #fff8e7 0%, #ffedb3 100%);
}

/* Kaart body */
.uc-card-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge */
.uc-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    align-self: flex-start;
}

.uc-badge-wit {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}

.uc-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.uc-card-sub {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.uc-card-preview {
    font-size: 0.88rem;
    color: var(--dark);
    opacity: 0.72;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.uc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-mid);
}

.uc-klant {
    font-size: 0.82rem;
    color: var(--gray-text);
    font-weight: 600;
}

.uc-lees-meer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color var(--transition);
}

.uc-card:hover .uc-lees-meer {
    color: var(--primary-dark);
}

/* ── Detail pagina ──────────────────────────────────────────── */

/* Hero met afbeelding */
.uc-detail-hero-img {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.uc-detail-hero-overlay {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}

.uc-detail-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.uc-detail-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.5rem;
}

/* Terug-links */
.uc-back-link {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color var(--transition);
}

    .uc-back-link:hover {
        color: var(--white);
    }

.uc-back-link-gold {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

    .uc-back-link-gold:hover {
        color: var(--white);
    }

/* Content layout: tekst + sidebar */
.uc-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 860px) {
    .uc-detail-layout {
        grid-template-columns: 1fr;
    }

    .uc-detail-aside {
        order: -1;
    }
}

.uc-detail-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
}

    .uc-detail-body p {
        margin-bottom: 1.2rem;
    }

        .uc-detail-body p:last-child {
            margin-bottom: 0;
        }

/* Zijbalk */
.uc-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.uc-aside-card {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: var(--radius-card);
    padding: 1.25rem 1.35rem;
}

.uc-aside-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    margin-bottom: 0.4rem;
}

.uc-aside-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.uc-aside-cta {
    background: var(--gray-light);
    border-color: transparent;
}

/* ============================================================
   USER CASES — publieke pagina stijlen
   Voeg toe aan het einde van wwwroot/css/app.css
   ============================================================ */

/* ── Loading / empty states ─────────────────────────────────── */
.uc-loading,
.uc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 1rem;
    color: var(--gray-text);
    text-align: center;
}

.uc-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-mid);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Categorie-filter ───────────────────────────────────────── */
.uc-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.uc-filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 2px solid var(--gray-mid);
    background: var(--white);
    color: var(--gray-text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

    .uc-filter-btn:hover {
        border-color: var(--primary);
        color: var(--secondary);
    }

    .uc-filter-btn.actief {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--secondary);
    }

/* ── Kaarten grid ───────────────────────────────────────────── */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.uc-grid-compact {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
    .uc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .uc-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Kaart ──────────────────────────────────────────────────── */
.uc-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

    .uc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    }

/* Afbeelding bovenaan kaart */
.uc-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--gray-light);
    flex-shrink: 0;
}

    .uc-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.uc-card:hover .uc-card-image img {
    transform: scale(1.04);
}

.uc-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #fff8e7 0%, #ffedb3 100%);
}

/* Kaart body */
.uc-card-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge */
.uc-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    align-self: flex-start;
}

.uc-badge-wit {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}

.uc-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.uc-card-sub {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.uc-card-preview {
    font-size: 0.88rem;
    color: var(--dark);
    opacity: 0.72;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.uc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-mid);
}

.uc-klant {
    font-size: 0.82rem;
    color: var(--gray-text);
    font-weight: 600;
}

.uc-lees-meer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color var(--transition);
}

.uc-card:hover .uc-lees-meer {
    color: var(--primary-dark);
}

/* ── Detail pagina ──────────────────────────────────────────── */

/* Hero met afbeelding */
.uc-detail-hero-img {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.uc-detail-hero-overlay {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}

.uc-detail-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.uc-detail-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.5rem;
}

/* Terug-links */
.uc-back-link {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color var(--transition);
}

    .uc-back-link:hover {
        color: var(--white);
    }

.uc-back-link-gold {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

    .uc-back-link-gold:hover {
        color: var(--white);
    }

/* Content layout: tekst + sidebar */
.uc-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 860px) {
    .uc-detail-layout {
        grid-template-columns: 1fr;
    }

    .uc-detail-aside {
        order: -1;
    }
}

.uc-detail-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
}

    .uc-detail-body p {
        margin-bottom: 1.2rem;
    }

        .uc-detail-body p:last-child {
            margin-bottom: 0;
        }

/* Zijbalk */
.uc-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.uc-aside-card {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: var(--radius-card);
    padding: 1.25rem 1.35rem;
}

.uc-aside-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    margin-bottom: 0.4rem;
}

.uc-aside-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.uc-aside-cta {
    background: var(--gray-light);
    border-color: transparent;
}

/* ── Detail pagina — foto kader ─────────────────────────────── */
.uc-detail-foto-kader {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-mid);
}

.uc-detail-foto {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* ============================================================
   DEEL 1: Toevoegen aan wwwroot/css/admin.css
   RichTextEditor component stijlen
   ============================================================ */

/* Wrapper */
.rte-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rte-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

/* Toolbar */
.rte-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 10px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.rte-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rte-separator {
    width: 1px;
    height: 20px;
    background: #ddd;
    margin: 0 4px;
}

/* Toolbar knoppen */
.rte-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 28px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    transition: background 0.15s, border-color 0.15s;
    padding: 0;
}

    .rte-btn:hover {
        background: #efefef;
        border-color: #d0d0d0;
    }

.rte-btn-text {
    width: auto;
    padding: 0 7px;
    font-size: 12px;
    font-weight: 600;
}

/* Kleurknoppen */
.rte-kleur-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    padding: 0;
}

    .rte-kleur-btn:hover {
        transform: scale(1.2);
        border-color: #333;
    }

/* Editor area */
.rte-editor {
    min-height: 180px;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    font-family: 'Aptos Display', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #2d2d2d;
    outline: none;
    overflow-y: auto;
}

    .rte-editor:focus {
        border-color: #F2A900;
        box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.15);
    }

    .rte-editor:empty::before {
        content: attr(placeholder);
        color: #aaa;
        pointer-events: none;
    }

    /* Interne opmaak in de editor */
    .rte-editor h2 {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0.75rem 0 0.4rem;
    }

    .rte-editor h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0.65rem 0 0.3rem;
    }

    .rte-editor p {
        margin: 0 0 0.6rem;
    }

    .rte-editor ul, .rte-editor ol {
        padding-left: 1.5rem;
        margin: 0.4rem 0 0.6rem;
    }

    .rte-editor li {
        margin-bottom: 0.2rem;
    }

/* Hint */
.rte-hint {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

/* form-card helper voor de twee-koloms layout */
.form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
}

.form-card-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #aaa;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .form-grid-two {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   DEEL 2: Toevoegen aan wwwroot/css/app.css
   Rich content rendering op de publieke website
   ============================================================ */

/* Stijlen voor HTML die uit de editor komt, gerenderd via MarkupString */
.uc-rich-content h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.6rem;
}

.uc-rich-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.25rem 0 0.5rem;
}

.uc-rich-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.uc-rich-content ul,
.uc-rich-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.uc-rich-content li {
    margin-bottom: 0.3rem;
}

.uc-rich-content strong {
    font-weight: 700;
}

.uc-rich-content em {
    font-style: italic;
}

.uc-rich-content u {
    text-decoration: underline;
}

/* Quote in referentie-carousel: HTML renderen */
.ref-quote-html {
    font-family: var(--font-quote);
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.6;
    opacity: 0.85;
}

    .ref-quote-html p {
        margin: 0;
    }

    .ref-quote-html b,
    .ref-quote-html strong {
        font-weight: 700;
    }

.badge-geen-toestemming {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
}

/* Wrapper publieke pagina */
.toestemming-pagina {
    background: #fafafa;
    padding: 40px 20px 60px;
    min-height: calc(100vh - 200px);
}

.toestemming-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Witte cards op de pagina */
.toestemming-blok {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

    .toestemming-blok h1 {
        font-family: 'Luckiest Guy', sans-serif;
        font-size: 28px;
        margin: 0 0 12px;
        color: #2d2d2d;
        letter-spacing: 0.5px;
    }

    .toestemming-blok h2 {
        font-size: 20px;
        margin: 0 0 12px;
        color: #2d2d2d;
    }

    .toestemming-blok h3 {
        font-size: 17px;
        margin: 0 0 8px;
        color: #2d2d2d;
    }

    .toestemming-blok p {
        line-height: 1.6;
        margin: 8px 0;
    }

    .toestemming-blok .lead {
        font-size: 16px;
        color: #444;
    }

    .toestemming-blok .kleine-tekst {
        font-size: 12px;
        color: #888;
        line-height: 1.5;
        margin-top: 12px;
    }

/* Variant-blokken */
.foutblok {
    border-left: 4px solid #c62828;
    background: #fdecea;
}

.afgewezen-blok {
    border-left: 4px solid #c62828;
    background: #fff;
}

.ingetrokken-blok {
    border-left: 4px solid #999;
    background: #fafafa;
}

.goedgekeurd-blok {
    border-left: 4px solid #4caf50;
    background: #fff;
    text-align: center;
}

.intro-blok {
    border-left: 4px solid #F2A900;
}

.keuze-blok {
    background: #fffbf2;
    border: 2px solid #F2A900;
}

/* Status-icoon (groot, op bedankt-pagina) */
.status-icoon {
    font-size: 64px;
    line-height: 1;
    text-align: center;
    margin-bottom: 8px;
}

/* Meta-blok met ontvanger-gegevens */
.meta-blok {
    background: #fafafa;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
}

    .meta-blok strong {
        color: #444;
    }

/* Snapshot — referentie */
.snapshot-referentie {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: start;
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
    border: 2px dashed #F2A900;
}

@media (max-width: 600px) {
    .snapshot-referentie {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .snapshot-referentie .snapshot-foto {
            margin: 0 auto;
        }
}

.snapshot-foto {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.snapshot-tekst h3 {
    font-size: 22px;
    margin: 0 0 4px;
}

.snapshot-functie {
    color: #666;
    font-size: 14px;
    margin: 0 0 14px;
}

.snapshot-quote {
    font-family: 'Indie Flower', cursive;
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
}

    .snapshot-quote p {
        margin: 6px 0;
    }

/* Snapshot — user case */
.snapshot-usercase {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
}

.snapshot-uc-categorie {
    display: inline-block;
    background: #F2A900;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.snapshot-usercase h3 {
    font-size: 24px;
    margin: 8px 0 4px;
}

.snapshot-uc-subtitel {
    color: #666;
    font-size: 15px;
    margin: 0 0 6px;
}

.snapshot-uc-klant {
    font-size: 13px;
    color: #666;
    margin: 0 0 14px;
}

.snapshot-uc-foto {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin: 14px 0;
}

.snapshot-uc-body {
    font-size: 15px;
    line-height: 1.7;
}

    .snapshot-uc-body h2 {
        font-size: 18px;
        margin: 16px 0 6px;
    }

    .snapshot-uc-body h3 {
        font-size: 16px;
        margin: 12px 0 4px;
    }

    .snapshot-uc-body p {
        margin: 8px 0;
    }

/* Knoppen — publiek */
.btn-rood {
    background: #c62828;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-rood:hover:not(:disabled) {
        background: #b71c1c;
    }

    .btn-rood:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-groen {
    background: #4caf50;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-groen:hover:not(:disabled) {
        background: #388e3c;
    }

    .btn-groen:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-rood-omkader {
    background: transparent;
    color: #c62828;
    border: 2px solid #c62828;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
}

    .btn-rood-omkader:hover:not(:disabled) {
        background: #c62828;
        color: #fff;
    }

    .btn-rood-omkader:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-groen-groot {
    background: #4caf50;
    color: #fff;
    border: 2px solid #4caf50;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

    .btn-groen-groot:hover:not(:disabled) {
        background: #388e3c;
        border-color: #388e3c;
        box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4);
    }

    .btn-groen-groot:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Form binnen toestemming-blok */
.intrekken-form,
.afwijzen-form,
.goedkeuren-form {
    margin-top: 14px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

    .intrekken-form textarea,
    .afwijzen-form textarea {
        width: 100%;
        resize: vertical;
        min-height: 80px;
        margin-bottom: 12px;
    }

/* Knoppenrij — publiek (overschrijft default-flex op kleine schermen) */
.toestemming-pagina .knoppenrij {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .toestemming-pagina .knoppenrij.groot {
        margin: 24px 0 8px;
        gap: 16px;
    }

        .toestemming-pagina .knoppenrij.groot button {
            flex: 1;
            min-width: 160px;
        }

/* Spinner-large voor laden-state */
.spinner-large {
    width: 40px;
    height: 40px;
    margin: 30px auto;
    border: 4px solid #f0f0f0;
    border-top-color: #F2A900;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toestemmingspagina — grijze knop (Terug / Annuleren) */
.btn-licht {
    background: #f0f0f0;
    color: #444;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-licht:hover:not(:disabled) {
        background: #e0e0e0;
    }

    .btn-licht:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }