:root {
    --brand: #16803c;
    --brand-dark: #0f5c2b;
    --brand-darker: #0a3d1d;
    --brand-light: #22c55e;
    --brand-soft: #cdf0da;
    --ink: #101828;
    --ink-muted: #64748b;
    --border: #e5e9ef;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
    --shadow-md: 0 8px 24px rgba(16, 24, 40, .08);
    --shadow-lg: 0 20px 48px rgba(16, 24, 40, .14);
}

body {
    background-color: #f6f8f7;
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

a {
    color: var(--brand-dark);
    transition: color .12s ease;
}

a:hover {
    color: var(--brand);
}

/* --- Navbar --- */
.navbar {
    border-bottom: none;
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.navbar-brand.text-success {
    color: var(--brand-darker) !important;
    font-size: 1.2rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
    box-shadow: 0 3px 8px rgba(22, 128, 60, .35);
    flex-shrink: 0;
}

.brand-word {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-word-tld {
    font-weight: 600;
    color: var(--ink-muted);
}

.navbar-nav .nav-link {
    color: var(--ink-muted);
    font-weight: 500;
    padding-left: .9rem;
    padding-right: .9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-dark);
}

/* --- Buttons --- */
.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: .55rem 1.25rem;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
}

.btn-success, .navbar .btn-success {
    background-color: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 2px 8px rgba(22, 128, 60, .25);
}

.btn-success:hover, .btn-success:focus {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 128, 60, .3);
}

.btn-outline-danger, .btn-link {
    border-radius: 999px;
}

.btn-lg {
    padding: .7rem 1.5rem;
}

.text-success {
    color: var(--brand-dark) !important;
}

.link-success, a.link-light:hover {
    color: var(--brand-light) !important;
}

/* --- Cards --- */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 1.35rem;
}

.danger-zone-card {
    border-color: #f3c6cb;
    background-color: #fdf5f6;
}

.stat-card-link {
    display: block;
    height: 100%;
}

.dashboard-summary-card {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
    border: none;
    color: #fff;
}

.dashboard-summary-card .text-muted {
    color: rgba(255, 255, 255, .75) !important;
}

.dashboard-summary-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.dashboard-summary-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.dashboard-summary-avatar-placeholder .ui-icon {
    width: 26px;
    height: 26px;
    margin-right: 0;
}

.dashboard-summary-card .btn-success {
    background-color: #fff;
    border-color: #fff;
    color: var(--brand-dark);
}

.dashboard-summary-card .btn-success:hover {
    background-color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .9);
}

.dashboard-summary-card .btn-outline-success {
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.dashboard-summary-card .btn-outline-success:hover {
    background-color: rgba(255, 255, 255, .15);
    border-color: #fff;
    color: #fff;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.stat-icon .ui-icon {
    width: 20px;
    height: 20px;
    margin-right: 0;
}

.stat-icon-plan {
    background: #fff4d6;
    color: #a9790a;
}

.stat-icon-photos {
    background: #eef2ff;
    color: #3949ab;
}

.stat-icon-messages-active {
    background: #fdecea;
    color: #dc3545;
}

.stat-card-link .card {
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.stat-card-link:hover .card {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--brand);
}

.category-tile {
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.category-tile-link:hover .category-tile {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--brand);
}

.stat-card-link:hover .card.border-danger {
    border-color: #dc3545;
}

/* --- Forms --- */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border-color: #d7dce3;
    background-color: #fbfcfd;
    padding: .65rem .9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-light);
    background-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(34, 197, 94, .15);
}

.form-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
}

.input-group .form-control {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.input-group .btn {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
}

.alert {
    border-radius: var(--radius-sm);
    border: none;
}

.alert-info {
    background: var(--brand-soft);
    color: var(--brand-darker);
}

.alert-info a {
    color: var(--brand-dark);
    font-weight: 600;
    text-underline-offset: 2px;
}

.alert-info a:hover {
    color: var(--brand-light);
    text-decoration-thickness: 2px;
}

/* --- Hero --- */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .12), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, .10), transparent 40%),
        linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
    color: #fff;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
}

.hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.hero .lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
}

.hero .input-group {
    box-shadow: var(--shadow-lg);
    border-radius: 999px;
}

.hero .form-control-lg {
    font-size: 1rem;
    padding: .9rem 1.35rem;
}

/* --- Map --- */
#map {
    width: 100%;
    height: 560px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 0;
}

/* Schuifanimatie bij het wisselen tussen lijst- en kaartweergave (zie assets/js/view-toggle.js) */
.view-panel {
    transition: transform .22s ease, opacity .22s ease;
}

.view-panel.slide-left {
    transform: translateX(-24px);
    opacity: 0;
}

.view-panel.slide-right {
    transform: translateX(24px);
    opacity: 0;
}

/* --- Lijst/kaart-schakelaar --- */
.view-toggle {
    position: relative;
    display: inline-flex;
    background: #eef1f4;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}

/* Schuivende witte pil achter de actieve knop (positie/breedte wordt gezet door
   assets/js/view-toggle.js, op basis van de werkelijke afmetingen van de knop) */
.view-toggle-indicator {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 0;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), width .25s ease;
}

.view-toggle-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: none;
    background: transparent;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    transition: color .12s ease;
}

/* Eigen SVG-icoontjes i.p.v. emoji, in dezelfde lijnstijl als de social-media-icoontjes */
.ui-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    vertical-align: -3px;
    margin-right: .3rem;
}

/* Een knop met een icoontje erin centreert 'm altijd verticaal t.o.v. de tekst,
   i.p.v. te vertrouwen op vertical-align (werkt niet betrouwbaar voor elke iconvorm) */
.btn:has(.ui-icon) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

/* Deze badges/knoppen zijn flex-containers (zie hun eigen regels) die het icoon altijd
   verticaal centreren t.o.v. de tekst, ongeacht de vorm van het icoontje - dat is
   betrouwbaarder dan een handmatige vertical-align-correctie per icoon. */
.badge-pill .ui-icon,
.photo-count-badge .ui-icon,
.empty-placeholder .ui-icon,
.btn .ui-icon {
    margin-right: 0;
    vertical-align: middle;
}

.badge-pill .ui-icon,
.photo-count-badge .ui-icon,
.empty-placeholder .ui-icon {
    width: 12px;
    height: 12px;
}

.view-toggle-btn.active {
    color: var(--brand-dark);
}

.leaflet-popup-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 6px;
}

/* --- Filters: vaste knop onderaan + modal (overzicht) --- */
.filter-fab {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translate(-50%, 100px);
    opacity: 0;
    pointer-events: none;
    z-index: 1030;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .7rem 1.4rem;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform .25s ease, opacity .25s ease, background .12s ease;
}

/* Komt pas in beeld zodra er naar beneden gescrold is (zie assets/js/filter-fab.js) */
.filter-fab.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.filter-fab:hover {
    background: var(--brand-dark);
}

.filter-fab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 .3rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-dark);
    font-size: .75rem;
    font-weight: 700;
}

/* Wat luchtiger dan de kale Bootstrap-modal: iets meer ronding en ruimte, en een
   duidelijk gescheiden voettekst voor de actieknoppen. */
#filterModal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

#filterModal .modal-header,
#filterModal .modal-footer {
    padding: 1.15rem 1.75rem;
    border-color: #f1f3f5;
}

#filterModal .modal-body {
    padding: 1.5rem 1.75rem;
}

/* Gedeelde "weet je het zeker?"-modal (vervangt de kale browser confirm() overal op de site).
   Iets smaller dan de Bootstrap-standaardbreedte, maar breed genoeg zodat ook langere
   knopteksten (zoals "Permanent verwijderen") gewoon naast "Annuleren" blijven passen. */
#confirmModal .modal-dialog {
    max-width: 420px;
}

.confirm-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.confirm-modal-content .modal-body {
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
}

