@font-face {
    font-family: "Creato Display";
    src: url("./fonts/creato/CreatoDisplay-Medium.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* laadt het snelst */
}
@font-face {
    font-family: "Panton Black Caps";
    src: url("./fonts/panton.black-caps.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* laadt het snelst */
}
/* Reset body and html */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
}
/* 1) De full-screen curtain-container */
#curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 10003;
    pointer-events: auto;
}
.curtain-panel {
    flex: 1;
    height: 100vh;
    background-image: url("./../images/curtain.png");
    background-repeat: no-repeat;
    background-size: 90vw 120vh;
    transition: transform 1.2s ease-in-out;
    z-index: 1001;
}
/* linker helft */
.curtain-panel.left {
    background-position: left center;
    transform-origin: left center;
}
/* rechter helft */
.curtain-panel.right {
    background-position: right center;
    transform-origin: right center;
}
#curtain.open .curtain-panel.left {
    transform: translateX(-100%);
}
#curtain.open .curtain-panel.right {
    transform: translateX(100%);
}
#curtain.fading {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}
/* Hero background section */
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.header-section {
    position: fixed;
    z-index: 10001;
    width: 100vw;
    transition: opacity 0.3s ease;
}
/* Logo fixed top left */
.logo-fixed {
    position: fixed;
    top: 0px;
    z-index: 1001;
    opacity: 1;
    padding: 2% 0px 2% 2%;
    transition: opacity 0.3s ease;
    width: fit-content;
    pointer-events: none;
}
.logo-fixed img {
    height: 14rem !important;
    width: auto !important;
    display: block;
}
/* Animation base */
.tv-container {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
}

.tv-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* This ensures scaling */
.tv-frame-wrapper {
    position: relative;
    max-width: 700px; /* don't let it grow too large */
    margin: 0 auto;
}

/* TV image scales properly */
img.tv-frame {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
}

/* Video fitted to screen area */
iframe.tv-video {
    position: absolute;
    top: 8%;
    left: 13%;
    width: 58%;
    height: 76%;
    border-radius: 4px;
    background: black;
}

/* Muziek-iconen onder de tv */
.music-icons {
    position: absolute;
    top: 780px;
    left: 50%;
    transform: translateY(300px);
    display: flex;
    opacity: 0;
    flex-wrap: wrap;
    gap: 18px 40px;
    justify-content: center;
    z-index: 2;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.music-icons.visible {
    opacity: 1;
    transform: translateY(0);
}
.music-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 140px;
    margin: 0;
}
.music-icons a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.mobile-only {
    display: none;
}
/* Hero-tekst */
.hero-text {
    position: absolute;
    top: 960px;
    left: 50%;
    transform: translateY(400px);
    opacity: 0;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}
.hero-text.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-text h1 {
    margin: 0;
    font-family: "Creato Display", sans-serif;
    line-height: 1.6;
    font-weight: bold;
    font-size: 2rem;

    color: #ffffff;
}
.hero-text p {
    font-family: "Creato Display", sans-serif;
    font-size: 1em;
    line-height: 1.2;
    transition: all 1s ease;
    color: #ffffff;
    margin: 10px 0px 0px 0px;
}
.container.hero-text {
    text-wrap-style: balance;
}
/* Social icons fixed bottom right */
.social-icons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    transition: opacity 0.3s ease;
}
.social-icons a {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: transform 0.2s ease;
    pointer-events: none;
}
.social-icons a.bounceInRight {
    pointer-events: auto;
}
.social-icons a i {
    font-size: 28px;
    color: #0d0d0d;
}
.social-icons a:hover {
    transform: translateY(-4px);
}
.social-icons a:nth-child(1):hover {
    background-color: #3b5998;
}
/* Facebook */
.social-icons a:nth-child(2):hover {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
.social-icons a:nth-child(3):hover {
    background-color: #ff0000;
}
/* YouTube */
.social-icons a:nth-child(4):hover {
    background-color: #000000;
}
/* TikTok */
.social-icons a:hover i {
    color: #fff;
}
/* Person image on the left inside the hero */

/* Base next-section styling */
.next-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: opacity 0.8s ease-out;
    z-index: 1;
}
.next-section .container h2,
.next-section .container p {
    color: #fff;
}
.next-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}
/* BounceInRight keyframes & helper class */
@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.bounceInRight {
    animation: bounceInRight 1s both;
    opacity: 1 !important;
}
/* ---------------- Section 2: Music Player ---------------- */
.music-player {
    background: url("../images/afbs2.png") no-repeat center center;
    background-size: cover;
    padding: 80px 40px;
    position: relative;
}
.player-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
}
/* 1) Vinyl (linkerkant) */
.vinyl-section {
    margin-right: -20px;
    opacity: 0;
    transform: translateY(50px);
    max-width: 40rem;
}
/* ---- 1) Turntable layering ---- */
.turntable {
    position: relative;
    max-width: 100%;
}
.turntable-base {
    display: block;
    width: 120%;
    height: auto;
}
.turntable-record {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: auto;
    /* transform: translate(-50%, -50%); */
    /* transform-origin: 50% 50%; */
    z-index: 2;
}
/* 1) VinylplaatGG â€overlay blijft full-size */
.vinyl-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    width: 85%;
    z-index: 2;
}
.record-overlay-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    z-index: 4;
    pointer-events: none;
}
/* 2) CDâ€covers maak je kleiner */
.cd-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    width: 32%;
    max-width: 300px;
    z-index: 2;
    transition: opacity 0.3s ease;
}
/* 3) de nieuwe pointer */
.pointer-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3%;
    pointer-events: none;
    z-index: 5;
}
.pointer-overlay img {
    display: block;
    width: 100%;
    height: auto;
}
.turntable-arm {
    position: absolute;
    top: 2%;
    left: 5%;
    width: 112%;
    height: auto;
    z-index: 3;
    transform-origin: 85% 30%;
    transform: rotate(0deg);
    transition: transform 1.5s ease;
}
/* 1) Keyframe voor spinnen */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* 2) Alle lagen die de .spinning class krijgen, draaien */
.cover-spinning,
.vinyl-spinning,
.pointer-spinning {
    animation: spin 4s linear infinite;
}
/* 2) Controls + streaming links */
.controls-section {
    flex: 0 0 600px;
    opacity: 0;
    min-width: 500px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 0% 0% 0% 6%;
}
.controls {
    display: inherit;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}
