/* =========================
   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 (Verbeterd)
========================= */
.viewer{
    display:flex;
    justify-content:center;
    align-items:center;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.image-wrapper{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 20px;
}

.viewer img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    cursor: grab;
}

.back-btn {
    position: fixed; top: 20px; left: 20px; z-index: 1000;
    padding: 10px 20px; background: #f4c542; border: none; cursor: pointer; border-radius: 5px;
}
.fullscreen-btn {
    position: fixed; top: 20px; right: 20px; z-index: 1000;
    padding: 10px 20px; background: #f4c542; border: none; cursor: pointer; border-radius: 5px;
}

/* =========================
   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 verbetering */
.image-wrapper { display: flex; justify-content: center; align-items: center; height: 100%; }
#comicPage { max-height: 90vh; object-fit: contain; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }