/* ===========================================================
   MARCO VISSER OFFICIAL WEBSITE
   BOOK PAGES
   Release 2.1
=========================================================== */


/* ===========================================================
   BOOK HERO
=========================================================== */

.book-hero{
    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    padding:150px 0 100px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(201,164,76,.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080808 0%,
            #111 55%,
            #080808 100%
        );
}


/* subtiele gouden gloed */

.book-hero-glow{
    position:absolute;

    top:50%;
    left:20%;

    width:600px;
    height:600px;

    background:
        radial-gradient(
            circle,
            rgba(201,164,76,.13),
            transparent 65%
        );

    transform:translate(-50%,-50%);

    pointer-events:none;
}


.book-hero .container{
    position:relative;

    z-index:2;
}


/* ===========================================================
   BOOK HERO COVER
=========================================================== */

.book-detail-cover{
    position:relative;

    display:inline-block;

    max-width:390px;

    padding:15px;
}


.book-detail-cover::before{
    content:"";

    position:absolute;

    inset:5%;

    z-index:-1;

    background:rgba(201,164,76,.16);

    filter:blur(55px);

    border-radius:50%;
}


.book-detail-cover img{
    width:100%;
    height:auto;

    border-radius:7px;

    filter:
        drop-shadow(0 35px 45px rgba(0,0,0,.65));

    transition:
        transform .4s ease,
        filter .4s ease;
}


.book-detail-cover:hover img{
    transform:translateY(-6px);

    filter:
        drop-shadow(0 42px 55px rgba(0,0,0,.75));
}


/* ===========================================================
   BOOK HERO CONTENT
=========================================================== */

.book-hero-content{
    max-width:680px;
}


.book-hero-content h1{
    margin:0 0 15px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:72px;
    font-weight:700;

    line-height:1.1;
}


.book-hero-content h2{
    margin-bottom:30px;

    color:var(--gold);

    font-family:'Merriweather',serif;

    font-size:28px;
    font-weight:300;

    line-height:1.5;
}


.book-hero-intro{
    max-width:620px;

    margin-bottom:30px;

    color:#ccc;

    font-family:'Merriweather',serif;

    font-size:20px;

    line-height:1.9;
}


/* ===========================================================
   BOOK STATUS
=========================================================== */

.book-status{
    display:flex;

    align-items:center;

    gap:10px;

    width:max-content;

    margin-bottom:35px;

    padding:10px 17px;

    background:rgba(25,135,84,.10);

    color:#a8ddb9;

    border:1px solid rgba(25,135,84,.30);

    border-radius:30px;

    font-size:13px;
    font-weight:600;

    letter-spacing:.5px;
}


.status-dot{
    position:relative;

    width:9px;
    height:9px;

    background:#42b873;

    border-radius:50%;
}


.status-dot::after{
    content:"";

    position:absolute;

    inset:-4px;

    border:1px solid rgba(66,184,115,.40);

    border-radius:50%;
}


/* ===========================================================
   BOOK HERO BUTTONS
=========================================================== */

.book-hero-buttons{
    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}


/* ===========================================================
   OVER HET BOEK
=========================================================== */

.book-about-section{
    position:relative;

    background:#111;
}


.book-section-heading{
    margin-bottom:50px;
}


.book-about-text{
    max-width:850px;

    margin:0 auto;
}


.book-about-text .lead-text{
    margin-bottom:35px;

    color:var(--gold);

    font-family:'Merriweather',serif;

    font-size:24px;
    font-style:italic;
    font-weight:400;

    line-height:1.8;

    text-align:center;
}


.book-about-text p:not(.lead-text){
    margin-bottom:25px;

    color:#c8c8c8;

    font-size:18px;

    line-height:2;
}


.book-about-text strong{
    color:#fff;
}


/* ===========================================================
   HET VERHAAL
=========================================================== */

.book-story-section{
    position:relative;

    background:var(--black);
}


.book-story-section .section-title{
    margin-bottom:30px;
}