.controls button {
    background: transparent;
    border: 5px solid #000;
    width: 90px;
    height: 90px;
    cursor: pointer;
    font-size: 2rem;
    transition: background-color 0.2s;
}
.controls button:hover {
    background-color: rgba(174, 1, 1, 0.909);
}
.controls button i {
    font-size: 1.5rem;
    color: #000;
    transition: color 0.2s;
}
.controls button:hover i {
    color: #fff;
}
/* --------------------------------------------- */
/* 5) Stream Links + YouTube-Music (GEUPDATE)    */
/* --------------------------------------------- */

/* ===== 5A) De â€œhuidigeâ€ stream-links-container ===== */
.stream-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
/* Spotify */
.stream-links .spotify {
    font-size: 3rem;
    color: #111;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
}
.stream-links .spotify:hover {
    color: #1db954;
    transform: scale(1.1);
}
/* ===== 5B) YouTube Music (middenâ€kolom) ===== */
.stream-links .youtube-music {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem !important;
    height: 3rem !important;
    cursor: pointer;
    filter: brightness(0);
    transition: filter 0.2s, transform 0.2s;
}
.stream-links .youtube-music img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.stream-links .youtube-music:hover {
    filter: invert(13%) sepia(98%) saturate(7443%) hue-rotate(358deg)
        brightness(105%) contrast(104%);
    transform: scale(1.1);
}
/* ===== 5C) Cluster: Apple Music + Deezer ===== */
.stream-links .cluster {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* Apple Music */
.stream-links .cluster .apple-music {
    font-size: 3rem;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
}
.stream-links .cluster .apple-music:hover {
    color: #000;
    transform: scale(1.1);
}
/* Deezer */
.stream-links .cluster .deezer {
    font-size: 3rem;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
}
.stream-links .cluster .deezer:hover {
    background: linear-gradient(to right, #f7b500, #e81d63, #754dec, #00b16a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}
/* ===== 5D) Algemeen: pointer-cursor op alle <a class="stream"> ==== */
.stream-links .stream {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 3rem;
    color: #111;
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
}
/* 3) Playlist */
.playlist-section {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1);
    outline: 1px solid transparent;
    flex: 0 0 590px;
    margin-left: 70px;
    opacity: 0;
    height: 570px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #000 rgba(0, 0, 0, 0.1);
}
.playlist {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}
.playlist thead th {
    position: sticky;
    top: 0;
    z-index: 4;
    font-family: "Creato Display", sans-serif;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    background-color: #d9c3a0;
    font-weight: bold;
    padding: 12px;
    text-align: left;
    font-size: 42px;
    box-shadow: inset 0 -1px 0 #000, inset 0 3px 0 #000;
}
.playlist tbody td {
    font-family: "Creato Display", sans-serif;
    border: 3px solid #000;
    text-align: left;
    padding: 8px 12px;
    background-color: transparent;
    font-size: 22px;
}
.playlist tbody tr:first-child td {
    border-top: 6px solid #000;
}
.playlist tbody tr:last-child td {
    border-bottom: 2px solid #000;
}
.playlist td:last-child {
    text-align: center;
}
/* nieuw: hover alleen op rijen in de tbody */
.playlist-section tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}
.playlist-section tr.playing {
    background-color: rgba(0, 0, 0, 0.1);
    font-weight: bold;
}
/* 4) CD Gallery */
.cd-gallery {
    will-change: transform, opacity;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    opacity: 0;
    bottom: 65px;
    left: 50%;
    transform: translateX(0%);
    padding: 0 25px;
    z-index: 10;
    gap: 50px;
    display: flex;
    justify-content: center;
}
.cd-gallery img {
    width: 320px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cd-gallery img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
/* Webkit-browsers (Chrome, Safari, Edge) */
.playlist-section::-webkit-scrollbar {
    width: 8px;
}
.playlist-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.playlist-section::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0);
}
.playlist-section::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}
/* titel boven de controls */
.now-playing {
    font-family: "Creato Display", sans-serif;
    font-size: 26px;
    overflow: hidden;
    text-align: center;
    width: 80%;
    margin-bottom: 30px;
}
.band-name {
    position: relative;
    font-family: "Creato Display", sans-serif;
    margin-top: 28px;
    left: 20%;
    opacity: 0;
    transform: translateX(-50%);
    font-size: 42px;
    font-weight: bold;
    color: #000;
    z-index: 5;
}
#section2 {
    text-align: center;
    height: auto;
    padding-left: 0;
}
.section2-heading {
    font-family: "Panton Black Caps", sans-serif;
    display: inline-block;
    margin-top: 60px;
    transform-origin: center center;
    transform: scale(4);
    opacity: 0;
}
/* Section 3 container */
#section3 {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
    text-align: center;
    height: auto;
}
/* Heading animatie-basis voor Section 3 */
#section3 .section3-heading {
    font-family: "Panton Black Caps", sans-serif;
    display: inline-block;
    color: #000;
    margin-top: 30px;
    transform-origin: center center;
    transform: scale(4);
    opacity: 0;
}
#section3 p {
    margin: 50px auto 0px auto;
    max-width: 80vw;
    font-family: "Creato Display", sans-serif;
    font-size: 26px;
    color: #000;
    line-height: 1.2;
    transform: translateY(50px);
    opacity: 0;
}
:root {
    --flyer-nav-size: clamp(72px, 7vw, 140px);
    --flyer-gap: clamp(1rem, 2vw, 3rem);
    --flyer-side-space: calc(var(--flyer-nav-size) + 1.25rem);
    --flyer-arrow: #000;
    --flyer-arrow-disabled: #a4a4a4;
    --flyer-disabled-opacity: 0.5;
}
/* ===== Flyers: transparante carousel ===== */
.flyer-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding-inline: var(--flyer-side-space);
    padding-block: 0.25rem;
    border-radius: 26px;
    max-width: 80vw;
    width: 90%;
    margin: 30px auto 0;
    position: relative;
    z-index: 5;
    transform: translateX(300px);
    opacity: 0;
}
/* viewport */
.flyer-frame {
    overflow: hidden;
    flex: 1;
    padding: 0.5rem 0;
    min-width: 0;
}
/* track */
.flyer-gallery {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: var(--flyer-gap);
    transition: transform 0.4s ease;
    will-change: transform;
    transform: translateZ(0);
}
/* === Elke kaart (image of video) === */
.flyer-gallery a {
    box-sizing: border-box;
    flex: 0 0 calc((100% - (2 * var(--flyer-gap)) - 0.5px) / 3);
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    opacity: 0.95;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
    aspect-ratio: 9 / 16;
    box-shadow: none;
}
.flyer-gallery a:hover {
    border-color: #000;
    opacity: 1;
    transform: translateY(-6px);
    box-shadow: none;
}
/* Media binnen kaarten */
.flyer-gallery img,
.flyer-gallery video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}
.flyer-gallery video:fullscreen {
    object-fit: contain !important;
}
/* Video wrapper */
.flyer-9x16 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: none;
}
/* ===== Poster/video layering (poster altijd boven video) ===== */
.flyer-poster,
.flyer-video,
.flyer-play-btn {
    position: absolute;
    inset: 0;
}
/* Poster staat bovenaan tot er gespeeld wordt */
.flyer-poster {
    z-index: 2;
    opacity: 1;
    transition: opacity 0.2s;
    will-change: opacity;
}
/* Video eronder; geen events tot play */
.flyer.is-video.local .flyer-video {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
/* Spelen: video tonen, poster verbergen */
.flyer.is-video.local.is-playing .flyer-video {
    opacity: 1;
    pointer-events: auto;
}
.flyer.is-video.local.is-playing .flyer-poster {
    opacity: 0;
    pointer-events: none;
}
/* Terwijl gepauzeerd maar laatste frame zichtbaar moet blijven */
.flyer.is-video.local.show-video .flyer-video {
    opacity: 1;
    pointer-events: auto;
}
.flyer.is-video.local.show-video .flyer-poster {
    opacity: 0;
}
/* ===== Play overlay ===== */
.flyer-play-btn {
    z-index: 3;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.flyer-play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 42px solid #fff;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    transform: translateX(4px);
}
.flyer-play-btn:hover {
    background: rgba(0, 0, 0, 0.45);
}
.flyer-play-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}
.flyer.is-video.local.is-playing .flyer-play-btn {
    opacity: 0;
    pointer-events: none;
}
/* ===== Nav knoppen ===== */
.flyer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--flyer-nav-size);
    height: var(--flyer-nav-size);
    background: transparent;
    border-radius: 9999px;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    z-index: 6;
    user-select: none;
    box-shadow: none;
}
.flyer-nav.prev {
    left: 5px;
}
.flyer-nav.next {
    right: 5px;
}
.flyer-nav .arrow-icon {
    width: 70%;
    height: 70%;
    fill: var(--flyer-arrow);
}
.flyer-nav.prev .arrow-icon {
    transform: scaleX(-1);
    transform-origin: 50% 50%;
}
.flyer-nav:hover {
    transform: translateY(-50%) scale(1.06);
    border-color: rgba(0, 0, 0, 0.4);
}
.flyer-nav:active {
    transform: translateY(-50%) scale(0.98);
}
.flyer-nav.disabled {
    opacity: var(--flyer-disabled-opacity);
    pointer-events: none;
    transform: translateY(-50%);
    border-color: rgba(0, 0, 0, 0.12);
}
.flyer-nav.disabled .arrow-icon {
    fill: var(--flyer-arrow-disabled);
}
/* ===== Responsive: 2-up / 1-up ===== */
@media (max-width: 992px) {
    .flyer-gallery {
        gap: clamp(1.25rem, 3vw, 2rem);
        width: 100%;
    }
    .flyer-gallery a {
        flex: 0 0 calc((100% - var(--flyer-gap) - 0.5px) / 2);
    }
}
@media (max-width: 520px) {
    .flyer-gallery a {
        flex: 0 0 100%;
    }
}
/* 1) De hele Section 4 krijgt de donkergrijze achtergrond */
#section4 {
    background: #1f1e1e;
    margin: 0;
    height: auto;
}
/* 2) Container neemt alleen de inhoudsbreedte, geen eigen achtergrond meer */
#section4 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10% 0;
}
/* Heading animatie-basis voor Section 4 */
#section4 .section4-heading {
    font-family: "Panton Black Caps", sans-serif;
    display: inline-block;
    color: #fff;
    margin-bottom: 7vh;
    transform-origin: center center;
    transform: scale(4);
    opacity: 0;
    font-size: 1rem;
}
/* ============ Video Modal ============ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.video-modal.open {
    display: flex;
}
/* responsive video wrapper */
.video-wrapper {
    position: relative;
    width: 70vw;
    max-width: 2000px;
    aspect-ratio: 16/9;
    transform: scale(0.5);
    opacity: 0;
    transform-origin: center center;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
/* sluit-knop */
.video-close {
    position: absolute;
    top: 1.5rem;
    right: 4.5rem;
    font-size: 3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
/* thumbnail styling */
.video-thumb {
    display: inline-block;
    position: relative;
    width: auto;
    line-height: 0;
    transform-origin: center center;
    transform: scale(0.3);
    cursor: default;
    opacity: 0;
}
.video-thumb .video-title {
    font-family: "Creato Display", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.3;
    pointer-events: none;
}
.video-thumb img {
    display: block;
    height: 600px;
    border-radius: 8px;
    margin-left: -200px;
    cursor: pointer;
}
.video-thumb .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpolygon points='70,55 70,145 145,100' fill='%23fff'/%3E%3C/svg%3E")
        center center no-repeat;
    background-size: 50px 50px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: background 0.2s;
    cursor: pointer;
}
.video-thumb:hover .play-button {
    background-color: rgba(0, 0, 0, 0.5);
}
/* ===== Video Carousel ===== */
.video-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    background: #000000;
    padding: 0.5rem 1rem;
    border-radius: 26px;
    max-width: 1300px;
    width: 90%;
    transform: translateX(200px);
    opacity: 0;
}
.carousel-nav {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    font-size: 45px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
}
.carousel-nav.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.carousel-nav:hover {
    background: rgba(162, 0, 11, 0.8);
}
.carousel-nav.prev {
    margin-right: 0.5rem;
}
.carousel-nav.next {
    margin-left: 0.5rem;
}
/* â€œRaamâ€ voor de 3 thumbnails */
.video-list-frame {
    overflow: hidden;
    padding: 2rem 0;
    flex: 1;
}
/* Flex-lijst met precies 3 items in beeld */
.video-list {
    display: flex;
    gap: 0.75rem;
    transition: transform 0.4s ease;
    align-items: flex-start;
}
/* Iedere thumbnail neemt 1/3 van de frame-breedte */
.video-list .video-thumb {
    flex: 0 0 calc((100% - 1.5rem) / 3);
    height: 100%;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.8;
    transition: border-color 0.2s, opacity 0.2s;
    position: relative;
}
/* Responsive: Show only 2 thumbs on small screens */
@media (max-width: 768px) {
    .video-carousel {
        padding: 0.5rem 0.75rem;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 30px;
    }
}
/* Extra small screens - show only 1 thumb at a time */
@media (max-width: 480px) {
    .video-list .video-thumb {
        flex: 0 0 calc(100% - 0.5rem);
    }

    .video-carousel {
        padding: 0.5rem 0.5rem;
    }
}
/* Zorg dat de plaatjes netjes passen */
.video-list .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.video-list .video-thumb:hover img {
    transform: scale(1.05);
}
.section4-custom-title {
    font-family: "Creato Display", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    max-width: 800px;
    width: 90%;
    line-height: 1.3;
    margin: 50px 0 2rem;
    transform: translateY(200px);
    opacity: 0;
}
/* ================================
   Section 5: Boek ons
   ================================ */
