* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #D4C4E8;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #D4C4E8;
    color: #2a2a2a;
    transition: background-color 1.2s ease;
}

body.inverted {
    background-color: #000;
}

body.inverted img {
    filter: grayscale(1);
}

body.inverted .background-image {
    opacity: 0;
}

/* Fade transitions voor de zwart-wit modus */
img {
    transition: filter 1.2s ease, opacity 1.2s ease;
}

.page-content h1,
.page-content p,
.event-date,
.event-info strong,
.event-info .event-location,
.event-info .event-desc,
.no-events,
.merch-item strong,
.merch-item .merch-price,
.ticket-link,
.buy-link {
    transition: color 1.2s ease, border-bottom-color 1.2s ease;
}

body.inverted .page-content h1,
body.inverted .page-content p,
body.inverted .event-date,
body.inverted .event-info strong,
body.inverted .event-info .event-location,
body.inverted .event-info .event-desc,
body.inverted .no-events,
body.inverted .merch-item strong,
body.inverted .merch-item .merch-price {
    color: #fff;
}

body.inverted .ticket-link,
body.inverted .buy-link {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

body.inverted .event-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

body.inverted .scroll-indicator svg path {
    stroke: #fff;
}

body.inverted .merch-item {
    background: rgba(255, 255, 255, 0.08);
}

/* ── SCROLL INDICATOR ────────────────────────────────────────── */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(15px); }
}

/* ── PAGES CONTAINER ─────────────────────────────────────────── */
.pages-container {
    width: 100%;
    position: relative;
    z-index: 5;
}

/* ── PAGE SECTIONS ───────────────────────────────────────────── */
.page-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

.page-section:first-child {
    align-items: center;
    padding-top: 0;
}

/* ── PAGE CONTENT ────────────────────────────────────────────── */
.page-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    pointer-events: none;
}

.page-content-wide {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

/* Alternating left/right layout */
.page-section:nth-child(even) .page-content {
    margin-left: auto;
    margin-right: 60px;
    text-align: right;
}

.page-section:nth-child(odd):not(:first-child) .page-content {
    margin-left: 60px;
    margin-right: auto;
    text-align: left;
}

.page-section:first-child .page-content {
    text-align: center;
    margin: 0;
}

/* Wide content: no alternating offset */
.page-section .page-content-wide {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-content h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2a2a2a;
    margin-bottom: 32px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    letter-spacing: 0.5px;
    white-space: pre-wrap;
}

/* ── HOME VIDEO ACHTERGROND ──────────────────────────────────── */
.home-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.home-video-bg.loaded { opacity: 1; }

.home-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.home-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: calc(100vw * 9 / 16);
    min-height: 100vh;
    min-width: calc(100vh * 16 / 9);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* ── SCROLL INDICATOR ────────────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: max(60px, calc((100vw - 1100px) / 2 + 60px));
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    pointer-events: auto;
    color: #ffffff;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
}

/* ── BACKGROUND ──────────────────────────────────────────────── */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 1.2s ease;
}

/* ── SECTIE ACHTERGRONDKLEUREN ───────────────────────────────── */
#wie-zijn-wij {
    background-color: #e03e08;
    transition: background-color 1.2s ease;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 56px;
}

#wie-zijn-wij .page-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: left;
}

#fotos {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 80px;
}

#contact {
    background-color: #ffffff;
    transition: background-color 1.2s ease;
    flex-direction: column;
    align-items: center;
    padding: 0 0 180px;
    overflow: hidden;
    height: auto;
    min-height: 100vh;
}

.contact-heading-top {
    width: 100%;
    max-width: 1100px;
    padding: 80px 60px 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2a2a2a;
    flex-shrink: 0;
    transition: color 1.2s ease;
}

.contact-layout {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    flex: 1;
    min-height: 0;
    gap: 20px;
    padding: 24px 60px 0;
}

.contact-img-large {
    width: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
    align-self: stretch;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-img-small {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.contact-link {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #2a2a2a;
    text-decoration: none;
    transition: opacity 0.2s, color 1.2s ease;
}

.contact-link:hover {
    opacity: 0.5;
}

#merch {
    background-color: #112d14;
    transition: background-color 1.2s ease;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 100px;
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

#merch .page-content h1 {
    margin-bottom: 0;
}

#merch-products {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.merch-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 48px 60px;
}

