/**
 * Minder - Artiest portfolio stylesheet
 *
 * Structuur:
 *   1. CSS-variabelen
 *   2. Reset & basis
 *   3. Layout (#wrapper, #logo)
 *   4. Navigatie (desktop)
 *   5. Hamburger-knop (mobiel)
 *   6. Ingelogd-balk + admin-menu
 *   7. Content-blok
 *   8. Typografie (h1–h3, p, a)
 *   9. Afbeeldingen & hero
 *  10. Formulieren
 *  11. Embed (Spotify iframe)
 *  12. Muziekpagina (.music-grid)
 *  13. Showspagina (.table_shows)
 *  14. Werkpagina (.work-grid)
 *  15. Perspagina (.press-grid)
 *  16. Contactpagina (.contact-grid)
 *  17. Footer
 *  18. Bio-galerij (#bio_gallery)
 *  19. Pre-save pagina (.presave-page)
 *  20. Responsive – tablet/mobiel (≤ 760 px)
 *  21. Responsive – kleine telefoons (≤ 430 px)
 */

/* ─── 1. CSS-variabelen ────────────────────────────────────────── */
:root {
    --text:   #111;
    --muted:  #5f5f5f;
    --line:   rgba(0, 0, 0, .12);
    --white:  rgba(255, 255, 255, .92);
    --radius: 24px;
}

/* ─── 2. Reset & basis ─────────────────────────────────────────── */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    font-family: "Outfit", "Space Grotesk", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

/* ─── 3. Layout ────────────────────────────────────────────────── */
#wrapper {
    width: min(100% - 32px, 1680px);
    margin: 0 auto;
    padding: 28px 0 60px;
}

#logo {
    padding: 28px 0 22px;
    text-align: center;
}

.logo {
    display: block;
    max-width: min(340px, 70vw);
    max-height: 190px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

/* ─── 4. Navigatie – desktop ───────────────────────────────────── */
nav.main-menu {
    position: sticky;
    top: 16px;
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 0 auto 34px;
    padding: 8px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .14);
}

#menu a.linkmenu,
#menu a.linkmenulogin {
    color: #111;
    text-decoration: none;
    padding: 11px 17px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

#menu a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

/* ─── 5. Menu-knop (alleen zichtbaar op mobiel) ────────────────── */
.menu-toggle {
    display: none; /* verborgen op desktop */
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    height: 44px;
    padding: 0 24px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
    cursor: pointer;
    font-family: "Outfit", "Space Grotesk", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #111;
    white-space: nowrap;
    line-height: 44px;
    text-align: center;
    vertical-align: middle;
}

/* ─── 6. Ingelogd-balk + admin-menu ────────────────────────────── */

/* "Ingelogd als: ..." – rechtsboven vastgezet */
p.logged-in-bar {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1001;
    margin: 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    color: #555;
    font-size: 12px;
}

p.logged-in-bar a {
    color: #111;
    font-weight: 800;
    text-decoration: none;
}

p.logged-in-bar a:hover {
    background: transparent;
    color: #111;
    opacity: .65;
}

/* Admin-menu (logout + content ideeën) – rechts onder de ingelogd-balk */
nav.admin-menu {
    position: fixed;
    top: 62px;
    right: 18px;
    z-index: 1001;
    display: flex;
    gap: 4px;
    padding: 6px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

nav.admin-menu a {
    font-size: 11px;
    padding: 8px 12px;
}

/* ─── 7. Content-blok ──────────────────────────────────────────── */
#content {
    width: 100%;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 76px);
    background: var(--white);
    color: #111;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 120px rgba(0, 0, 0, .16);
}

/* ─── 8. Typografie ────────────────────────────────────────────── */
h1 {
    margin: 0 0 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    color: #111;
    font-size: clamp(48px, 9vw, 132px);
    line-height: .86;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

h2 {
    margin: 58px 0 24px;
    color: #111;
    font-size: clamp(32px, 5.6vw, 78px);
    line-height: .92;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

h3 {
    margin: 34px 0 12px;
    color: #111;
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

p {
    margin: 0 0 21px;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 21px);
}

b,
strong {
    color: #111;
    font-weight: 900;
}

a {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

a:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ─── 9. Afbeeldingen & hero ───────────────────────────────────── */
.hero-image {
    margin: 0 0 40px;
}

.hero-image img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .16);
}

/* ─── 10. Formulieren ──────────────────────────────────────────── */
input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #111;
    font: inherit;
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #111;
}