.next-section.section5 {
    height: auto;
    padding-bottom: 8rem;
}
/* Section-container */
#section5 {
    background-color: #989898;
    padding: 0rem 1rem 1rem;
    box-sizing: border-box;
}
/* Heading */
.section5-heading {
    font-family: "Panton Black Caps", sans-serif;
    font-size: 6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #000 !important;
}
/* Intro-tekst */
#section5 p {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 2rem;
    font-family: "Creato Display", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000000;
}
#section5 h2 {
    margin: 1.5rem auto 2rem;
    color: #fff;
    text-align: center;
    max-width: fit-content;
}
/* Kleine voetnoot */
#section5 .small {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 5rem;
}
/* Formulier */
.contact-form {
    margin: -2rem auto 0;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    flex-direction: column;
    gap: 2rem;
    font-family: "Creato Display", sans-serif;
}
/* Grid voor dubbele kolommen */
.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 10px;
}
/* Fieldsets */
.contact-form fieldset {
    border: 2px solid #ccc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 0;
}
.contact-form legend {
    font-weight: bold;
    font-size: 1.25rem;
    padding: 0 0.5rem;
    color: #000;
}
/* Labels en inputs */
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.form-control {
    width: -moz-available;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    height: 50px;
    border: 2px solid #000000;
    border-radius: 4px;
    box-sizing: border-box;
    color: black;
    outline: none;
    background-color: white;
    resize: none;
}
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control {
    -webkit-appearance: none;
    appearance: none;
    max-width: 100%;
    height: 50px;
    padding: 0.75rem;
    font-size: 16px; /* Prevent Safari zoom */
    border: 2px solid #000000;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: white;
}