#merch .page-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: left;
}

.vinyl-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.vinyl-layout {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    gap: 56px;
    padding: 0 60px;
    margin: 0 auto;
}

.vinyl-img {
    width: 45%;
    height: auto;
    flex-shrink: 0;
}

.vinyl-info {
    flex: 1;
}

.vinyl-info h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 28px;
}

.vinyl-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vinyl-details li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vinyl-details li:last-child {
    border-bottom: none;
}

.vinyl-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.vinyl-value {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-align: right;
}

.vinyl-buy {
    display: inline-block;
    margin-top: 28px;
    margin-bottom: 48px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #112d14;
    text-decoration: none;
    border-bottom: none;
    background: #ffffff;
    padding: 10px 28px;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.vinyl-buy:hover {
    opacity: 0.8;
}

body.inverted #wie-zijn-wij,
body.inverted #contact,
body.inverted #merch {
    background-color: #000;
}

body.inverted .contact-heading-top,
body.inverted .contact-link {
    color: #ffffff;
}

#wie-zijn-wij .page-content h1,
#wie-zijn-wij .page-content p {
    color: #ffffff;
}

#merch .page-content h1 {
    color: #ffffff;
}

.band-layout {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    gap: 56px;
    padding: 0 60px;
}

.band-img {
    width: 45%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.band-members {
    flex: 1;
}

.band-members h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 28px;
}

.members-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.members-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.member-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    white-space: nowrap;
}

.member-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    white-space: nowrap;
}

.page-logo {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    height: 23px;
    width: auto;
    opacity: 1;
}

.pill-logo {
    display: none;
    width: auto;
    height: 46px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Agenda: kolom zodat heading en blok onder elkaar staan */
#agenda {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 0;
    background-color: #000;
}

#agenda .page-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: left;
}

h1[data-page="agenda"] {
    color: #ffffff;
}

/* Agenda afbeelding: 75% breed, gecentreerd onder de kop */
.agenda-img {
    display: block;
    width: 75%;
    height: auto;
    margin: 24px auto 28px;
    object-fit: contain;
    object-position: top center;
}

/* Zwart blok onder de agenda heading: paginabreed */
.agenda-block {
    background: #000000;
    width: 100%;
    padding: 28px 0 24px;
    pointer-events: auto;
    position: relative;
}

.events-wrapper {
    position: relative;
}

.events-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 50%, #000000 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
}

#agenda.has-more-events:not(.expanded) .events-wrapper::after {
    opacity: 1;
}

#agenda.expanded {
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

#agenda.expanded .agenda-block {
    overflow: visible;
    flex: unset;
}

#agenda.expanded .events-list {
    max-height: none;
    overflow: visible;
}

.agenda-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.shows-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 8px;
}

.shows-divider::before,
.shows-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.shows-divider span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.shows-more {
    display: block;
    margin-top: 8px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 44px;
    font-weight: 200;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: right;
    line-height: 1;
    transition: opacity 0.2s;
}

.shows-more:hover { opacity: 0.6; }

.shows-toggle-mobile {
    display: none;
}

/* Tekst in het zwarte blok: wit */
.agenda-block .event-info strong,
.agenda-block .event-info .event-location,
.agenda-block .event-info .event-desc,
.agenda-block .event-date,
.agenda-block .no-events {
    color: #ffffff;
}

.agenda-block .event-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.agenda-block .ticket-link {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* ── PILL ────────────────────────────────────────────────────── */
.pill-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 300px;
    height: 300px;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.6s ease;
}

.pill {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    user-select: none;
    cursor: pointer;
    pointer-events: auto;
}

.band-bio h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 28px 0 10px;
    white-space: normal;
}

.band-bio h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 20px 0 8px;
    white-space: normal;
}

.band-bio h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 14px 0 6px;
    white-space: normal;
}

.band-bio p {
    margin-bottom: 8px;
}

.band-bio a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.band-bio a:hover {
    opacity: 0.7;
}