.confirm-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fdecea;
    color: #dc3545;
    margin-bottom: 1rem;
}

.confirm-modal-icon svg {
    width: 26px;
    height: 26px;
}

.confirm-modal-message {
    font-size: .96rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.confirm-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
}

.confirm-modal-actions .btn {
    flex: 0 1 auto;
    white-space: nowrap;
}

#filterModal .modal-title {
    font-weight: 800;
}

/* Elke filtercategorie krijgt een eigen sectie: een klein kopje boven de chips
   i.p.v. een label ernaast - in de modal is er geen reden meer om alles op één
   horizontale regel te proppen, dus dit oogt rustiger en leest prettiger. */
.filter-bar-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.filter-row {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.filter-row-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--ink-muted);
}

.filter-row-chips {
    min-width: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: #333;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease;
    user-select: none;
}

/* In de (witte) filtermodal is het standaard lichtgrijze chip-tintje bijna onzichtbaar;
   hier iets meer contrast zodat niet-actieve filters ook duidelijk zichtbaar/aanklikbaar blijven. */
.filter-bar-horizontal .chip {
    background: #eef1f5;
    border-color: #d8dee6;
}

.chip:hover {
    border-color: var(--brand-light);
    color: var(--brand-dark);
    background: var(--brand-soft);
    text-decoration: none;
}

.chip-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(22, 128, 60, .25);
}

.chip-count {
    display: inline-block;
    background: rgba(0, 0, 0, .08);
    border-radius: 999px;
    padding: 0 .45rem;
    font-size: .72rem;
    font-weight: 600;
    margin-left: .1rem;
}

.chip-active .chip-count {
    background: rgba(255, 255, 255, .25);
}

.chip-active:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff !important;
}

/* "Toon meer": de extra chips staan gewoon als normale items in dezelfde .chip-row
   (geen aparte rij/wrapper zoals <details>, dat gaf een kapotte lay-out met
   display:contents) en worden verborgen/getoond via een klasse op die rij. */
.chip.chip-extra {
    display: none;
}

.chip-row.is-expanded .chip.chip-extra {
    display: inline-flex;
}

.chip.chip-more-toggle {
    background: transparent;
    border-color: transparent;
    color: var(--brand-dark);
}

.chip.chip-more-toggle:hover {
    background: var(--brand-soft);
    border-color: var(--brand-soft);
}

.chip-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip-checkbox {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: #333;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
}

.chip-checkbox:has(input:checked) {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

/* --- Kaartjes (overzicht) --- */
.photo-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: .6rem;
}

.photographer-card {
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .18s ease, transform .18s ease;
}

.photographer-card .photo-thumb {
    border-radius: 0;
    transition: transform .35s ease;
}

.photographer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.photographer-card:hover .photo-thumb {
    transform: scale(1.04);
}

.photo-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.pin-icon {
    vertical-align: -2px;
}

.profile-logo-preview {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.card-logo {
    position: absolute;
    bottom: .6rem;
    left: .6rem;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
    background: #fff;
    padding: 3px;
    box-sizing: border-box;
}

.profile-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.cover-badge {
    position: absolute;
    top: .5rem;
    left: .5rem;
    background: var(--brand);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 999px;
}

.featured-badge {
    position: absolute;
    top: .6rem;
    left: .6rem;
    background: linear-gradient(135deg, #f5b301, #e08e00);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(224, 142, 0, .35);
}

.featured-badge-inline {
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(135deg, #f5b301, #e08e00);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px;
    margin-left: .4rem;
}

/* --- Plaats-autocomplete --- */
.city-autocomplete {
    position: relative;
}

.city-autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 320px;
    overflow-y: auto;
    padding: .35rem;
}

.city-autocomplete-item {
    padding: .5rem .75rem;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--ink);
    cursor: pointer;
    transition: background .1s ease, color .1s ease;
}

.city-autocomplete-item:hover,
.city-autocomplete-item.is-active {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

/* --- Bestandskiezer (eigen stijl i.p.v. de standaard browserknop) --- */
.file-picker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.file-picker-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    background: #f7f8fa;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    color: var(--ink);
    cursor: pointer;
    margin-bottom: 0;
    transition: background .12s ease, border-color .12s ease, color .12s ease;
}

.file-picker-btn::before {
    content: "📁";
    font-size: .9rem;
}

.file-picker-btn:hover {
    background: var(--brand-soft);
    border-color: var(--brand-light);
    color: var(--brand-dark);
}

.file-picker-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-picker-name {
    font-size: .85rem;
    color: var(--ink-muted);
}

/* --- Abonnement: prijskaarten --- */
.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .15s ease;
}

