html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    margin-top: 58px;
    color: white;
}

#header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 6px 0;
    gap: 12px;
    min-width: 0;
    margin-bottom: 1000px;
}

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

#headerSub1 a p {
    font-size: 18px;
    margin: 0;
    color: white;
    text-decoration: none;
    margin: 10px;
}

#headerSub2 {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

#headerSub2 a.active p {
    text-decoration: underline;
}

#headerSub2 a p {
    font-size: 18px;
    margin: 0;
    color: white;
    margin: 10px;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.tour-section {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    color: white;
    padding: 0px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.mzk-section h1 {
    font-size: 50px;
    margin: 0;
}
.mzk-section {
    width: 100%;
    max-width: 1200px;
    
    color: white;
    
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.tour-section h1 {
    font-size: 50px;
    margin-bottom: 40px;
}

.tour-item {
    padding: 20px 0;
    border-top: 1px solid #666;
}

.tour-item:last-child {
    border-bottom: 1px solid #666;
}

.tour-item p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
}
.track p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
}
#band_id {
    width: 50%;
    margin: 20px 25%;
}

.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.center-box a {
    text-decoration: none;
}

.bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
}

.bottom-left a {
    margin-right: 20px;
    text-decoration: none;
}

.bottom-left a:hover {
    opacity: 0.6;
}

.About {
    max-width: 1200px;
    margin: 20px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-sizing: border-box;
}

.About .text-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.About h1 {
    font-size: 50px;
    margin-top: 0;
}

.About p {
    font-size: 20px;
    line-height: 1.6;
}

.About img {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-left: auto;
    display: block;
}

@media (max-width: 1100px) {
    .About {
        gap: 24px;
    }

    .About h1 {
        font-size: 56px;
    }

    .About p {
        font-size: 18px;
    }

    .About img {
        width: 45%;
    }
}

@media (max-width: 800px) {
    .About {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
            margin: 20px;
    padding: 0px;
    }

    .About .text-column {
        max-width: none;
        width: 100%;
    }

    .About img {
        width: 100%;
        margin-left: 0;
        border-radius: 4px;
    }

    .About h1 {
        font-size: 60px;
    }

    .About p {
        font-size: 17px;
    }

    #header {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 36px;
    }

    .About {
            margin: 20px;
    padding: 0px;
        gap: 12px;
    }

    .About h1 {
        font-size: 50px;
        line-height: 1.05;
    }

    .About p {
        font-size: 16px;
    }

    #headerSub2 a p, #headerSub1 a p {
        font-size: 16px;
        margin: 8px;
    }
}

#header, #headerSub1, #headerSub2 {
    min-width: 0;
}

@media (max-width: 800px) {
    #headerSub2 a p,
    #headerSub1 a p {
        margin: 6px 8px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 140px;
    }
}

@media (max-width: 520px) {
    #headerSub2 {
        display: none;
    }

    #headerSub1 a p {
        font-size: 16px;
        margin: 6px;
    }

    .header-hamburger {
        display: inline-flex;
        align-items: center;
    }
}

.header-hamburger {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    padding: 8px 10px;
    line-height: 1;
    align-self: center;
    z-index: 2000;
}

@media (max-width: 520px) {
    .header-hamburger {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .header-hamburger .hamburger-icon {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 22px;
        line-height: 32px;
        text-align: center;
    }

    #headerSub2 {
        display: none !important;
        margin-bottom: 58px;
    }

    #header {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    #headerSub1 { order: 1; }
    .header-hamburger { order: 2; }
    #headerSub2 { order: 3; }
}

.header-hamburger {
    position: relative;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 56px;
    right: 12px;
    background: rgba(0,0,0,0.98);
    border: 1px solid #222;
    padding: 12px;
    border-radius: 6px;
    z-index: 1500;
}
.mobile-nav.show { display: block; }

#header {
    min-width: 0;
    box-sizing: border-box;
}
#headerSub1, #headerSub2 {
    min-width: 0;
}

.header-hamburger:focus {
    outline: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}
:root {
    --header-height: 56px;
}

#header {
    min-height: var(--header-height);
    box-sizing: border-box;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height));
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    background: rgba(0,0,0,0.98);
    border: 1px solid #222;
    padding: 8px 6px;
    border-radius: 6px;
    z-index: 1600;
    box-sizing: border-box;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    box-sizing: border-box;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:focus {
    outline: 2px solid rgba(255,255,255,0.08);
    border-radius: 4px;
}

@media (max-width: 520px) {
    body{
        margin-top: 58px;
    }
    .header-hamburger {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    #headerSub2 {
        display: none !important;
    }

    #headerSub1 a p {
        margin-left: 6px;
    }
}