.band-bio {
    width: 100%;
    max-width: 1100px;
    padding: 0 60px;
    margin-top: 36px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.8;
    color: #ffffff;
    white-space: pre-wrap;
    text-transform: uppercase;
}

/* ── FOOTER (onderaan site, in merch sectie) ─────────────────── */
.footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.admin-link {
    font-size: 11px;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.admin-link:hover {
    opacity: 0.45;
}

/* ── EVENTS LIST ─────────────────────────────────────────────── */
.events-list {
    pointer-events: auto;
    max-height: min(72vh, calc(100vh - 280px));
    overflow-y: auto;
    scrollbar-width: none;
}

.events-list::-webkit-scrollbar { display: none; }

.event-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.12);
}

.event-item:last-child { border-bottom: none; }

.event-date {
    font-size: 13px;
    font-weight: 700;
    color: #2a2a2a;
    opacity: 0.5;
    white-space: nowrap;
    min-width: 80px;
    padding-top: 2px;
}

.event-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-info .event-location {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.event-info .event-desc {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 8px;
}

.ticket-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.ticket-link:hover { opacity: 0.6; }

.no-events {
    font-size: 15px;
    opacity: 0.5;
    font-style: italic;
}

/* ── PHOTOS GRID ─────────────────────────────────────────────── */
#fotos .page-content-wide {
    max-width: 1100px;
    padding: 0 60px;
    margin: 0 auto;
    text-align: left;
}

.photos-grid {
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
    gap: 6px;
}

.photos-grid .photo-item {
    overflow: hidden;
    cursor: pointer;
}

.photos-grid .photo-item:nth-child(5n+1) { grid-row: span 2; }
.photos-grid .photo-item:nth-child(5n+4) { grid-row: span 2; }