input[type="submit"] {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #111;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #fff;
    color: #111;
}

/* Login-foutmelding */
.login-error {
    color: #c0392b;
    font-weight: 700;
}

/* ─── 11. Embed (Spotify e.d.) ─────────────────────────────────── */
.embed {
    width: 100%;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .14);
}

.embed iframe,
#content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
}

/* ─── 12. Muziekpagina (.music-grid) ───────────────────────────── */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.music-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

.music-cover {
    display: block;
    width: 100%;
    border-radius: 18px;
    margin-bottom: 14px;
}

/* Aankomende release: vervaagd */
.music-upcoming {
    opacity: .55;
    filter: grayscale(.15);
}

.music-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.music-links a img {
    width: 28px !important;
    height: 28px !important;
    border-radius: 0;
    box-shadow: none;
}

.music-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(24px, 3vw, 42px);
    line-height: .95;
    text-transform: uppercase;
}

.music-artists,
.music-card small {
    display: block;
    color: #666;
    line-height: 1.4;
}

/* Statistieken teller op muziek- en shows-pagina */
.stat-label {
    display: inline-block;
    margin: -8px 0 28px;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    letter-spacing: .03em;
}

/* ─── 13. Showspagina (.table_shows) ───────────────────────────── */
.shows-saved {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 18px;
    background: #e6f9ee;
    border: 1px solid #a3d9b5;
    border-radius: 999px;
    color: #1a6e3a;
    font-weight: 700;
    font-size: 14px;
}
/* Edit / delete knoppen per rij (alleen zichtbaar voor peter) */
.shows-admin-actions {
    white-space: nowrap;
    width: 72px;
}

.shows-btn-edit,
.shows-btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .14);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.shows-btn-edit {
    background: #f4f4f4;
    color: #333;
    margin-right: 4px;
}

.shows-btn-edit:hover {
    background: #111;
    color: #fff;
}

.shows-btn-delete {
    background: #fff0f0;
    color: #c0392b;
    border-color: rgba(192, 57, 43, .25);
}

.shows-btn-delete:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* ─── Beheerformulier (show toevoegen / bewerken) ─── */
.shows-form-wrap {
    margin-top: 52px;
    padding: clamp(24px, 3vw, 40px);
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
}

.shows-form-title {
    margin: 0 0 28px;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -.04em;
    text-transform: none;
}

.shows-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.shows-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Datum en artiest krijgen elk de helft, de rest de volle breedte */
.shows-form-row:nth-child(3),  /* evenement */
.shows-form-row:nth-child(4),  /* venue */
.shows-form-row:nth-child(5),  /* stad */
.shows-form-row:nth-child(6),  /* bandsintown */
.shows-form-checks,
.shows-form-actions {
    grid-column: 1 / -1;
}

.shows-form label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #555;
}

.shows-form input[type="text"],
.shows-form input[type="date"],
.shows-form input[type="url"],
.shows-form select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.shows-form input:focus,
.shows-form select:focus {
    border-color: #111;
}

/* Checkboxes naast elkaar */
.shows-form-checks {
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.shows-form-checks label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    color: #333;
    cursor: pointer;
}

.shows-form-checks input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111;
}

/* Actieknoppen */
.shows-form-actions {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.shows-btn-save {
    padding: 13px 24px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.shows-btn-save:hover {
    background: #fff;
    color: #111;
}

.shows-btn-cancel {
    padding: 13px 20px;
    background: transparent;
    color: #666;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.shows-btn-cancel:hover {
    background: #f0f0f0;
    color: #111;
}

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

    /* Op mobiel alle rijen full-width */
    .shows-form-row {
        grid-column: 1 / -1;
    }
}
    display: inline-block;
    margin: 24px 0 10px;
    padding: 8px 14px;
    background: #111;
    color: #fff !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.table_shows {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 48px;
}

