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

/* =========================
   BODY + BACKGROUND
========================= */
body{
    font-family:Arial;
    color:white;
    overflow-x:hidden;

    background:
    radial-gradient(circle at center, rgba(244,197,66,0.08), transparent 60%),
    url("images/bg.jpg") center/cover no-repeat,
    #0b0b0b;

    background-attachment: fixed;

    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
}

/* PARALLAX EXTRA */
.parallax-layer{
    position:fixed;
    width:100%;
    height:100%;
    background:url("images/bg-strip.jpg") center/cover no-repeat;
    z-index:-1;
    opacity:0.35;
}


/* =========================
   INTRO
========================= */
.intro{
    position:fixed;
    width:100%;
    height:100%;
    background:black;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-family:'Bangers';
    z-index:999;
    cursor:pointer;
}

.intro h1{
    font-size:80px;
    color:#f4c542;
}

/* =========================
   CINEMATIC INTRO
========================= */
.cinematic-intro{
    position:fixed;
    width:100%;
    height:100%;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    text-align:center;
    cursor:pointer;
}

.intro-content{
    animation: fadeIn 1.5s ease;
}

.intro-title{
    font-family:'Bangers';
    font-size:80px;
    color:#f4c542;
    opacity:0;
    animation: titleReveal 1.5s forwards;
}

.intro-sub{
    margin-top:15px;
    opacity:0;
    animation: fadeIn 1.5s forwards;
}

.delay{
    animation-delay:1s;
}

.intro-start{
    margin-top:40px;
    font-size:14px;
    opacity:0.7;
}

/* ANIMATIONS */
@keyframes titleReveal{
    from{opacity:0; transform:scale(1.2);}
    to{opacity:1; transform:scale(1);}
}

@keyframes fadeIn{
    to{opacity:1;}
}

.fade-out{
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut{
    to{opacity:0; visibility:hidden;}
}

/* =========================
   HEADER
========================= */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}

/* CENTER TITLE */
.center-title{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-family:'Bangers';
    font-size:50px;
    color:#f4c542;
}

/* LOGO */
.logo{
    height:80px;
    cursor:pointer;
}

.logo-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.95);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* NAV */
nav a{
    margin-left:20px;
    color:white;
    text-shadow:1px 1px 3px black;
    text-decoration:none;
}

/* =========================
   HERO
========================= */
.hero{
    height:350px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* COMIC TITLE */
.comic-title{
    display:inline-block;
    padding:12px 25px;
    background:#f4c542;
    color:black;

    font-family:'Bangers';
    font-size:38px;

    border:4px solid black;
    border-radius:8px;
    box-shadow:4px 4px 0px black;

    transform:rotate(-2deg);
    margin-bottom:25px;
}

/* =========================
   BUTTONS
========================= */
button{
    padding:10px 20px;
    background:#f4c542;
    border:none;
    cursor:pointer;
}

button:hover{
    box-shadow:0 0 15px rgba(244,197,66,0.7);
}

/* START BUTTON */
.start-btn{
    margin-top:15px;
    margin-bottom:20px;
    padding:12px 25px;
    font-size:16px;
    background:#f4c542;
    box-shadow:3px 3px 0 black;
}

.start-btn:hover{
    transform:scale(1.05);
}

/* =========================
   CONTENT
========================= */
.container{
    padding:40px;
    max-width:900px;
    margin:auto;
}

.container p{
    margin-bottom:20px;
    line-height:1.8;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;

    background: rgba(0,0,0,0.55);
    padding: 12px 15px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.story{
    max-width:800px;
    margin:auto;
    text-align:center;

    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 12px;
}

.center{
    text-align:center;
}

/* TITELS */
.section-title{
    font-family:'Bangers';
    font-size:40px;
    margin-bottom:20px;
    color:#f4c542;

    text-shadow:
        3px 3px 0 black,
        0 0 10px rgba(0,0,0,0.6);
}

/* HIGHLIGHT */
.highlight{
    color:#f4c542;
}

/* =========================
   FADE IN
========================= */
.fade-in{
    opacity:0;
    transform:translateY(30px);
    transition:0.8s;
}

.fade-in.show{
    opacity:1;
    transform:translateY(0);
}

/* HIDDEN */
.hidden{
    display:none;
}

/* =========================
   STRIPS GRID (Verbeterd)
========================= */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1a1a1a;
    padding: 10px;
    border: 1px solid #333;
}

.card{
    cursor:pointer;
    overflow:hidden;
    border-radius:12px;
    border: 2px solid transparent;
    transition: 0.4s;
}

.card:hover{
    border-color: #f4c542;
    transform: translateY(-10px);
}

.card img{
    width:100%;
    display:block;
    transition:0.4s;
}

.card-label {
    margin-top: 10px;
    font-family: 'Bangers', cursive; /* Hetzelfde font als je titels */
    font-size: 20px;                 /* Iets groter voor betere leesbaarheid */
    color: #f4c542;                  /* De goudgele kleur van je site */
    text-align: center;              /* Centrering */
    text-shadow: 1px 1px 2px black;  /* Zorgt dat het leesbaar blijft op de achtergrond */
}

/* =========================
   VIEWER
========================= */

body.viewer-page{
    overflow:hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(244,197,66,0.08),
            transparent 60%
        ),
        url("images/bg.jpg") center/cover no-repeat,
        #0b0b0b;

    background-attachment:fixed;
}

