/* --- Page background --- */
.page-bg {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* --- Banner styling --- */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: transparent;
    color: white;
    position: relative;
    z-index: 10;
}

/* Desktop links */
.links {
    display: flex;
    gap: 30px;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    z-index: 11;
}

.hamburger div {
    height: 4px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
}

/* --- Mobile styles --- */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .title {
        font-family: 'DIN-Light-Regular', sans-serif;
        font-size: 24px;
        font-weight: bold;
        color: white;
        text-decoration: none;
        text-shadow:
        -1px -1px 0 #262d49,
         1px -1px 0 #262d49,
        -1px  1px 0 #262d49,
         1px  1px 0 #262d49,
         0px  0px 2px #262d49;
    }

    .links {
        position: absolute;
        top: 70px;
        right: 0;
        left: auto;
        flex-direction: column;
        background: rgba(38, 45, 73, 0.9);
        padding: 0 15px;
        border-radius: 8px;
        gap: 10px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        z-index: 20;
        min-width: 150px;
        text-align: center;
    }

    .links a {
        font-family: 'DIN-Light-Regular', sans-serif;
        padding: 10px 0;
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

    .links.active {
        max-height: 500px;
        opacity: 1;
        padding: 10px 15px;
    }

    .shows-list li {
        font-size: 0.9rem;
        line-height: 1.3;
        color: #262d49
    }

    body .footer {
        font-size: 12px; /* smaller text on mobile */
        padding: 30px 15px;
        gap: 10px;
    }

    body .footer a {
        font-size: 14px; /* smaller links on mobile */
    }

    body .footer-email {
        font-size: 14px;
    }

    body .footer-nav {
        gap: 20px; /* spacing between OVER MUZIEK SHOWS MERCH on mobile */
    }
}

/* --- Desktop styles --- */
@media screen and (min-width: 769px) {
    .title {
        font-family: 'DIN-Light-Regular', sans-serif;
        padding-top: 20px; 
        padding-left: 40px; 
        letter-spacing: 8px;
        font-size: 60px;
        color: white;
              font-weight: 600;
        text-decoration: none;
        text-shadow:
        -3px -3px 0 #262d49,
         3px -3px 0 #262d49,
        -3px  3px 0 #262d49,
         3px  3px 0 #262d49,
         0px  0px 0px #262d49;
        display: inline-block;
        transform: scaleY(1.2);
    }

    .links a {
        font-family: 'DIN-Light-Regular', sans-serif;
        letter-spacing: 1px;
        font-size: 40px;
        font-weight: 400;
        padding-right: 20px;
        text-shadow:
        -2px -2px 0 #262d49,
         2px -2px 0 #262d49,
        -2px  2px 0 #262d49,
         2px  2px 0 #262d49,
         0px  0px 8px #262d49;
    }

    .content {
        font-size: 48px;
        font-family: 'DIN-Light-Regular', sans-serif;
    }

    .content-block, 
    .shows-list li {
        font-family: 'DIN-Light-Regular', sans-serif;
        color: #262d49;
    }

    .content-block h1 {
        font-family: 'Druk-Medium-Trial', sans-serif;
    }

    body .footer {
        font-family: 'DIN-Light-Regular', sans-serif;
        font-size: 20px; /* desktop font */
    }

    body .footer a {
        font-family: 'DIN-Light-Regular', sans-serif;
        font-size: 18px;
    }

    body .footer-nav {
        gap: 50px; /* spacing between OVER MUZIEK SHOWS MERCH on desktop */
    }
}

/* --- Page content --- */
.content {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Druk-Medium', sans-serif;
}

.page-bg-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    object-position: top;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

/* ========== CONTENT WRAPPER ========== */
/* ========== CONTENT WRAPPER SLIDE-IN ========== */
.content-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: -200px auto 80px auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;

    /* initial offscreen right with tilt */
    transform: rotate(-5deg) translateX(120vw); /* completely offscreen */
    transition: transform 0.6s ease; /* smooth slide */
}

/* Triggered when page loads */
.content-wrapper.slide-in {
    transform: rotate(-5deg) translateX(0); /* slide into place */
}
.content-block {
    background: #f5ec6d;
    padding: 0px 10px 40px 40px;
    border-radius: 0;
    box-shadow: 10px 15px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    line-height: 1.6;
    transform: rotate(-2deg);
}

.content-block h1 {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Druk-Medium-Trial', sans-serif;
    color: #262d49;
    letter-spacing: 4px;
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Druk-Medium-Trial', sans-serif;
    color: #eab6ba
    letter-spacing: 2px;
}



@media (max-width: 768px) {
    .content-block {
        padding: 20px;
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .content-block h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
}

/* --- SHOW OVERLAY --- */
#showOverlay {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
    transform: translateX(-100%) rotate(5deg);
    transition: transform 0.8s ease;
}

#showOverlay.slide-in {
    transform: translateX(0) rotate(5deg);
}

#showOverlay img {
    max-width: 35%;
    max-height: 35%;
    object-fit: contain;
    border: 8px solid white;
    border-radius: 0px;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
    margin-top: 1%;
    margin-right: 30%;
}

@media screen and (max-width: 768px) {
    #showOverlay img {
        max-width: 50%;
        max-height: 50%;
        margin-top: 5%;
    }
}