.book-story-section p{
    margin-bottom:24px;

    color:#c8c8c8;

    font-size:18px;

    line-height:1.95;
}


.book-story-section strong{
    color:#fff;
}


/* ===========================================================
   STORY QUOTE
=========================================================== */

.story-highlight{
    position:relative;

    max-width:520px;

    margin-left:auto;

    padding:60px 50px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #101010
        );

    border:1px solid rgba(201,164,76,.30);

    border-radius:22px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.35);
}


.story-highlight::after{
    content:"";

    position:absolute;

    top:0;
    right:15%;
    left:15%;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}


.story-quote-mark{
    position:absolute;

    top:-35px;
    left:25px;

    color:rgba(201,164,76,.10);

    font-family:Georgia,serif;

    font-size:180px;

    line-height:1;

    pointer-events:none;
}


.story-highlight blockquote{
    position:relative;

    z-index:2;

    margin:0 0 25px;

    color:#f1f1f1;

    font-family:'Merriweather',serif;

    font-size:24px;
    font-style:italic;

    line-height:1.8;
}


.story-quote-author{
    position:relative;

    z-index:2;

    color:var(--gold);

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;
}


/* ===========================================================
   BOEKGEGEVENS
=========================================================== */

.book-details-section{
    background:#111;
}


.book-details-grid{
    display:grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    max-width:1050px;

    margin:55px auto 0;

    border-top:1px solid rgba(255,255,255,.08);
    border-left:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);
}


.book-detail-item{
    min-height:145px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:30px;

    background:#171717;

    border-right:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

    transition:
        background .3s ease;
}


.book-detail-item:hover{
    background:#1d1d1d;
}


.detail-label{
    display:block;

    margin-bottom:12px;

    color:var(--gold);

    font-size:12px;
    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}


.book-detail-item strong{
    color:#eee;

    font-size:16px;
    font-weight:500;

    line-height:1.5;
}


/* ===========================================================
   BOOK REVIEWS
=========================================================== */

.book-reviews-section{
    position:relative;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201,164,76,.08),
            transparent 35%
        ),
        var(--black);
}


.book-review-grid{
    margin-top:55px;
}


/* ===========================================================
   BESTELLEN
=========================================================== */

.book-order-section{
    position:relative;

    overflow:hidden;

    background:#111;
}


.book-order-section::before{
    content:"";

    position:absolute;

    top:50%;
    right:-200px;

    width:600px;
    height:600px;

    background:
        radial-gradient(
            circle,
            rgba(201,164,76,.10),
            transparent 65%
        );

    transform:translateY(-50%);

    pointer-events:none;
}


.book-order-box{
    position:relative;

    z-index:2;

    max-width:1100px;

    margin:0 auto;

    padding:70px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #101010
        );

    border:1px solid rgba(201,164,76,.28);

    border-radius:24px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}


.book-order-box::before{
    content:"";

    position:absolute;

    top:0;
    left:15%;
    right:15%;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}


.book-order-cover{
    width:100%;
    max-width:260px;

    margin:0 auto;

    border-radius:6px;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,.60));
}


.book-order-box h2{
    margin-bottom:20px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:42px;
}


.book-order-box p{
    max-width:620px;

    margin-bottom:30px;

    color:#c7c7c7;

    font-size:17px;

    line-height:1.9;
}


.book-order-buttons{
    display:flex;

    flex-wrap:wrap;

    gap:15px;
}


.book-order-box .order-note{
    margin:20px 0 0;

    color:#777;

    font-size:12px;
}
/* ===========================================================
   GESIGNEERD EXEMPLAAR
=========================================================== */

.signed-book-option{
    position:relative;

    margin:40px 0;

    padding:35px;

    background:
        linear-gradient(
            145deg,
            rgba(201,164,76,.10),
            rgba(201,164,76,.025)
        );

    border:1px solid rgba(201,164,76,.45);

    border-radius:18px;
}

.signed-label{
    display:inline-block;

    margin-bottom:12px;

    color:var(--gold);

    font-size:11px;
    font-weight:600;

    letter-spacing:2px;
}