.viewer{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    display:block;
    overflow:hidden;
}

.image-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:auto;
    padding:90px 80px 110px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
    scrollbar-width:thin;
    scrollbar-color:#f4c542 rgba(0,0,0,0.45);
}

.image-wrapper::-webkit-scrollbar{
    width:10px;
    height:10px;
}

.image-wrapper::-webkit-scrollbar-track{
    background:rgba(0,0,0,0.45);
}

.image-wrapper::-webkit-scrollbar-thumb{
    background:#f4c542;
    border-radius:10px;
    border:2px solid rgba(0,0,0,0.45);
}

.comic-stage{
    position:relative;
    margin:0 auto;
    min-width:1px;
    min-height:1px;
}

.viewer img{
    display:block;
    width:100%;
    height:100%;
    max-width:none;
    max-height:none;
    object-fit:contain;
    cursor:default;
    user-select:none;
    -webkit-user-select:none;
    -webkit-user-drag:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.8);
}

.back-btn,
.fullscreen-btn{
    position:fixed;
    top:20px;
    z-index:10000;
    width:52px;
    height:52px;
    padding:0;
    background:#f4c542;
    color:#000;
    border:3px solid #000;
    border-radius:50%;
    font-size:25px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:3px 3px 0 #000;
}

.back-btn{
    left:20px;
}

.fullscreen-btn{
    right:20px;
}

.back-btn:hover,
.fullscreen-btn:hover{
    transform:scale(1.08);
}

/* PAGINA NAVIGATIE */
.side-btn{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    z-index:10000;
    width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
    font-size:25px;
    font-weight:bold;
    background:rgba(244,197,66,0.95);
    color:#000;
    border:3px solid #000;
    box-shadow:3px 3px 0 #000;
    cursor:pointer;
}

.left-btn{
    left:18px;
}

.right-btn{
    right:18px;
}

.side-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

/* ZOOM BEDIENING */
.zoom-controls{
    position:fixed;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    z-index:10000;
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px;
    background:rgba(0,0,0,0.88);
    backdrop-filter:blur(6px);
    border:2px solid #333;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.zoom-controls button{
    min-width:44px;
    height:40px;
    padding:4px 10px;
    background:#f4c542;
    color:#000;
    border:2px solid #000;
    border-radius:8px;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
}

.zoom-controls button:nth-child(2){
    min-width:76px;
    font-size:16px;
}

.zoom-controls button:hover{
    transform:scale(1.05);
}

/* Zorg dat de loader boven de viewer blijft */
.loader{
    z-index:11000;
}

/* =========================
   CONTACT
========================= */
.contact form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:400px;
}

.contact input,
.contact textarea{
    width:100%;
    padding:10px;
    border:none;
    border-radius:5px;
}

.contact button{
    padding:10px;
    background:#f4c542;
    border:none;
}