.table_shows td {
    padding: 14px 12px;
    color: #555;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.table_shows h3 {
    margin: 0;
    color: #111;
    font-size: 17px;
    white-space: nowrap;
    letter-spacing: -.02em;
}

.table_shows big {
    font-size: 18px;
    line-height: 1.25;
}

.table_shows img {
    width: 28px !important;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.table_shows small {
    display: inline-block;
    padding: 5px 9px;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 999px;
    color: #555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: normal;
}

/* ─── 14b. Werk detail pagina (.work-solo) ─────────────────────── */

/* Terugknop boven de layout */
.work-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    padding: 9px 16px;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.work-back-link:hover {
    background: #111;
    color: #fff;
}

/* Tweekoloms layout: slideshow links, tekst rechts */
.work-solo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 48px;
}

/* ── Linker kolom: slideshow ── */
.work-solo-left {
    position: sticky;
    top: 100px; /* blijft zichtbaar terwijl je de tekst scrollt */
}

/* Slideshow: 4:3 in de linker kolom — minder dominant dan 16:9 */
.ws-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    user-select: none;
}

.ws-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.ws-slide {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ws-slide--active {
    display: block;
}

.ws-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    animation: kenburns 12s ease-in-out infinite alternate;
    transform-origin: center center;
}

.ws-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

@keyframes kenburns {
    0%   { transform: scale(1.00) translate(0%,  0%);   }
    33%  { transform: scale(1.05) translate(-1%, -1%);  }
    66%  { transform: scale(1.04) translate(1%,  0.5%); }
    100% { transform: scale(1.07) translate(0%, -1.5%); }
}

/* Pijl-knoppen */
.ws-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .82);
    border: none;
    border-radius: 999px;
    font-size: 22px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    transition: background .18s ease;
    -webkit-user-select: none;
    user-select: none;
}

.ws-btn--prev { left: 10px; }
.ws-btn--next { right: 10px; }

.ws-btn:hover { background: #fff; }

/* Dots */
.ws-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.ws-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .50);
    cursor: pointer;
    padding: 0;
    transition: background .18s ease, width .18s ease;
}

.ws-dot--active {
    background: #fff;
    width: 20px;
}

/* Geen media beschikbaar */
.ws-no-media {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background: rgba(0, 0, 0, .05);
    border: 1px dashed rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
}

/* ── Rechter kolom: meta + tekst ── */
.work-solo-right {
    min-width: 0; /* voorkomt overflow bij lange woorden */
}

.work-solo-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.work-solo-title {
    margin: 0 0 20px;
    padding-bottom: 0;
    border-bottom: none;
    font-size: clamp(28px, 3.5vw, 56px);
    line-height: .95;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.work-solo-body {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.75;
    color: var(--muted);
}

.work-solo-body p   { margin: 0 0 18px; }
.work-solo-body b,
.work-solo-body strong { color: #111; }

/* Mobiel: één kolom, slideshow boven */
@media (max-width: 760px) {
    .work-solo-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work-solo-left {
        position: static;
    }

    .ws-slideshow {
        border-radius: 16px;
    }

    .ws-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Pijl-knoppen */
.ws-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .85);
    border: none;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: background .18s ease, transform .18s ease;
    -webkit-user-select: none;
    user-select: none;
}

.ws-btn--prev { left: 14px; }
.ws-btn--next { right: 14px; }

.ws-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Dots onderaan de slideshow */
.ws-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ws-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    padding: 0;
    transition: background .18s ease, width .18s ease;
}

.ws-dot--active {
    background: #fff;
    width: 22px;
}

@media (max-width: 760px) {
    .ws-slide img,
    .ws-slide video {
        max-height: 320px;
    }

    .ws-btn {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

/* Video thumbnail in de galerij-grid (bio) */
.work-video-thumb {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
    background: #000;
    aspect-ratio: 16 / 9;
}

.work-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 760px) {
    .work-solo-header {
        flex-direction: column;
    }

    .work-solo-header .work-period {
        margin-top: 0;
    }
}
.work-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 34px;
}

.work-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
    overflow: hidden;
}

/* Als er een achtergrondafbeelding is */
.work-card--has-bg {
    background-size: cover;
    background-position: center;
    background-color: #111;
    border: none;
}

/* Overlay die de tekst leesbaar houdt over de afbeelding */
.work-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 4vw, 42px);
    background: rgba(0, 0, 0, .52);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 28px;
}

/* Zonder achtergrond: geen donkere overlay */
.work-card:not(.work-card--has-bg) .work-card-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Tekst wit maken op kaarten met afbeelding */
.work-card--has-bg h2,
.work-card--has-bg .work-meta,
.work-card--has-bg .work-excerpt {
    color: #fff !important;
}

.work-card--has-bg .work-period {
    background: rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.work-card--has-bg .work-button {
    background: #fff;
    color: #111;
}

.work-card--has-bg .work-button:hover {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

.work-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.work-card h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    line-height: .95;
    letter-spacing: -.055em;
    overflow-wrap: break-word;
}

.work-period {
    flex: 0 0 auto;
    padding: 8px 12px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.work-meta {
    margin: 16px 0 22px;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.work-excerpt {
    margin: 0 0 24px;
    color: #555;
    font-weight: 400;
}

.work-button {
    display: inline-block;
    width: fit-content;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.work-button:hover {
    background: #fff;
    color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

/* ─── 15. Perspagina (.press-grid) ────────────────────────────── */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.press-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
}

.press-card time {
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 11px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
}

.press-card h2 {
    margin: 0 0 24px;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
    text-transform: none;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.press-card a {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding: 10px 15px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.press-card a:hover {
    background: #fff;
    color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

/* ─── 15b. Dienstenpagina (.diensten-grid) ─────────────────────── */
.diensten-cat-titel {
    margin: 48px 0 6px;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.diensten-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
}

.diensten-card-uitgelicht {
    border: 2px solid #111;
}

.diensten-sticker {
    position: absolute;
    top: -14px;
    right: 22px;
    padding: 7px 13px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    transform: rotate(2.5deg);
}

.diensten-card h3 {
    margin: 0 0 4px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.diensten-subtitel {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
}

.diensten-prijs {
    margin: 0;
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.diensten-prijs-info {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
}

.diensten-punten {
    margin: 18px 0 26px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.diensten-punten li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 15px;
    border-top: 1px dashed rgba(0, 0, 0, .12);
}

.diensten-punten li:first-child {
    border-top: none;
}

.diensten-punten li::before {
    content: "+";
    position: absolute;
    left: 2px;
    font-weight: 800;
}

.diensten-cta {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding: 10px 15px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.diensten-cta:hover {
    background: #fff;
    color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

/* ─── 16. Contactpagina (.contact-grid) ────────────────────────── */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 34px;
}

.contact-card {
    padding: clamp(24px, 3vw, 36px);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
}

.contact-card h2 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .9;
    letter-spacing: -.055em;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.contact-section-title {
    grid-column: 1 / -1;
    margin: 20px 0 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #777;
}

.contact-address {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    color: #555;
    font-style: normal;
    line-height: 1.5;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 13px 15px;
    background: rgba(0, 0, 0, .045);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    overflow-wrap: anywhere;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-links a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

.contact-links img {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px;
    object-fit: contain;
    margin: 0 !important;
}

/* Volgers-teller op aparte regel in de contact-link */
.contact-followers {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
    letter-spacing: .02em;
    line-height: 1.3;
}

.contact-links a:hover .contact-followers {
    color: rgba(255, 255, 255, .70);
}

/* ─── 17. Footer ───────────────────────────────────────────────── */
footer {
    margin-top: 60px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 11px;
    color: rgba(0, 0, 0, .45);
}

.link_footer {
    color: rgba(0, 0, 0, .45);
    font-size: 11px;
    text-decoration: none !important;
    cursor: pointer;
}

.link_footer:hover {
    color: rgba(0, 0, 0, .65);
    background: transparent !important;
    text-decoration: none !important;
}

/* "Made by" label — subtiel, altijd onderaan */
.made-by {
    margin: 12px 0 0;
    font-size: 10px;
    letter-spacing: .06em;
    color: rgba(0, 0, 0, .28);
}

.made-by-link {
    color: rgba(0, 0, 0, .28);
    text-decoration: none;
    transition: color .2s ease;
}

.made-by-link:hover {
    color: rgba(0, 0, 0, .55);
    background: transparent;
}

/* Artiest-logo's in het uitgeklapte clients-blok */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 10px;
    padding: 10px 0;
}

.clients-logos a {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    transition: opacity .2s ease, transform .2s ease;
}

.clients-logos a:hover {
    background: transparent;
    opacity: .7;
    transform: scale(1.08);
}

.logo_small {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    opacity: .75;
}

/* ─── 18. Bio-galerij (.bio-gallery) ───────────────────────────── */

/* Sectie-titel boven de foto's */
.bio-photos-title {
    margin: 48px 0 24px;
    text-align: center;
}

/* Grid van thumbnails */
.bio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

/* Elke thumbnail-link */
.bio-thumb {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .04);
    aspect-ratio: 1 / 1;       /* altijd vierkant */
    transition: transform .22s ease, box-shadow .22s ease;
}

.bio-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    background: transparent;   /* override algemene a:hover achtergrond */
    color: inherit;
}

.bio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Lightbox overlay */
.bio-lightbox {
    display: none;              /* standaard verborgen */
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    cursor: default;
}

/* Grote foto in de lightbox */
.bio-lightbox img {
    max-width: min(88vw, 1200px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .5);
    user-select: none;
}

/* Gedeelde stijl voor alle knoppen in de lightbox */
.bio-lightbox-close,
.bio-lightbox-prev,
.bio-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .15s ease;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
}

.bio-lightbox-close:hover,
.bio-lightbox-prev:hover,
.bio-lightbox-next:hover {
    background: rgba(255, 255, 255, .28);
}

/* Sluit-knop rechtsboven */
.bio-lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 26px;
    width: 48px;
    height: 48px;
}

/* Vorige/volgende pijlen links en rechts gecentreerd */
.bio-lightbox-prev,
.bio-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    width: 56px;
    height: 56px;
    padding-bottom: 3px; /* visuele centrering van het pijltje */
}

.bio-lightbox-prev {
    left: 20px;
}

.bio-lightbox-next {
    right: 20px;
}

.bio-lightbox-prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.bio-lightbox-next:hover {
    transform: translateY(-50%) translateX(2px);
}

/* Op kleine schermen: pijlen kleiner en dichter bij de rand */
@media (max-width: 760px) {
    .bio-lightbox-prev,
    .bio-lightbox-next {
        font-size: 30px;
        width: 44px;
        height: 44px;
    }

    .bio-lightbox-prev { left: 8px; }
    .bio-lightbox-next { right: 8px; }

    .bio-lightbox img {
        max-width: 96vw;
        max-height: 80vh;
    }
}

/* Responsive: kleinere thumbnails op mobiel */
@media (max-width: 760px) {
    .bio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
}

/* ─── 19. Pre-save / music_solo pagina ─────────────────────────── */

.presave-page {
    max-width: 560px;
    margin: 0 auto;
}

/* Logo klein gecentreerd bovenaan */
.presave-logo {
    display: block;
    margin: 28px auto 24px;
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Albumhoes */
.presave-cover {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 28px;
    border-radius: 20px !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .20) !important;
}

.presave-cover--upcoming {
    opacity: .45;
    filter: grayscale(.2);
}

/* Titel */
.presave-title {
    margin: 0 0 10px;
    padding-bottom: 0;
    border-bottom: none;
    font-size: clamp(36px, 8vw, 72px);
    line-height: .9;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-align: center;
}

/* Artiesten-naam */
.presave-artists {
    margin: 0 0 8px;
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--muted);
    text-align: center;
}

/* Datum */
.presave-date {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    text-align: center;
}

/* Extra info */
.presave-extra {
    margin: 0 0 20px;
    font-size: 14px;
    color: #888;
    text-align: center;
}

/* Streaming-links — zelfde stijl als contact-links */
.presave-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 28px 0 24px;
}

.presave-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, .045);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.presave-link:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.presave-link img {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Copyright onderaan */
.presave-label {
    margin: 0;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}

@media (max-width: 760px) {
    .presave-header-img img {
        height: 140px;
    }
}

/* ─── All-artiesten / startpagina (.all-*) ──────────────────────── */

/* Zoekbalk */
.all-search-wrap {
    margin-bottom: 36px;
}

.all-search-form {
    display: flex;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
}

.all-search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(8px);
}

.all-search-input:focus {
    border-color: #111;
    background: #fff;
}

.all-search-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s ease;
}

.all-search-btn:hover {
    background: #333;
}

/* Sectie-titels */
.all-section-title {
    margin: 0 0 16px;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    border-bottom: none;
    padding-bottom: 0;
}

/* Externe logo's (favicon formaat) */
.all-ext-logo {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    border-radius: 10px !important;
    background: #f0f0f0;
    padding: 8px;
}

.all-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.all-artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 14px 18px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .09);
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    letter-spacing: .02em;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    backdrop-filter: blur(4px);
}