.photos-grid .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photos-grid .photo-item:hover img {
    transform: scale(1.05);
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.lightbox-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 88vw;
    max-height: 88vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 14px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 64px;
    font-weight: 200;
    cursor: pointer;
    opacity: 0.5;
    padding: 0 24px;
    line-height: 1;
    transition: opacity 0.2s;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ── MERCH GRID ──────────────────────────────────────────────── */
.merch-grid {
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    max-height: 55vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.merch-grid::-webkit-scrollbar { display: none; }

.merch-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.merch-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.merch-item-body {
    padding: 10px 12px 12px;
}

.merch-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.merch-item .merch-price {
    font-size: 13px;
    opacity: 0.65;
    margin-bottom: 8px;
}

.buy-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.buy-link:hover { opacity: 0.6; }

/* ── MOBIEL (≤768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Pil iets kleiner en iets hoger zodat hij vrij staat boven de tekst */
    .pill-container {
        width: 150px;
        height: 150px;
        top: 38%;
    }

    /* Alle secties vergrendeld op volledige schermhoogte */
    .page-section {
        height: 100vh;
        height: 100svh;
        overflow: hidden;
    }

    #wie-zijn-wij,
    #fotos {
        height: auto;
        min-height: 100svh;
        overflow: visible;
    }

    /* Niet-eerste secties: content bovenaan */
    .page-section:not(:first-child) {
        align-items: flex-start;
        padding: 60px 0 0;
    }

    /* Eerste sectie blijft gecentreerd */
    .page-section:first-child {
        align-items: center;
        padding-top: 0;
    }

    /* Verwijder links/rechts offset — alles gecentreerd op mobiel */
    .page-content,
    .page-section:nth-child(even) .page-content,
    .page-section:nth-child(odd):not(:first-child) .page-content {
        max-width: 100%;
        width: 100%;
        padding: 0 24px;
        margin: 0;
        text-align: left;
    }

    .page-section:first-child .page-content {
        text-align: center;
        padding: 0 24px;
    }

    .page-content-wide {
        padding: 0 24px;
    }

    /* Typografie */
    .page-content h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .page-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Agenda: geen ruimte onder het zwarte blok */
    #agenda {
        padding-bottom: 0;
    }

    .agenda-block {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .agenda-inner {
        padding: 0 24px 64px;
    }

    #agenda .page-content {
        padding: 0 24px;
    }

    #merch .page-content {
        padding: 0 24px;
    }

    /* Mobiele +/- knop voor shows */
    .shows-more { display: none !important; }

    /* Op mobiel: fade verplaatsen naar onderkant van de hele sectie */
    .events-wrapper::after { display: none; }

    #agenda::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 50%, #000000 100%);
        pointer-events: none;
        z-index: 3;
        opacity: 0;
        transition: opacity 0.3s;
    }

    #agenda.has-more-events:not(.expanded)::after { opacity: 1; }

    .shows-toggle-mobile.has-more {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 20px;
        right: 24px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 44px;
        font-weight: 200;
        font-family: inherit;
        line-height: 1;
        cursor: pointer;
        pointer-events: auto;
        transition: opacity 0.2s;
        padding: 0;
        z-index: 5;
    }

    .shows-toggle-mobile.has-more:hover { opacity: 0.6; }

    /* Merch/vinyl: stapelen op mobiel */
    .vinyl-layout {
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
        align-items: center;
    }

    .vinyl-img {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .vinyl-info {
        width: 100%;
        text-align: left;
    }

    .vinyl-details li {
        justify-content: space-between;
    }

    .vinyl-buy {
        text-align: left;
        font-size: 13px;
        margin-top: 24px;
        margin-bottom: 72px;
    }

    .merch-divider {
        margin: 40px 24px;
    }

    /* Logo onderaan: 50% kleiner op mobiel */
    .page-logo {
        height: 13px;
    }

    #wie-zijn-wij .page-content {
        padding: 0 24px;
    }

    .band-bio {
        padding: 0 24px;
    }

    /* Band layout: op mobiel stapelen */
    .band-layout {
        flex-direction: column;
        gap: 28px;
        padding: 0 24px;
    }

    .band-img {
        width: 100%;
    }

    .agenda-img {
        width: 90%;
    }

    /* Events: geen max-height, sectie schaalt mee */
    .events-list {
        max-height: unset;
    }

    .event-item {
        flex-direction: column;
        gap: 4px;
        padding: 14px 0;
    }

    .event-date {
        min-width: unset;
        font-size: 12px;
    }

    .event-info strong {
        font-size: 15px;
    }

    /* Foto's en merch grids */
    #fotos .page-content-wide {
        padding: 0 24px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        gap: 5px;
        max-height: unset;
    }

    .photos-grid .photo-item:nth-child(5n+1),
    .photos-grid .photo-item:nth-child(5n+4) {
        grid-row: span 1;
    }

    .photos-grid .photo-item:nth-child(3n+1) {
        grid-row: span 2;
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-height: unset;
    }

    .merch-item img {
        height: 110px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    .scroll-indicator svg {
        width: 22px;
        height: 22px;
    }

    /* Footer */
    .footer {
        bottom: 14px;
    }

    /* Contact: mobiel — foto's weg, alleen tekst, kleiner */
    #contact {
        height: auto;
        overflow: visible;
        min-height: 100svh;
        padding-bottom: 60px;
    }

    .contact-heading-top {
        padding: 48px 24px 0;
        font-size: 22px;
    }

    .contact-img-large,
    .contact-img-small {
        display: none;
    }

    .contact-layout {
        padding: 20px 24px 0;
        flex: unset;
    }

    .contact-right {
        height: auto;
        width: 100%;
    }

    .contact-link {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* ── KLEINE TELEFOONS (≤390px) ───────────────────────────────── */
@media (max-width: 390px) {
    .pill-container {
        width: 120px;
        height: 120px;
        top: 36%;
    }

    .page-content h1 {
        font-size: 20px;
    }

    .page-content p {
        font-size: 14px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-section:not(:first-child) {
        padding-bottom: 60px;
    }
}

/* Social icons overlay (home sectie) */
.social-icons {
    position: fixed;
    top: 28px;
    right: max(60px, calc((100vw - 1100px) / 2 + 60px));
    display: flex;
    gap: 18px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.4s;
}

.social-icons.hidden {
    opacity: 0;
    pointer-events: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .social-icons {
        top: 18px;
        right: 24px;
        gap: 14px;
    }
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