/* =========================
   AUDIO PLAYER
========================= */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);

    padding: 10px 15px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 9999;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.audio-player button {
    background: #f4c542;
    border: none;
    padding: 6px 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.audio-player button:hover {
    transform: scale(1.1);
}

.audio-player input {
    width: 90px;
    cursor: pointer;
}

/* =========================
   FOOTER
========================= */
.footer{
    text-align:center;
    padding:20px;
    font-size:14px;
    opacity:0.7;
}

.contact-extra{
    max-width:800px;
    margin:60px auto;
    text-align:center;

    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 12px;
}

.contact-extra p{
    margin-bottom:18px;
    line-height:1.7;

    background: rgba(0,0,0,0.55);
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-extra form{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.contact-extra input,
.contact-extra textarea{
    padding:10px;
    border:none;
    border-radius:6px;
}

.contact-extra button{
    padding:12px;
    background:#f4c542;
    border:none;
    cursor:pointer;
}

.form-success{
    margin-top:20px;
    padding:15px;

    background:#f4c542;
    color:black;

    border-radius:8px;
    font-weight:bold;

    animation: fadeIn 0.5s ease;
}

@media (max-width:768px){
    .center-title{
        font-size:30px;
    }
}
.side-btn{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    z-index:999;

    width:60px;
    height:60px;

    border-radius:50%;
    font-size:24px;
    font-weight:bold;

    background:rgba(244,197,66,0.9);
    color:black;

    box-shadow:0 0 10px rgba(0,0,0,0.5);
}

.left-btn{
    left:20px;
}

.right-btn{
    right:20px;
}

.side-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

.hidden-btn{
    opacity:0 !important;
    pointer-events:none !important;
}

.captcha-box{
    display:flex;
    flex-direction:column;
    gap:8px;
    text-align:left;
}
.visitor-counter{
    text-align:center;
    margin-top:10px;
    opacity:0.8;
    font-size:14px;
}

.featured-section {
    text-align: center;
    margin: 40px auto;
}

.featured-card {
    background: #1a1a1a;
    border: 2px solid #f4c542;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    max-width: 320px;
    margin: 20px auto;
}

.featured-card img { 
    width: 100%; 
    border-radius: 8px; 
    margin-bottom: 15px; 
}

.featured-card h4 { 
    color: #f4c542; 
    font-size: 24px; 
    margin-bottom: 15px; 
    font-family: 'Bangers', cursive;
}

.featured-card button { 
    background: #f4c542; 
    border: none; 
    padding: 12px 24px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-weight: bold; 
    font-family: 'Bangers', cursive;
    font-size: 18px;
}

/* =========================
   VIEWER MOBIEL
========================= */
@media (max-width:768px){

    .image-wrapper{
        padding:75px 58px 95px;
    }

    .back-btn,
    .fullscreen-btn{
        top:12px;
        width:46px;
        height:46px;
        font-size:21px;
        border-width:2px;
    }

    .back-btn{
        left:12px;
    }

    .fullscreen-btn{
        right:12px;
    }

    .side-btn{
        width:46px;
        height:46px;
        font-size:20px;
        border-width:2px;
    }

    .left-btn{
        left:8px;
    }

    .right-btn{
        right:8px;
    }

    .zoom-controls{
        bottom:70px;
    }

    .zoom-controls button{
        min-width:40px;
        height:38px;
        font-size:20px;
    }

    .zoom-controls button:nth-child(2){
        min-width:68px;
        font-size:14px;
    }
}

/* =========================
   NIEUWSTE STRIP
========================= */

.latest-strip {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 20px;
}


/* =========================
   NIEUWSTE STRIP KAART
========================= */

.latest-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 500px;

    margin: 0 auto;
    padding: 20px;

    background: rgba(20, 20, 20, 0.9);

    border: 2px solid #f4c542;
    border-radius: 16px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================
   HOVER EFFECT
========================= */

.latest-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.7);
}


/* =========================
   AFBEELDING
========================= */

.latest-card img {
    display: block;

    width: 100%;
    max-width: 400px;

    height: auto;

    border-radius: 10px;
}


/* =========================
   TEKST ONDER DE STRIP
========================= */

.latest-info {
    width: 100%;

    padding-top: 15px;

    text-align: center;
}


.latest-info h3 {
    margin: 0 0 8px;

    font-family: 'Bangers', cursive;

    font-size: 32px;

    color: #f4c542;
}


.latest-info p {
    margin: 0;

    font-size: 17px;

    line-height: 1.5;
}


/* =========================
   ARCHIEF
========================= */

.all-strips {
    max-width: 1200px;

    margin: 0 auto;
}


.strips-header {
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}


#stripCounter {
    font-family: 'Bangers', cursive;

    color: #f4c542;

    font-size: 22px;
}


/* =========================
   MOBIELE VERSIE
========================= */

@media (max-width: 700px) {

    .latest-strip {
        padding: 10px;
    }


    .latest-card {
        width: calc(100% - 20px);

        padding: 15px;
    }


    .latest-card img {
        width: 100%;

        max-width: 100%;
    }


    .latest-info h3 {
        font-size: 28px;
    }


    .latest-info p {
        font-size: 16px;
    }


    .strips-header {
        flex-direction: column;

        text-align: center;
    }

}