/* --- Fonts --- */
@font-face {
    font-family: 'Druk-Medium-Trial';
    src: url('fonts/Druk-Medium-Trial.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Druk-Medium';
    src: url('fonts/Druk-Medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DIN-Light-Regular';
    src: url('fonts/DIN-Light-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --- Shows list --- */
.shows-list {
    font-family: 'Druk-Medium', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.shows-list li {
    margin-bottom: 12px;
}


/* Past shows styling */
.past-gig {
    text-decoration: line-through;
    color: rgba(38, 45, 73, 0.6);
    font-family: 'Druk-Medium', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .past-gig {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* ========== FOOTER ========== */
body .footer {
    background-color: #262d49;
    color: white;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: 'DIN-Light-Regular', sans-serif;
    font-size: 18px;
    z-index: 10;
}

body .footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

body .footer a:hover {
    color: #f5ec6d;
}

body .footer-nav,
body .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* spacing between links */
    margin: 0;
    padding: 0;
}

/* Mobile adjustments for footer spacing and font */
@media screen and (max-width: 768px) {
    body .footer {
        font-size: 12px;
        padding: 30px 15px;
        gap: 10px;
    }

    body .footer a {
        font-size: 14px;
    }

    body .footer-nav {
        gap: 20px; /* smaller spacing on mobile */
    }
}

/* Large desktop */
@media screen and (min-width: 1200px) {
    body .footer {
        font-size: 30px;
    }

    body .footer a {
        font-size: 40px;
    }
}



/* Straighten shows page (no tilt) */
.shows-page {
    transform: translateX(100vw) !important; /* keep slide-in from right but no rotation */
}

.shows-page.slide-in {
    transform: translateX(0) !important; /* slide in straight */
}


/* strongest reasonable selector + fallback */
.content-wrapper.shows-page .content-block h2 {
  color: #262d49 !important; /* change hex to the color you want */
}

@media screen and (min-width: 769px) {
    /* Keep yellow block large */
    .content-block {
        padding: 60px 40px;   /* top/bottom space */
        max-width: 900px;     /* yellow block width */
        margin: 0 auto;       /* center block */
    }

}


/* Streaming links container */
.streaming-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;  /* center horizontally */
    gap: 30px;                /* spacing between logos */
}

.streaming-links a img {
    width: 40px;     /* smaller than before */
    height: auto;
    transition: transform 0.2s ease;
}

.streaming-links a img:hover {
    transform: scale(1.1);
}

/* Footer streaming logos */
.footer-streaming {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px; /* space between logos */
}

.footer-streaming a img {
    width: 35px;      /* adjust size */
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.footer-streaming a img:hover {
    transform: scale(1.1);
}

/* --- Merch Overlays --- */
/* --- Merch Overlays --- */
.showOverlay {
    position: absolute;
    top: 15%; /* lower down the page */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px; /* space between the two overlays */
    width: 100%;
    z-index: 5;
    transform: translateX(0) rotate(0deg); /* remove offscreen */
    transition: transform 0.8s ease;
}

.showOverlay img {
    max-width: 20%;  /* smaller images */
    height: auto;
    object-fit: contain;
    border: 8px solid white;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
}

/* Slide-in animation */
.showOverlay.slide-in {
    transform: translateX(0); /* slides in from left/right */
}

/* Specific positioning for left/right overlays */
#showOverlayLeft {
    justify-content: flex-start; /* left side */
    padding-left: 10%; /* reduced to move closer */
}

#showOverlayRight {
    justify-content: flex-start; /* right side */
    padding-left: 50%; /* reduced to move closer */
}


@media screen and (max-width: 768px) {
    .showOverlay img {
        max-width: 35%; /* smaller on mobile */
    }
}

/* --- Straighten and position yellow block on game page --- */
.content-wrapper.game-page {
    transform: translateX(0) !important; /* remove tilt and slide rotation */
    display: flex;
    flex-direction: column;
    align-items: flex-end;               /* push yellow block slightly to the right */
    padding-top: 40px;                   /* move content down slightly */
}

.content-wrapper.game-page.slide-in {
    transform: translateX(0) !important; /* slide in straight */
}

/* --- Yellow content block --- */
.content-wrapper.game-page .content-block {
    transform: none !important;          /* remove tilt */
    display: flex;
    flex-direction: column;
    align-items: center;                 /* center content horizontally inside block */
    text-align: center;

    /* Size and position */
    width: 680;                        /* smaller yellow block */
    padding: 10px;                       /* compact padding */
    margin-top: -170px;                    /* move slightly up */
    margin-right: 80px;                   /* shift to the right */
    background: #f5ec6d;                 /* yellow background */
    box-shadow: 6px 8px 4px rgba(0,0,0,0.4);
    border-radius: 6px;
    box-sizing: border-box;
}

/* --- Game section styling --- */
.game-section {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering inside section */
    width: 100%;
    padding: 5px 0;
}

/* --- Game wrapper styling --- */
.game-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 10px;
    border-radius: 8px;
}

/* --- Responsive adjustments --- */
@media screen and (max-width: 768px) {
    .content-wrapper.game-page {
        align-items: center;  /* yellow block centered on small screens */
        padding-top: 20px;
    }

    .content-wrapper.game-page .content-block {
        width: 100%;          /* smaller on mobile */
        margin-top: 0;
        margin-right: 0;     /* centered */
        padding: 5px;
    }

    .game-wrapper canvas {
        width: 100%;          /* scale canvas down */
        height: auto;
    }
}

/* ==========================
   ZINE PAGE PDF.JS STYLING
   ========================== */

/* ==========================
   ZINE PAGE PDF.JS STYLING
   ========================== */

.content-wrapper.zine-page {
    transform: translateX(120vw) !important;
}

.content-wrapper.zine-page.slide-in {
    transform: translateX(0) !important;
}

.content-wrapper.zine-page .content-block {
    transform: none !important;
}

/* PDF wrapper fits inside content wrapper */
.content-wrapper.zine-page .pdf-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 20px auto;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 0 10px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .content-wrapper.zine-page .pdf-wrapper {
        max-width: 100%;
        padding: 0 5px;
        max-height: 70vh; /* scrollable area */
    }
}