.all-artist-card:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .18);
}

.all-artist-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.all-artist-card:hover .all-ext-logo {
    background: rgba(255, 255, 255, .15);
}

.all-login-link {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.all-login-link a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
}

.all-login-link a:hover {
    color: #111;
    background: transparent;
}

/* Inlogformulier onderaan all-pagina */
.all-login-form {
    max-width: 360px;
    margin: 40px auto 0;
    padding: clamp(22px, 3vw, 36px);
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
    text-align: center;
    backdrop-filter: blur(8px);
}

.all-login-form h2 {
    margin: 0 0 20px;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: -.04em;
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
}

.all-login-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.all-login-inner input {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
}

.all-login-inner input:focus {
    border-color: #111;
}

.all-login-inner button {
    padding: 14px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    margin-top: 4px;
}

.all-login-inner button:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 760px) {
    .all-artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    .all-search-form {
        padding: 0 4px;
    }
}

/* Artiest-selectie balk (home/bio tabs) */
.admin-artist-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.admin-artist-btn {
    padding: 9px 16px;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    color: #444;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.admin-artist-btn:hover {
    background: #333;
    color: #fff;
}

.admin-artist-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Tab-navigatie bovenaan de admin-pagina */
.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.admin-tab {
    padding: 11px 20px;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.admin-tab:hover {
    background: #333;
    color: #fff;
}

.admin-tab-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.admin-tab-active:hover {
    background: #111;
    color: #fff;
}

/* Formulierkaart */
.admin-form-card {
    padding: clamp(22px, 3vw, 40px);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
    margin-bottom: 48px;
}

.admin-form-title {
    margin: 0 0 28px;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: -.04em;
    text-transform: none;
}

/* 2-kolommen grid-formulier */
.admin-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.af-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Full-breedte rijen */
.af-full {
    grid-column: 1 / -1;
}

.af-row label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #666;
}