.signed-book-option h3{
    margin-bottom:8px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:27px;
}

.signed-price{
    margin-bottom:18px;

    color:var(--gold);

    font-family:'Cinzel',serif;

    font-size:32px;
    font-weight:700;
}

.signed-book-option p{
    margin-bottom:20px;
}

.signed-benefits{
    margin:0 0 28px;

    padding:0;

    list-style:none;
}

.signed-benefits li{
    margin-bottom:10px;

    color:#ddd;

    font-size:14px;
}

.signed-book-option .btn i{
    margin-right:8px;
}

.signed-book-option .signed-shipping-note{
    margin:18px 0 0;

    color:#888;

    font-size:12px;
}


/* ===========================================================
   VERKOOPPUNTEN
=========================================================== */

.retailer-section{
    margin-top:40px;
}

.retailer-section h3{
    margin-bottom:10px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:24px;
}

.retailer-intro{
    margin-bottom:22px !important;

    color:#999 !important;

    font-size:14px !important;
}

.retailer-buttons{
    display:flex;

    flex-wrap:wrap;

    gap:12px;
}

.retailer-buttons .btn{
    padding:12px 22px;

    font-size:14px;
}

/* ===========================================================
   ANDER BOEK
=========================================================== */

.next-book-section{
    position:relative;

    overflow:hidden;

    background:var(--black);
}


.next-book-section::before{
    content:"";

    position:absolute;

    top:50%;
    left:-250px;

    width:600px;
    height:600px;

    background:
        radial-gradient(
            circle,
            rgba(201,164,76,.08),
            transparent 65%
        );

    transform:translateY(-50%);

    pointer-events:none;
}


.next-book-section .container{
    position:relative;

    z-index:2;
}


.next-book-section h2{
    margin:0 0 25px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:46px;

    line-height:1.25;
}


.next-book-section p{
    max-width:650px;

    margin-bottom:35px;

    color:#c7c7c7;

    font-size:18px;

    line-height:1.9;
}


.next-book-cover{
    width:100%;
    max-width:280px;

    margin:0 auto;

    border-radius:7px;

    filter:
        drop-shadow(0 30px 45px rgba(0,0,0,.55));

    transition:
        transform .4s ease;
}


.next-book-cover:hover{
    transform:translateY(-6px);
}


/* ===========================================================
   RESPONSIVE
   TABLET / SMALL DESKTOP
=========================================================== */

@media (max-width:1200px){

    .book-hero-content h1{
        font-size:62px;
    }

    .book-detail-cover{
        max-width:350px;
    }

}


@media (max-width:992px){

    /* HERO */

    .book-hero{
        min-height:auto;

        padding:140px 0 90px;

        text-align:center;
    }


    .book-detail-cover{
        max-width:310px;

        margin-bottom:20px;
    }


    .book-hero-content{
        max-width:720px;

        margin:0 auto;
    }


    .book-hero-content h1{
        font-size:54px;
    }


    .book-hero-content h2{
        font-size:25px;
    }


    .book-hero-intro{
        margin-right:auto;
        margin-left:auto;
    }


    .book-status{
        margin-right:auto;
        margin-left:auto;
    }


    .book-hero-buttons{
        justify-content:center;
    }


    /* OVER HET BOEK */

    .book-about-text{
        max-width:760px;
    }


    /* VERHAAL */

    .book-story-section{
        text-align:center;
    }


    .book-story-section .section-title{
        text-align:center !important;
    }


    .story-highlight{
        margin:30px auto 0;

        text-align:left;
    }


    /* BOEKGEGEVENS */

    .book-details-grid{
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }


    /* BESTELLEN */

    .book-order-box{
        padding:55px 45px;

        text-align:center;
    }


    .book-order-box p{
        margin-right:auto;
        margin-left:auto;
    }


    .book-order-buttons{
        justify-content:center;
    }


    /* ANDER BOEK */

    .next-book-section{
        text-align:center;
    }


    .next-book-section p{
        margin-right:auto;
        margin-left:auto;
    }


    .next-book-cover{
        margin-top:25px;
    }

}