input.form-control,
select.form-control {
    height: 50px;
    width: 100%;
}
textarea.form-control {
    min-height: 100px;
    height: auto;
    width: 100%;
}
.form-control:focus {
    border-color: rgb(0, 0, 0);
    background: solid #ffffff;
    color: black;
}
.phone-link {
    color: inherit !important;
    text-decoration: none !important;
}
.phone-link:hover,
.phone-link:focus .phone-link {
    color: inherit;
    text-decoration: none;
}
.phone-link:hover,
.phone-link:focus

/* Tekstvak onderin */
.contact-form .form-group textarea.form-control {
    min-height: 200px;
    resize: none !important;
}
/* Radio-groepen */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.radio-group label {
    cursor: pointer;
    font-weight: normal;
}
.radio-group input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}
/* Select element met eigen pijltje */
.contact-form select.form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6z'%20fill%3D'%23666'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 10px 6px;
}
/* Submit-knop */
.btn-submit {
    padding: 0.75rem 2rem;
    background-color: #860000;
    color: #fff;
    border: solid black;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s;
}
.submit-div {
    display: flex;
    justify-content: center;
}
.btn-submit:hover {
    background-color: #a60000;
}
/* Succesmelding */
.form_message {
    padding: 1rem 1.25rem;
    background-color: #e6ffed;
    border: 3.5px solid #27ae60;
    color: #000000;
    border-radius: 6px;
    text-align: center;
    max-width: 900px;
    width: calc(100% - 2rem);
    margin: 1rem auto 5.5rem;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}