.admin-form input[type="text"],
.admin-form input[type="date"],
.admin-form input[type="url"],
.admin-form input[type="number"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: #111;
}

.admin-form textarea {
    min-height: 160px;
    resize: vertical;
}

/* Checkboxes */
.af-checks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.af-checks label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    color: #333;
    cursor: pointer;
}

.af-checks input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111;
}

/* Actieknoppen in het formulier */
.af-actions {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.af-btn-save {
    padding: 13px 24px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.af-btn-save:hover {
    background: #fff;
    color: #111;
}

.af-btn-cancel {
    padding: 13px 20px;
    background: transparent;
    color: #666;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.af-btn-cancel:hover {
    background: #f0f0f0;
    color: #111;
}

/* ── Lijst van bestaande records ── */
.admin-list-title {
    margin: 0 0 16px;
    font-size: clamp(22px, 2.5vw, 36px);
    letter-spacing: -.03em;
    text-transform: none;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-list-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    flex-wrap: wrap;
}

.admin-list-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.admin-list-info strong {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-list-info span {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-list-info small {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-list-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.al-btn-edit,
.al-btn-delete {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .18s ease, color .18s ease;
    white-space: nowrap;
}

.al-btn-edit {
    background: rgba(0, 0, 0, .06);
    color: #333;
    border-color: rgba(0, 0, 0, .12);
}

.al-btn-edit:hover {
    background: #111;
    color: #fff;
}

.al-btn-delete {
    background: #fff0f0;
    color: #c0392b;
    border-color: rgba(192, 57, 43, .22);
}

.al-btn-delete:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* ── Volgers-formulier ── */
.admin-followers-row {
    flex-direction: column;
    align-items: flex-start;
}

.followers-name {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.followers-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: flex-end;
    width: 100%;
}

.followers-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #666;
}

.followers-field input {
    width: 120px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 15px;
    outline: none;
}

.followers-field input:focus {
    border-color: #111;
}

.followers-save {
    padding: 10px 18px !important;
    font-size: 12px !important;
    align-self: flex-end;
}

/* Responsive admin */
@media (max-width: 760px) {
    .admin-form {
        grid-template-columns: 1fr;
    }

    .af-row {
        grid-column: 1 / -1;
    }

    .admin-list-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-list-actions {
        width: 100%;
    }

    .al-btn-edit,
    .al-btn-delete {
        flex: 1;
        justify-content: center;
    }

    .followers-field input {
        width: 100%;
    }
}
@media (max-width: 760px) {

    #wrapper {
        width: min(100% - 18px, 1680px);
        padding: 80px 0 40px; /* ruimte voor de hamburger-knop bovenin */
    }

    #logo {
        padding: 0 0 18px;
    }

    .logo {
        max-width: 66vw;
        max-height: 150px;
    }

    /* Menu-knop zichtbaar maken op mobiel */
    .menu-toggle {
        display: block;
    }

    /* Hoofdmenu: standaard verborgen, wordt geopend via JS */
    nav.main-menu {
        position: fixed;
        top: 72px;          /* onder de hamburger-knop */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: calc(100% - 32px);
        max-width: 480px;
        display: none;      /* verborgen tot gebruiker op hamburger klikt */
        flex-direction: column;
        border-radius: 22px;
        padding: 10px;
        gap: 4px;
    }

    /* Menu tonen als klasse .is-open aanwezig is (via JS) */
    nav.main-menu.is-open {
        display: flex;
    }

    #menu a.linkmenu,
    #menu a.linkmenulogin {
        text-align: center;
        padding: 14px 10px;
        font-size: 13px;
        border-radius: 14px;
    }

    /* Ingelogd-balk en admin-menu: niet vastgezet op mobiel */
    p.logged-in-bar {
        position: static;
        display: inline-block;
        margin: 0 0 10px;
    }

    nav.admin-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 22px;
        flex-direction: column;
        border-radius: 22px;
    }

    #content {
        padding: 22px;
        border-radius: 22px;
    }

    h1 {
        font-size: clamp(42px, 16vw, 78px);
        letter-spacing: -.065em;
    }

    h2 {
        font-size: clamp(30px, 10vw, 54px);
    }

    p {
        font-size: 16px;
    }

    /* Overschrijf inline width/height attributen op afbeeldingen */
    img[width] {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Muziekgrid: één kolom */
    .music-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Showstabel: block-layout (elke td op eigen rij) */
    .table_shows,
    .table_shows tbody,
    .table_shows tr,
    .table_shows td {
        display: block;
        width: 100% !important;
    }

    .table_shows tr {
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .14);
    }

    .table_shows td {
        padding: 4px 0 !important;
        border-bottom: 0 !important;
    }

    .table_shows h3 {
        font-size: 19px;
    }

    .table_shows big {
        font-size: 20px;
    }

    /* Werkkaart-header: datum onder de titel */
    .work-card-header {
        flex-direction: column;
    }

    .work-period {
        display: inline-block;
        margin-top: 14px;
    }

    /* Perspagina: één kolom */
    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-card {
        min-height: auto;
    }

    /* Contactlinks: één kolom */
    .contact-links {
        grid-template-columns: 1fr;
    }
}

/* ─── 21. Responsive – kleine telefoons (≤ 430 px) ────────────── */
@media (max-width: 430px) {

    nav.main-menu {
        width: calc(100% - 20px);
    }
}