/* ===========================================================
   RESPONSIVE
   MOBILE
=========================================================== */

@media (max-width:768px){

    /* HERO */

    .book-hero{
        padding:120px 0 75px;
    }


    .book-detail-cover{
        max-width:260px;
    }


    .book-hero-content h1{
        font-size:44px;
    }


    .book-hero-content h2{
        font-size:22px;
    }


    .book-hero-intro{
        font-size:17px;
    }


    .book-hero-buttons{
        flex-direction:column;

        align-items:stretch;

        max-width:380px;

        margin:0 auto;
    }


    .book-hero-buttons .btn{
        width:100%;
    }


    /* OVER HET BOEK */

    .book-about-text .lead-text{
        font-size:21px;
    }


    .book-about-text p:not(.lead-text){
        font-size:16px;

        line-height:1.9;
    }


    /* VERHAAL */

    .book-story-section p{
        font-size:16px;
    }


    .story-highlight{
        padding:50px 35px;
    }


    .story-highlight blockquote{
        font-size:21px;
    }


    /* BOEKGEGEVENS */

    .book-details-grid{
        margin-top:40px;
    }


    .book-detail-item{
        min-height:125px;

        padding:25px;
    }


    /* BESTELLEN */

    .book-order-box{
        padding:45px 30px;
    }


    .book-order-cover{
        max-width:220px;
    }


    .book-order-box h2{
        font-size:34px;
    }


    .book-order-box p{
        font-size:16px;
    }


    .book-order-buttons{
        flex-direction:column;

        align-items:stretch;

        max-width:400px;

        margin:0 auto;
    }


    .book-order-buttons .btn{
        width:100%;
    }


    /* ANDER BOEK */

    .next-book-section h2{
        font-size:38px;
    }


    .next-book-section p{
        font-size:16px;
    }


    .next-book-cover{
        max-width:240px;
    }

}


/* ===========================================================
   RESPONSIVE
   SMALL MOBILE
=========================================================== */

@media (max-width:576px){

    /* HERO */
	    .signed-book-option{
        padding:28px 20px;
    }

    .signed-book-option h3{
        font-size:23px;
    }

    .signed-price{
        font-size:28px;
    }

    .signed-book-option .btn{
        width:100%;
    }

    .retailer-buttons{
        flex-direction:column;
    }

    .retailer-buttons .btn{
        width:100%;
    }

    .book-hero{
        padding:110px 0 65px;
    }


    .book-detail-cover{
        max-width:220px;
    }


    .book-hero-content h1{
        font-size:36px;
    }


    .book-hero-content h2{
        font-size:19px;
    }


    .book-hero-intro{
        font-size:16px;

        line-height:1.8;
    }


    .book-status{
        font-size:12px;
    }


    /* OVER HET BOEK */

    .book-section-heading{
        margin-bottom:35px;
    }


    .book-about-text .lead-text{
        font-size:19px;
    }


    /* STORY QUOTE */

    .story-highlight{
        padding:45px 25px;
    }


    .story-quote-mark{
        font-size:140px;
    }


    .story-highlight blockquote{
        font-size:19px;
    }


    /* BOEKGEGEVENS */

    .book-details-grid{
        grid-template-columns:1fr;
    }


    .book-detail-item{
        min-height:auto;

        padding:25px;
    }


    /* BESTELLEN */

    .book-order-box{
        padding:40px 22px;

        border-radius:18px;
    }


    .book-order-cover{
        max-width:190px;
    }


    .book-order-box h2{
        font-size:30px;
    }


    /* ANDER BOEK */

    .next-book-section h2{
        font-size:31px;
    }


    .next-book-cover{
        max-width:210px;
    }

}


/* ===========================================================
   EXTRA SMALL MOBILE
=========================================================== */