.audio-player {
    background: #000 !important;
    color: #fff !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.audio-player audio,
audio {
    width: 100% !important;
    height: 42px !important;
    display: block !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    color-scheme: dark !important;
    accent-color: #fff !important;
}

.audio-player audio::-webkit-media-controls-panel,
audio::-webkit-media-controls-panel,
.audio-player audio::-webkit-media-controls-enclosure,
audio::-webkit-media-controls-enclosure {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.audio-player audio::-webkit-media-controls-timeline {
    height: 6px !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.0) !important;
}

.audio-player audio::-webkit-media-controls-volume-slider {
    accent-color: #fff !important;
    background: transparent !important;
}

.audio-player audio::-webkit-media-controls-seek-back-button,
.audio-player audio::-webkit-media-controls-seek-forward-button {
    border: none !important;
    background: transparent !important;
}

audio {
    color-scheme: dark !important;
    accent-color: #fff !important;
}

.audio-player,
.audio-player * {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.audio-caption {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0);
}

.mzk-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin: 24px auto;
    box-sizing: border-box;
    background: transparent;
    position: relative;
}

.mzk-item .mzk-content {
    width: 50%;
    padding: 28px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
}

.mzk-item .mzk-image {
    width: 50%;
    min-height: 320px;
    background-image: url("img/Auto1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.mzk-item .mzk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mzk-item h2, .mzk-item p, .mzk-item h3 {
    color: #fff;
    margin: 0 0 12px 0;
}

@media (max-width: 800px) {
    .mzk-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 18px 12px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .mzk-item .mzk-content {
        width: 100%;
        order: 1;
        padding: 18px;
        box-sizing: border-box;
    }

    .mzk-item .mzk-image {
        width: min(90%, 520px);
        max-width: 520px;
        min-height: 200px;
        order: 2;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
        border-radius: 6px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow: none;
        display: block;
        box-sizing: border-box;
    }

    .mzk-item .mzk-image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .mzk-item .mzk-content + .mzk-image {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .mzk-item .mzk-content {
        padding: 14px;
    }

    .audio-player audio {
        height: 36px;
    }

    .mzk-item .mzk-image {
        min-height: 180px;
    }
}
/* GLOBAL BOX-SIZING FIX */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* BASE STYLES (jouw originele look) */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    margin-top: 58px;
    color: white;
}

/* GLOBAL H1 – consistent op alle pagina’s */
h1 {
    font-family: Arial, sans-serif;
    font-size: 50px;
    font-weight: normal;
    margin: 0 0 40px 0;
    padding: 0;
    color: white;
    line-height: 1.05;
}

/* header */
#header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 6px 0;
    gap: 12px;
    min-width: 0;
}

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

#headerSub1 a p,
#headerSub2 a p {
    font-size: 18px;
    margin: 10px;
    color: white;
}

#headerSub2 {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

#headerSub2 a.active p {
    text-decoration: underline;
}

/* index.html */
.tour-section,
.mzk-section,
.About {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.tour-item {
    padding: 20px 0;
    border-top: 1px solid #666;
}
.tour-item:last-child {
    border-bottom: 1px solid #666;
}
.tour-item p,
.track p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* about.html */
.About {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.About .text-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.About p {
    font-size: 20px;
    line-height: 1.6;
}
.About img {
    width: 40%;
    object-fit: cover;
    margin-left: auto;
}

/* contact.html */
.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}
.bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
}

/* AUDIO: zwart met witte elementen, geen borders of radii */
.audio-player {
    background: #000;
    width: 100%;
}
audio {
    width: 100%;
    height: 42px;
    background: #000;
    color-scheme: dark;
    accent-color: #fff;
    border: none;
}

/* MZK-ITEM: helft scherm + afbeelding aan andere helft */
.mzk-item {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 24px auto;
}
.mzk-content {
    width: 50%;
    padding: 28px 32px;
}
.mzk-image {
    width: 50%;
    min-height: 320px;
    background-image: url("img/Auto1.png");
    background-size: cover;
    background-position: center;
}

/* MOBILE: plaatje onder tracks en gecentreerd */
@media (max-width: 800px) {
    h1 {
        font-size: 42px;
        margin-bottom: 32px;
    }

    .About {
        flex-direction: column;
    }

    .mzk-item {
        flex-direction: column;
        align-items: center;
    }
    .mzk-content {
        width: 100%;
        padding: 18px;
    }
    .mzk-image {
        width: 90%;
        min-height: 200px;
        margin: 0 auto;
    }
}

/* extra small devices: compacter */
@media (max-width: 480px) {
    h1 {
        font-size: 34px;
        margin-bottom: 24px;
    }

    audio {
        height: 36px;
    }
}