/* Hamburger knop */
.menu-toggle {
    position: fixed;
    top: 50px;
    right: 200px;
    width: 50px;
    height: 50px;
    z-index: 2001;
    background: none;
    border: none;
    cursor: pointer;
    margin: 1% 0;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}
.menu-icon {
    transform: translateY(-50%);
}
.menu-icon.hidden {
    display: none !important;
    pointer-events: none;
}
.menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
}
.menu-icon::before {
    top: -18px;
}
.menu-icon::after {
    top: 18px;
}
/* Menu paneel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 500px;
    height: 100%; /* instead of min-height:100vh */
    background: #000;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease,
        visibility 0s linear 0.4s;
    z-index: 10005;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    overflow-y: auto; /* allow vertical scrolling */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}
/* Open state */
.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0s;
}
body.menu-open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}
/* Sluit-knop in menu */
.menu-close {
    position: absolute;
    top: 15px;
    right: 40px;
    font-size: 5.5rem;
    color: #fff;
    background: none;
    border: none;
}
/* Menu items */
.menu-list {
    list-style: none;
    list-style: none;
    padding: 6rem 1rem; /* give breathing room */
    margin: 0;
    width: 100%;
    width: -webkit-fill-available;
}
.menu-list li {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}
.menu-list li a {
    color: #fff;
    text-decoration: none;
    font-family: "Panton Black Caps", sans-serif;
    font-size: 2.8rem;
    transition: color 0.2s;
}
.menu-list li a:hover {
    color: #a2000b;
}
.menu-icon.black,
.menu-toggle.black .menu-icon,
.menu-toggle.black .menu-icon::before,
.menu-toggle.black .menu-icon::after {
    background-color: #000 !important;
}
.section6 {
    display: flex;
    flex-direction: column;
}
.section6-top {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 40vh;
    max-height: 70vh;
}
.section6-top img {
    max-width: 50vw;
    max-height: -webkit-fill-available;
    object-fit: contain;
}
.footer {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    min-height: 8rem;
}
.footer p {
    color: #fff;
    font-family: "Creato Display", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
.footer a:hover {
    color: #a2000b;
}
.social-icons-hor {
    padding: 1%;
}
/* jouw bestaande formaat houden */
.social-icons-hor a {
    font-size: 25px;
    padding: 6px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, background 0.2s ease,
        -webkit-text-fill-color 0.2s ease;
    -webkit-text-fill-color: currentColor;
}
/* Hover/focus kleuren per platform (volgorde: FB, IG, YT, TikTok) */
.social-icons-hor a:nth-child(1):hover,
.social-icons-hor a:nth-child(1):focus-visible {
    color: #1877f2;
}
.social-icons-hor a:nth-child(2):hover,
.social-icons-hor a:nth-child(2):focus-visible {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.social-icons-hor a:nth-child(3):hover,
.social-icons-hor a:nth-child(3):focus-visible {
    color: #ff0000;
}
/* TikTok hover: dual-tone offsets */
.social-icons-hor a:nth-child(4):hover,
.social-icons-hor a:nth-child(4):focus-visible {
    color: #fff;
    text-shadow: -0.08em 0.08em 0 #25f4ee, -0.12em 0.12em 0 #25f4ee,
        0.08em -0.08em 0 #fe2c55, 0.12em -0.12em 0 #fe2c55;
}
body.menu-open {
    overflow: hidden;
}
.press-kit-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 0 2rem;
    z-index: 2;
    padding: 2%;
}
.btn-press {
    background-color: #860000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-family: "Panton Black Caps", sans-serif;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s;
    border: solid black;
}
.btn-press:hover {
    background-color: #a60000;
    border: 2px solid black;
    transform: translateY(-2px);
}
.person-image img {
    display: block;
    width: initial;
    will-change: transform;
    transform: scaleX(-1) !important;
    transition: transform 0.3s ease-out;
    height: 90%;
}
button#menu-toggle {
    right: 90px;
}
.credit-link {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps the same text color */
}