.plan-card.plan-highlight {
    border: 2px solid var(--brand);
    box-shadow: var(--shadow-md);
}

.plan-card.plan-current {
    border: 2px solid var(--brand-dark);
}

.plan-current-badge {
    position: absolute;
    top: -.7rem;
    left: 1.5rem;
    background: var(--brand-dark);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.plan-highlight-badge {
    position: absolute;
    top: -.7rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f5b301, #e08e00);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(224, 142, 0, .35);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.plan-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.25rem;
}

.plan-price-sub {
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-muted);
}

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.plan-feature-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .65rem;
    padding: .5rem 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: .88rem;
}

.plan-feature-list li:last-child {
    border-bottom: none;
}

.plan-feature-label {
    flex: 1 1 auto;
}

.plan-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    margin-top: .1rem;
}

.plan-dash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #c1c7d0;
    margin-top: .1rem;
}

.plan-feature-text {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--brand-dark);
    text-align: right;
}

.plan-card-footer {
    margin-top: auto;
}

.photo-count-badge {
    position: absolute;
    bottom: .6rem;
    right: .6rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(16, 24, 40, .7);
    backdrop-filter: blur(2px);
    color: #fff;
    font-size: .74rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 999px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .28rem .75rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
}

.badge-experience {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.badge-availability {
    background: #eef2ff;
    color: #3949ab;
}

.badge-photocount {
    background: #f1f3f5;
    color: #495057;
}

.badge-specialty {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--ink-muted);
    font-weight: 500;
    margin: 0 .25rem .25rem 0;
}

/* --- Paginering --- */
.pagination .page-link {
    border: 1px solid var(--border);
    border-radius: 999px;
    margin: 0 .2rem;
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease;
}

/* Bootstrap geeft de eerste/laatste knop (de pijltjes) standaard maar een kleine
   hoekafronding aan de buitenkant i.p.v. volledig rond - hier expliciet overschreven. */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 999px;
}

.pagination .page-link:hover {
    background: var(--brand-soft);
    border-color: var(--brand-light);
    color: var(--brand-dark);
}

.pagination .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(22, 128, 60, .25);
}

.pagination .page-item.disabled .page-link {
    background: transparent;
    border-color: transparent;
    color: #c1c7d0;
    box-shadow: none;
}

/* --- Breadcrumb --- */
.breadcrumb {
    --bs-breadcrumb-divider: '/';
}

.breadcrumb-item a {
    color: var(--ink-muted);
}

.breadcrumb-item.active {
    color: var(--ink);
    font-weight: 600;
}

/* --- Lightbox (fotograafprofiel) --- */
body.lightbox-locked {
    overflow: hidden;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 12, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease;
}

.lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 88vw;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, .25);
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
    .lightbox-close { top: .75rem; right: .75rem; }
}

/* --- Social media iconen (fotograafprofiel) --- */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--ink-muted);
    background: #fff;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: transparent;
}

.social-icon-instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon-facebook:hover {
    background: #1877f2;
}

.social-icon-tiktok:hover {
    background: #000;
}

/* --- Fotograafprofiel --- */
.profile-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.profile-card .card-body {
    padding: 1.75rem;
}

/* Coverfoto (of gebrand verloop als er nog geen foto's zijn) bovenaan het profiel */
.profile-cover-wrap {
    line-height: 0;
}

.profile-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.profile-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
}