@media (max-width:400px){

    .book-detail-cover{
        max-width:190px;
    }


    .book-hero-content h1{
        font-size:31px;
    }


    .book-hero-content h2{
        font-size:17px;
    }


    .book-hero-buttons{
        max-width:100%;
    }


    .story-highlight{
        padding:40px 20px;
    }


    .story-highlight blockquote{
        font-size:18px;
    }


    .book-order-box{
        padding:35px 18px;
    }


    .book-order-box h2{
        font-size:27px;
    }


    .next-book-section h2{
        font-size:28px;
    }

}
/* ==========================================================
   HOOFDPERSONEN
========================================================== */

.character-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(212,175,55,.20);

    border-radius:14px;

    padding:35px;

    height:100%;

    transition:.3s;

}

.character-card:hover{

    border-color:#D4AF37;

    transform:translateY(-4px);

}

.character-card h3{

    color:#D4AF37;

    margin-bottom:20px;

}
/* ==========================================================
   TIMELINE
========================================================== */

.timeline{

    max-width:900px;

    margin:0 auto;

}

.timeline-item{

    border-left:3px solid #D4AF37;

    padding:0 0 35px 30px;

    margin-left:15px;

}

.timeline-item:last-child{

    padding-bottom:0;

}

.timeline-date{

    color:#D4AF37;

    font-weight:700;

    margin-bottom:8px;

}

.timeline-content h3{

    color:#ffffff;

    margin-bottom:12px;

}

.timeline-content p{

    color:#d6d6d6;

    margin-bottom:0;

}
/* ==========================================================
   FAQ
========================================================== */

.accordion-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(212,175,55,.20);

    margin-bottom:15px;

    border-radius:10px;

    overflow:hidden;

}

.accordion-button{

    background:#151515;

    color:#ffffff;

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:#1f1f1f;

    color:#D4AF37;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:#111;

    color:#d6d6d6;

}
/* ==========================================================
   FOOTER
========================================================== */

.footer{

    padding:80px 0 30px;

    border-top:1px solid rgba(212,175,55,.20);

    margin-top:80px;

}

.footer h4{

    color:#D4AF37;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d6d6d6;

    text-decoration:none;

}

.footer-links a:hover{

    color:#D4AF37;

}

.footer-divider{

    margin:50px 0 25px;

    border-color:rgba(212,175,55,.20);

}

.footer-bottom{

    text-align:center;

    color:#999;

}
/* Social media */

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(212,175,55,.30);

    border-radius:50%;

    color:#D4AF37;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:#D4AF37;

    color:#111111;

    transform:translateY(-3px);

}

.social-links i{

    font-size:20p/* ==========================================================
   CONTACTFORMULIER
========================================================== */

.contact-form{

    padding:50px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(201,164,76,.20);

    border-radius:20px;

}

.form-label{

    color:#C9A44C;

    font-weight:600;

    margin-bottom:10px;

}

.form-control,
.form-select{

    background:#151515;

    border:1px solid rgba(255,255,255,.12);

    color:#ffffff;

    padding:14px;

}

.form-control:focus,
.form-select:focus{

    background:#151515;

    color:#ffffff;

    border-color:#C9A44C;

    box-shadow:0 0 0 .2rem rgba(201,164,76,.15);

}

textarea.form-control{

    resize:vertical;

    min-height:220px;

}x;

}
/* ==========================================================
   CONTACTFORMULIER
========================================================== */

.contact-form{

    padding:50px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(201,164,76,.20);

    border-radius:20px;

}

.form-label{

    color:#C9A44C;

    font-weight:600;

    margin-bottom:10px;

}

.form-control,
.form-select{

    background:#151515;

    border:1px solid rgba(255,255,255,.12);

    color:#ffffff;

    padding:14px;

}

.form-control:focus,
.form-select:focus{

    background:#151515;

    color:#ffffff;

    border-color:#C9A44C;

    box-shadow:0 0 0 .2rem rgba(201,164,76,.15);

}

textarea.form-control{

    resize:vertical;

    min-height:220px;

}