.credit-link:hover {
  text-decoration: none;   /* still no underline on hover */
  color: #ccc;             /* optional: change color on hover */
}

.footer .credit-link {
  text-decoration: none !important;
  color: inherit;
}

@media (max-width: 1920px) {
    .logo-fixed img {
        height: 10rem !important;
    }
}
@media only screen and (max-width: 1024px) {
    .logo-fixed img {
        height: 8rem !important;
    }
}
@media (max-width: 1440px) {
    .hero-right-wrapper {
        gap: 15px !important;
    }
}

section#home-hero {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
}
.person-image img {
    position: absolute;
    bottom: 0;
    -webkit-filter: drop-shadow(0 0 1px white) drop-shadow(0 0 65px white);
    filter: drop-shadow(0 0 1px white) drop-shadow(0 0 65px white);
}
.person-image {
    width: 60%;
    display: flex;
    justify-content: flex-end;
}
.hero-right-wrapper {
    width: 70%;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding-right: clamp(1px, 29vw, 5rem);
}

.music-icons {
    position: initial;
}
.container.hero-text {
    position: initial;
    max-width: 40rem;
}
.music-icons a {
    width: 7rem;
    height: auto;
}
@media only screen and (max-width: 1600px) {
    .music-icons a {
        padding: 2% 3%;
    }
}
@media only screen and (min-width: 1600px) {
    .container.hero-text {
        max-width: 45rem;
    }
}
.band-name {
    left: initial !important;
    transform: none !important;
}
.video-thumb img {
    width: 100%;
    height: auto;
    margin-left: 0;
}
.video-list .video-thumb img {
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.playlist-section {
    flex: initial;
    margin-left: 0;
    max-width: 32rem;
    max-height: 100%;
    width: 100%;
}
@media (max-width: 1920px) {
    .video-thumb img {
        margin-top: 20px;
    }
}
@media (min-width: 768px) and (max-width: 2000px) {
    /* img.tv-frame {
    width: 35vw;
}
iframe.tv-video {
    width: 25vw;
    height: 18vw;
}
*/

    .music-icons a img {
        width: 12vw;
    }
    .music-icons {
        gap: 2vw;
    }
    .flyer-gallery img {
        width: 100%;
        height: 100%;
    }
    .controls-section {
        flex: initial;
    }
    .vinyl-section {
        flex: initial;
    }
    .player-container {
        transform: scale(0.9);
        height: auto;
    }
    .playlist thead th {
        font-size: 30px;
    }
    section#section4 {
        padding-top: 1rem;
        height: auto;
    }
    .video-thumb img {
        margin-top: 20px;
    }
    div#video-thumb {
        margin-top: 25px;
    }
    .section4-custom-title {
        margin: 20px 0px 0px 0;
        font-size: 28px;
    }
    .video-carousel {
        width: 80%;
    }
    .video-thumb .video-title {
        margin-top: 10px;
        font-size: 15px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1920px) {
    .controls-section {
        flex: initial;
        padding: 0% 0px 0% 6%;
    }
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 32px;
    }
    .hero-text p {
        font-size: 1.2rem;
        line-height: 26px;
    }
}