/* Logo overlapt de onderrand van de cover, als een profielfoto */
.profile-identity {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.profile-logo-overlap {
    width: 72px;
    height: 72px;
    margin-top: -44px;
    border: 3px solid #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.profile-section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
}

/* Voorbeeldfoto's: vaste tegelgrootte i.p.v. een 12-koloms grid, zodat 1 of 2 foto's
   niet verloren in een lege rij blijven staan */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.photo-gallery-item {
    display: block;
    width: 150px;
    border-radius: .6rem;
    overflow: hidden;
}

.photo-gallery-item .photo-thumb {
    margin-bottom: 0;
    transition: transform .35s ease;
}

.photo-gallery-item:hover .photo-thumb {
    transform: scale(1.06);
}

.empty-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #f8fafc;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    color: var(--ink-muted);
    font-size: .9rem;
}

.btn-outline-success {
    color: var(--brand-dark);
    border-color: var(--brand);
}

.btn-outline-success:hover {
    background-color: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.nearby-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.nearby-card-thumb {
    overflow: hidden;
}

.nearby-card-thumb .photo-thumb {
    border-radius: 0;
    margin-bottom: 0;
    transition: transform .35s ease;
}

.nearby-card:hover .nearby-card-thumb .photo-thumb {
    transform: scale(1.05);
}

.nearby-card-body {
    padding: .6rem .7rem;
}

.contact-card {
    position: sticky;
    top: 5rem;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-card .card-body {
    padding: 1.75rem;
}

/* --- Status badges (admin) --- */
.status-badge-pending { background-color: #ffc107; color: #000; border-radius: 999px; }
.status-badge-approved { background-color: var(--brand); border-radius: 999px; }
.status-badge-rejected { background-color: #dc3545; border-radius: 999px; }
.status-badge-neutral { background-color: #eef0f3; color: #495057; border-radius: 999px; }

.dashboard-form {
    max-width: 900px;
}

.upload-form {
    max-width: 480px;
}

.dashboard-nav .nav-link {
    color: var(--ink-muted);
    font-weight: 500;
    border-radius: 999px;
    transition: background-color .12s ease, color .12s ease;
}

.dashboard-nav .nav-link:hover {
    color: var(--brand-dark);
    background-color: var(--brand-soft);
}

.dashboard-nav .nav-link.active {
    font-weight: 600;
    background-color: var(--brand) !important;
    color: #fff !important;
}

.dashboard-nav .nav-link.active:hover {
    background-color: var(--brand-dark) !important;
}

.dashboard-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.nav-unread-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 .35rem;
    border-radius: 999px;
    background-color: #dc3545;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1;
}

.dashboard-nav .nav-link.active .nav-unread-badge {
    background-color: #fff;
    color: var(--brand-dark);
}

.nav-tabs .nav-link.active {
    color: var(--brand-dark);
    border-color: var(--border) var(--border) #fff;
}

.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}

.form-check-input:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 .2rem rgba(34, 197, 94, .15);
}

/* --- Footer --- */
.site-footer {
    background: var(--brand-darker);
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

.site-footer a.link-light:hover {
    color: var(--brand-light) !important;
}

.footer-counter {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

.footer-provinces {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 1rem;
}

.footer-province-link {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    text-decoration: none;
}

.footer-province-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- Provinciepagina (SEO-landingspagina) --- */
/* Zelfde rijke groene verloop als de hero op de voorpagina, i.p.v. een vlak pastelblok */
.province-hero,
.profile-hero {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .12), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, .10), transparent 40%),
        linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
    overflow: hidden;
}

.province-hero {
    padding: 2rem 0;
}

.province-hero h1 {
    color: #fff;
}

.province-hero p {
    color: rgba(255, 255, 255, .85);
}

.profile-hero {
    padding: .9rem 0;
}

.profile-hero .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
}

.profile-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .85);
}

.profile-hero .breadcrumb-item a:hover {
    color: #fff;
}

.profile-hero .breadcrumb-item.active {
    color: #fff;
}