@media only screen and (max-width: 1024px) {
    .controls-section {
        flex: initial;
        padding: 0% 0px 0% 1%;
    }
    .video-list .video-thumb {
        flex: 0 0 calc((100% - 0.75rem) / 2);
    }
    .flyer-gallery a {
        flex: 0 0 calc((100% - (2 * var(--flyer-gap)) - 0.5px) / 2);
    }
}
@media (max-width: 520px) {
    .flyer-gallery {
        gap: 1rem;
        width: 100%;
    }
    .flyer-gallery a {
        flex: 0 0 100%;
    }
    :root {
        --flyer-nav-size: 50px;
    }
}
@media only screen and (max-width: 1000px) {
    .hero-right-wrapper {
        padding-right: clamp(1px, 29vw, 2rem);
    }
}
@media (max-width: 1600px) and (min-width: 768px) {
    .music-icons {
        gap: 0;
        top: 541px;
        left: 45vw;
    }
    .cd-gallery {
        bottom: 20px;
    }
    .hero-text {
        width: -webkit-fill-available;
        top: 684px;
        left: 47%;
    }
    .cd-gallery img {
        width: 260px;
    }
    .cd-gallery {
        gap: 50px;
    }
    .video-thumb img {
        width: 70vw;
        height: auto;
        margin-left: auto;
    }
    .player-container {
        max-width: 100vw;
    }
    .turntable {
        position: relative;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .controls-section {
        min-width: initial;
    }
    .music-icons {
        left: 32vw;
    }
    .cd-gallery img {
        width: 25vw;
    }
    section#section2 {
        height: auto;
    }
    .turntable {
        width: 80%;
    }
    .controls-section {
        transform: scale(0.8) !important;
        margin-left: 0;
    }
    .now-playing {
        overflow-wrap: break-word;
        white-space: pre-wrap;
    }
    .player-container {
        transform: scale(0.9);
    }
    .playlist-section {
        height: auto;
        margin-left: auto;
    }

    .music-icons a {
        padding: 1% 2%;
    }
    .hero-right-wrapper {
        gap: 10px;
    }
    .music-icons a img {
        width: 9lvw;
    }
    .tv-container {
        width: 85%;
    }
}
/* Portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .curtain-panel {
        background-size: 90vw 100vh;
    }

    button#menu-toggle {
        right: 50px;
    }

    .logo-fixed {
        left: 30px;
    }

    .person-image img {
        height: 80%;
    }

    .container.hero-text {
        top: 460px;
        left: 40vw;
    }

    .music-icons {
        left: 36vw;
        top: 394px;
    }

    .music-icons a {
        width: auto;
        height: auto;
    }
    .hero-text h1 {
        margin: 0;
        line-height: 1.2;
        font-size: 1.5rem;
    }
    .flyer-carousel {
        width: 75%;
    }
    .hero-text h1 {
        line-height: 1.2;
        font-size: 1.2rem;
    }
}
/* Landscape */
@media screen and (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
    .music-icons {
        gap: 0;
    }
    .person-image img {
        max-height: 80%;
    }

    .music-icons > img {
        height: 10px;
    }

    .music-icons a {
        width: 10vw;
    }

    .music-icons.visible {
        width: -webkit-fill-available;
    }
    .music-icons a img {
        width: 10vw;
        padding: 0px;
    }

    .tv-container {
        width: 75%;
    }
    .cd-gallery {
        transform: initial !important;
        gap: 20px;
        left: 10%;
        bottom: 26px;
    }

    .hero-right-wrapper {
        gap: 15px !important;
        display: flex;
        width: 100%;
        padding: 0px 10px !important;
    }

    .menu-toggle {
        margin: 0;
    }

    .logo-fixed img {
        height: 6rem !important;
    }

    .menu-icon::before {
        top: -13px !important;
    }
    .menu-icon::after {
        top: 13px !important;
    }

    .menu-toggle {
        width: 40px;
    }

    button#menu-toggle {
        top: 30px;
        right: 50px;
    }

    #home-hero {
        padding-top: 4%;
    }
    section#home-hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }

    .social-icons {
        display: none;
    }

    .menu-list {
        padding: 4rem 1rem 1rem;
    }
    .menu-list li a {
        font-size: 20px;
    }

    .mobile-menu {
        width: 40vw;
    }

    .menu-list li {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .hero-text h1 {
        line-height: 1.2;
        font-size: 1.2rem;
    }
    .container.hero-text {
        text-wrap-style: balance;
    }

    section#section2 {
        padding-left: 0;
    }

    .section2-heading {
        margin: 0px;
    }

    .player-container {
        flex-direction: column;
        justify-content: space-between;
    }

    h2.section5-heading {
        font-size: 3rem;
    }

    .playlist-section {
        display: none;
    }

    .turntable {
        width: 40vw;
    }

    .controls-section {
        flex: 0;
        transform: scale(0.8) !important;
        margin-top: -65px;
    }

    .vinyl-section {
        flex: 0;
        margin-left: -40px !important;
        margin-right: 0px !important;
    }

    .player-container {
        max-width: 70%;
    }

    section#section3 {
        height: auto;
    }

    .video-thumb img {
        width: 84%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .cd-gallery img {
        width: 22lvw;
    }

    .flyer-nav {
        height: 50px;
        width: 50px;
        margin: 0 10px;
    }

    .flyer-carousel {
        max-width: 70vw;
    }

    .video-thumb .video-title {
        font-size: 1rem;
    }
    strong {
        font-weight: 900;
        -webkit-font-smoothing: none;
        -moz-osx-font-smoothing: auto;
    }
    .menu-close {
        font-size: 70px;
    }

    .menu-close {
        top: 0px;
        right: 25px;
        font-size: 65px;
    }
}
@media only screen and (max-width: 860px) and (min-height: 450px) {
    .logo-fixed {
        padding: 3%;
    }

    .menu-toggle {
        margin: 0;
    }
    .vinyl-section {
        margin-right: 0px;
    }
    #section4 .container {
        padding: 15% 0;
    }
    .video-thumb .video-title {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) and (min-height: 450px) {
    .section6-top img {
        max-width: 100vw;
    }
    .btn-press {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .logo-fixed {
        left: 0px;
    }
    .logo-fixed img {
        height: 100px !important;
    }
    button#menu-toggle {
        right: 20px;
        top: 40px;
    }
    ul.menu-list {
        margin: 20px;
    }
    .menu-list li a {
        font-size: 25px;
    }
    .person-image {
        display: none;
    }
    .hero-right-wrapper {
        padding: 0 clamp(1rem, 3vw, 2rem);
    }
    .hero-right-wrapper {
        width: 100%;
        gap: 20px;
    }
    .tv-container {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        left: 0;
        top: 0;
    }
    /* img.tv-frame {
    width: 320px;
}
*/

    .social-icons {
        display: none;
    }
    .hero-text {
        position: initial;
        width: -webkit-fill-available;
        margin-left: auto;
        margin-right: auto;
    }
    .music-icons {
        position: initial;
    }
    .music-icons a {
        height: 24px;
        padding: 0;
    }
    /* .menu-list li {
    margin: 0.5rem 0;
}
*/

    section#section2 {
        padding-left: 0;
    }
    h2.section5-heading {
        font-size: 3rem;
    }
    .playlist-section {
        display: none;
    }
    .turntable {
        width: 40vw;
    }
    .controls-section {
        flex: 0;
        transform: scale(0.8) !important;
        margin-top: -65px;
    }
    .vinyl-section {
        flex: 0;
        margin-left: -40px;
    }
    section#section3 {
        height: auto;
    }
    .video-thumb img {
        width: 90%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .player-container {
        flex-direction: column;
        height: initial;
    }
    .cd-gallery {
        position: initial;
        gap: 5px;
        transform: initial !important;
    }
    .cd-gallery img {
        width: 7.5rem;
        height: auto;
    }
    .flyer-gallery img {
        width: 100%;
        margin-bottom: 1rem;
    }
    .flyer-gallery {
        padding: 0;
    }
    .band-name {
        transform: initial !important;
        text-align: center;
        width: 100%;
        left: 0;
    }
    .flyer-carousel {
        max-width: fit-content;
    }
    .section4-heading {
        width: 100vw;
        text-align: center;
        min-height: 30px;
        margin-bottom: 1vh !important;
    }
    .video-list .video-thumb {
        flex: 0 0 calc((100% - 0.75rem) / 1);
    }
}
/* Portrait */
@media screen and (min-width: 760px) and (max-width: 1024px) and (min-height: 1020px) and (max-height: 1370px) {
    .menu-list li a {
        font-size: 2rem;
    }

    ul.menu-list {
        margin-top: 20%;
    }

    .player-container {
        flex-direction: column;
        margin-top: 0;
    }

    .playlist-section {
        text-align: center;
        margin: 0 auto;
        padding: 40px 0px;
        transform: scale(1) !important;
    }

    .cd-gallery {
        gap: 10px;
        left: 5%;
    }

    .controls-section {
        margin-top: -65px;
    }

    .flyer-carousel {
        max-width: 70vw;
    }

    .video-thumb img {
        max-width: 70vw;
    }
}
@media (max-width: 390px) {
    button#menu-toggle {
        right: 20px;
        top: 40px;
    }
    .hero-text h1 {
        font-size: 19px;
    }
    .hero-text p {
        font-size: 12px;
        line-height: 16px;
    }
    .music-icons {
        display: flex;
        max-width: 90%;
        margin: 0 auto;
        border-radius: 5px;
        gap: 0;
    }
    .music-icons a {
        height: 16px;
        padding: 5px;
    }
    div#video-thumb {
        margin-top: 25px;
    }
    .video-title {
        font-size: 14px !important;
    }
    h2.section5-heading {
        font-size: 3rem;
    }
    .cd-gallery img {
        width: 35% !important;
    }
    strong {
        font-weight: 900;
        -webkit-font-smoothing: none;
        -moz-osx-font-smoothing: auto;
    }
}
@media only screen and (min-width: 1920px) {
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 46px;
    }
    .hero-text p {
        font-size: 2rem;
        line-height: 36px;
    }
    .container.hero-text {
        max-width: 80%;
    }
    .music-icons a {
        width: 10rem;
    }
    .social-icons a {
        width: 55px;
        height: 55px;
    }
}
@media only screen and (max-width: 550px) {
    .hero-right-wrapper {
        gap: 10px;
        padding: 8em 1em;
    }
    .contact-form .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        margin-top: 10px;
    }
    .contact-form fieldset {
        padding: 0.5rem;
    }
    .radio-group {
        gap: 0.5rem;
    }
    h2.section5-heading {
        text-wrap-mode: nowrap;
    }
    #section5 p {
        font-size: 1.1rem;
        line-height: 1;
    }
    .video-list-frame {
        padding: 1rem 0;
    }
    #section3 p {
        margin: 20px auto 0px auto;
        font-size: 22px;
    }
    .music-player {
        padding: 27px 40px;
    }
    .section2-heading {
        margin-top: 20px;
    }
    .controls button {
        width: 80px;
        height: 80px;
    }
    .next-section .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hero-text h1 {
        line-height: 1;
        font-size: 16px;
    }
    .hero-text p {
        line-height: 1;
        font-size: 14px;
    }
    #section3 p {
        font-size: 22px;
        width: 80vw;
    }

    .music-icons.visible {
        margin: 5px 0;
    }
    .tv-container {
        margin-top: 0px;
        width: 100%;
    }
    .menu-icon::before {
        top: -13px !important;
    }
    .menu-icon::after {
        top: 13px !important;
    }
    .menu-toggle {
        width: 40px;
    }
    button#menu-toggle {
        top: 30px;
    }
    strong {
        font-weight: 900;
        -webkit-font-smoothing: none;
        -moz-osx-font-smoothing: auto;
    }
    .video-thumb img {
        max-width: 90vw;
    }
    .menu-list {
        padding: 4rem 1rem 1rem;
    }
}
