/* ===========================================================
   MARCO VISSER OFFICIAL WEBSITE
   Homepage v1.0
=========================================================== */


/* ===========================================================
   VARIABLES
=========================================================== */

:root{
    --black:#0b0b0b;
    --dark:#171717;
    --dark-light:#1a1a1a;

    --gold:#C9A44C;
    --gold-hover:#d7b15c;

    --white:#F5F5F5;
    --gray:#C8C8C8;

    --transition:.35s ease;
}


/* ===========================================================
   RESET
=========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    background:var(--black);
    color:var(--white);

    font-family:'Montserrat',sans-serif;

    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    transition:var(--transition);
}


/* ===========================================================
   ALGEMENE SECTIES
=========================================================== */

section{
    padding:120px 0;
}

.subtitle{
    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    font-size:14px;

    letter-spacing:4px;
}

.section-title{
    margin-bottom:30px;

    color:var(--gold);

    font-family:'Cinzel',serif;

    font-size:48px;

    text-align:center;
}

.section-intro{
    max-width:700px;

    margin:0 auto;

    color:#bfbfbf;

    font-size:18px;

    line-height:1.8;
}


/* ===========================================================
   NAVBAR
=========================================================== */

.navbar{
    padding:20px 0;

    background:rgba(0,0,0,.70);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:.4s ease;
}

.navbar-brand{
    color:var(--gold) !important;

    font-family:'Cinzel',serif;

    font-size:30px;

    letter-spacing:3px;
}

.nav-link{
    position:relative;

    margin-left:25px;

    color:#fff !important;

    font-size:17px;
}

.nav-link::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.35s ease;
}

.nav-link:hover,
.nav-link.active{
    color:var(--gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}


/* ===========================================================
   HERO
=========================================================== */

.hero{
    position:relative;

    min-height:100vh;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url("../images/hero/hero-background.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero .overlay{
    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.55),
            rgba(0,0,0,.30)
        );

    pointer-events:none;
}

.hero .container{
    position:relative;

    z-index:2;
}

.hero h1{
    margin-bottom:20px;

    font-family:'Cinzel',serif;

    font-size:72px;
    font-weight:700;
}

.hero h2{
    margin-bottom:35px;

    font-family:'Merriweather',serif;

    font-size:34px;
    font-weight:300;

    line-height:1.4;
}

.hero p{
    max-width:620px;

    margin-bottom:45px;

    color:var(--gray);

    font-size:20px;

    line-height:1.8;
}


/* ===========================================================
   HERO BUTTONS
=========================================================== */

.hero-buttons{
    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;
}


/* ===========================================================
   HERO BOEKEN
=========================================================== */

.hero-books{
    display:flex;

    justify-content:center;
    align-items:center;

    gap:30px;

    flex-wrap:nowrap;

    margin-top:40px;
}

.hero-book{
    width:220px;
    height:auto;

    border-radius:8px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-book:hover{
    transform:translateY(-5px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.45);
}


/* ===========================================================
   BUTTONS
=========================================================== */

.btn{
    padding:15px 36px;

    border-radius:50px;

    font-size:17px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}

.btn-gold{
    background:var(--gold);

    color:#000;

    font-weight:600;

    border-color:var(--gold);
}

.btn-gold:hover{
    background:var(--gold-hover);

    color:#000;

    border-color:var(--gold-hover);

    transform:translateY(-3px);
}

.btn-outline-light:hover{
    transform:translateY(-3px);
}


/* ===========================================================
   BOEKEN
=========================================================== */

.books-section{
    background:#111;
}

.book-card{
    height:100%;

    overflow:hidden;

    background:var(--dark-light);

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.book-card:hover{
    transform:translateY(-10px);

    border-color:rgba(201,164,76,.20);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);
}

.book-image{
    position:relative;

    display:flex;

    justify-content:center;
    align-items:center;

    min-height:520px;

    padding:40px;

    background:#0f0f0f;

    overflow:hidden;
}

.book-image img{
    width:100%;
    max-width:340px;
    height:auto;

    filter:
        drop-shadow(0 25px 40px rgba(0,0,0,.45));

    transition:transform .4s ease;
}

.book-card:hover .book-image img{
    transform:scale(1.035);
}

.book-content{
    padding:35px;
}

.book-content h3{
    margin-bottom:15px;

    color:var(--gold);

    font-family:'Cinzel',serif;
}

.book-content h5{
    margin-bottom:20px;

    color:#ddd;
}

.book-content p{
    margin-bottom:30px;

    color:#bbb;

    line-height:1.9;
}


/* ===========================================================
   BOEK BADGES
=========================================================== */

.badge-book{
    position:absolute;

    top:20px;
    right:20px;

    z-index:2;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;
}

.available{
    background:#198754;

    color:#fff;
}

.coming{
    background:var(--gold);

    color:#000;
}


/* ===========================================================
   OVER MARCO
=========================================================== */

.about-section{
    background:var(--black);
}

.author-image{
    overflow:hidden;

    border-radius:20px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);
}

.author-image img{
    width:100%;

    transition:transform .5s ease;
}

.author-image:hover img{
    transform:scale(1.03);
}

.about-section .section-title{
    margin-bottom:25px;
}

.lead-text{
    margin-bottom:30px;

    color:var(--gold);

    font-size:22px;
    font-weight:600;
}

.about-section p{
    color:#c9c9c9;

    font-size:18px;

    line-height:1.9;
}


/* ===========================================================
   AUTEUR HIGHLIGHTS
=========================================================== */

.author-highlights{
    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-top:45px;
}

.highlight{
    flex:1;

    min-width:140px;

    padding:25px;

    background:var(--dark);

    border:1px solid rgba(255,255,255,.05);

    border-radius:15px;

    text-align:center;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.highlight:hover{
    transform:translateY(-6px);

    border-color:var(--gold);
}

.highlight h3{
    margin-bottom:8px;

    color:var(--gold);

    font-family:'Cinzel',serif;

    font-size:40px;
}

.highlight span{
    color:#ddd;

    font-size:15px;

    letter-spacing:1px;
}


/* ===========================================================
   NIEUWS
=========================================================== */

.news-section{
    background:#111;
}

.news-card{
    height:100%;

    overflow:hidden;

    background:var(--dark-light);

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.news-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,164,76,.20);

    box-shadow:
        0 25px 60px rgba(0,0,0,.50);
}

.news-card img{
    width:100%;
    height:240px;

    object-fit:cover;

    transition:transform .45s ease;
}

.news-card:hover img{
    transform:scale(1.05);
}

.news-content{
    padding:30px;
}

.news-date{
    display:inline-block;

    margin-bottom:15px;

    color:var(--gold);

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;
}

.news-content h3{
    margin-bottom:18px;

    font-family:'Cinzel',serif;

    font-size:28px;

    line-height:1.3;
}

.news-content p{
    margin-bottom:25px;

    color:#c7c7c7;

    line-height:1.8;
}

.news-content a{
    color:var(--gold);

    font-weight:600;
}

.news-content a:hover{
    color:#fff;
}


/* ===========================================================
   TIJDLIJN
=========================================================== */

.timeline-section{
    background:var(--black);
}

.timeline{
    position:relative;

    max-width:1100px;

    margin:80px auto 0;
}

.timeline::before{
    content:"";

    position:absolute;

    top:0;
    bottom:0;
    left:50%;

    width:4px;

    background:var(--gold);

    transform:translateX(-50%);
}

.timeline-item{
    position:relative;

    width:50%;

    padding:25px 45px;
}

.timeline-item.left{
    left:0;

    text-align:right;
}

.timeline-item.right{
    left:50%;
}

.timeline-content{
    padding:30px;

    background:var(--dark);

    border:1px solid rgba(255,255,255,.05);

    border-radius:16px;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.timeline-content:hover{
    transform:translateY(-6px);

    border-color:var(--gold);
}

.timeline-content h3{
    margin:15px 0;

    color:#fff;

    font-family:'Cinzel',serif;
}

.timeline-content p{
    margin:0;

    color:#c8c8c8;

    line-height:1.8;
}

.year{
    display:inline-block;

    color:var(--gold);

    font-weight:700;

    letter-spacing:2px;
}

.timeline-item::after{
    content:"";

    position:absolute;

    top:38px;

    z-index:2;

    width:18px;
    height:18px;

    background:var(--gold);

    border-radius:50%;
}

.timeline-item.left::after{
    right:-9px;
}

.timeline-item.right::after{
    left:-9px;
}


/* ===========================================================
   REVIEWS
=========================================================== */

.reviews-section{
    position:relative;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201,164,76,.10),
            transparent 38%
        ),
        var(--black);
}

.reviews-section::before{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.015),
            transparent 40%
        );

    pointer-events:none;
}

.reviews-section .container{
    position:relative;

    z-index:2;
}

.reviews-header{
    margin-bottom:65px;
}

.reviews-grid{
    justify-content:center;
}

.review-card{
    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;
    min-height:360px;

    padding:38px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #121212
        );

    border:1px solid rgba(201,164,76,.18);

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.review-card::before{
    content:"“";

    position:absolute;

    top:-25px;
    right:20px;

    color:rgba(201,164,76,.07);

    font-family:Georgia,serif;

    font-size:150px;

    line-height:1;

    pointer-events:none;
}

.review-card:hover{
    transform:translateY(-7px);

    border-color:rgba(201,164,76,.65);

    box-shadow:
        0 30px 70px rgba(0,0,0,.40);
}

.review-stars{
    position:relative;

    z-index:2;

    margin-bottom:25px;

    color:var(--gold);

    font-size:21px;

    letter-spacing:5px;
}

.review-card blockquote{
    flex:1;

    margin:0;

    padding:0;

    border:0;
}

.review-card blockquote p{
    margin:0 0 35px;

    color:#d5d5d5;

    font-family:'Merriweather',serif;

    font-size:17px;
    font-style:italic;

    line-height:1.9;
}

.review-footer{
    display:flex;

    align-items:center;

    gap:15px;

    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.08);
}

.review-avatar{
    display:flex;

    align-items:center;
    justify-content:center;

    flex:0 0 48px;

    width:48px;
    height:48px;

    background:var(--gold);

    color:var(--black);

    border-radius:50%;

    font-family:'Cinzel',serif;

    font-size:18px;
    font-weight:700;
}

.review-footer h3{
    margin:0 0 4px;

    color:#fff;

    font-family:'Montserrat',sans-serif;

    font-size:16px;
    font-weight:600;
}

.review-footer span{
    color:var(--gold);

    font-size:13px;

    letter-spacing:.5px;
}

.reviews-action{
    margin-top:60px;
}

.reviews-action p{
    margin-bottom:25px;

    color:#c7c7c7;

    font-size:17px;
}


/* ===========================================================
   CALL TO ACTION + NIEUWSBRIEF
=========================================================== */

.cta-section{
    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:#111;
}

.cta-section::before{
    content:"";

    position:absolute;

    top:50%;
    left:50%;

    width:550px;
    height:550px;

    background:
        radial-gradient(
            circle,
            rgba(201,164,76,.16) 0%,
            rgba(201,164,76,.05) 35%,
            transparent 70%
        );

    transform:translate(-50%,-50%);

    pointer-events:none;
}

.cta-box{
    position:relative;

    z-index:2;

    max-width:1050px;

    margin:0 auto;

    padding:75px 60px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            rgba(28,28,28,.98),
            rgba(15,15,15,.98)
        );

    border:1px solid rgba(201,164,76,.30);

    border-radius:24px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.40);

    text-align:center;
}

.cta-box::before{
    content:"";

    position:absolute;

    top:0;
    left:15%;
    right:15%;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}

.cta-content{
    position:relative;

    z-index:2;

    max-width:800px;

    margin:0 auto;
}

.cta-box h2{
    margin:15px 0 25px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:48px;
    font-weight:600;
}

.cta-lead{
    max-width:680px;

    margin:0 auto 30px;

    color:#c9c9c9;

    font-size:18px;

    line-height:1.9;
}


/* ===========================================================
   NIEUWSBRIEF VOORDELEN
=========================================================== */

.newsletter-benefits{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:40px;
}

.newsletter-benefits span{
    color:#ddd;

    font-size:14px;
}


/* ===========================================================
   NIEUWSBRIEF FORMULIER
=========================================================== */

.newsletter-form{
    max-width:680px;

    margin:0 auto;
}

.newsletter-field{
    display:flex;

    gap:12px;

    padding:7px;

    background:#090909;

    border:1px solid rgba(255,255,255,.10);

    border-radius:60px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.newsletter-field:focus-within{
    border-color:var(--gold);

    box-shadow:
        0 0 0 3px rgba(201,164,76,.10);
}

.newsletter-field input{
    flex:1;

    min-width:0;

    padding:0 22px;

    background:transparent;

    border:0;

    outline:0;

    color:#fff;

    font-family:'Montserrat',sans-serif;

    font-size:16px;
}

.newsletter-field input::placeholder{
    color:#777;
}

.newsletter-field .btn{
    flex-shrink:0;

    padding-right:30px;
    padding-left:30px;
}


/* ===========================================================
   NIEUWSBRIEF TOESTEMMING
=========================================================== */

.newsletter-consent{
    display:flex;

    justify-content:center;
    align-items:flex-start;

    gap:10px;

    margin-top:22px;

    color:#aaa;

    font-size:12px;

    line-height:1.6;
}

.newsletter-consent input{
    flex-shrink:0;

    width:16px;
    height:16px;

    margin-top:2px;

    accent-color:var(--gold);
}

.newsletter-consent label{
    cursor:pointer;
}

.newsletter-privacy{
    margin:12px 0 0;

    color:#777;

    font-size:12px;
}

.newsletter-message{
    min-height:24px;

    margin-top:15px;

    font-size:14px;
}

.newsletter-message.success{
    color:#9dcc9d;
}

.newsletter-message.error{
    color:#e89a9a;
}


/* ===========================================================
   FOOTER
=========================================================== */

.footer{
    position:relative;

    padding:85px 0 30px;

    background:#070707;

    border-top:1px solid rgba(201,164,76,.18);
}

.footer::before{
    content:"";

    position:absolute;

    top:0;
    right:0;
    left:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,164,76,.70),
            transparent
        );
}


/* ===========================================================
   FOOTER BRAND
=========================================================== */

.footer-brand{
    display:inline-block;

    margin-bottom:22px;

    color:var(--gold);

    font-family:'Cinzel',serif;

    font-size:26px;
    font-weight:600;

    letter-spacing:3px;
}

.footer-brand:hover{
    color:#fff;
}

.footer-description{
    max-width:370px;

    margin-bottom:28px;

    color:#aaa;

    font-size:14px;

    line-height:1.9;
}

.footer-description strong{
    color:#ddd;
}


/* ===========================================================
   FOOTER HEADINGS
=========================================================== */

.footer-heading{
    position:relative;

    margin-bottom:28px;

    padding-bottom:13px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:17px;
    font-weight:600;

    letter-spacing:1px;
}

.footer-heading::after{
    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:35px;
    height:2px;

    background:var(--gold);
}


/* ===========================================================
   FOOTER LINKS
=========================================================== */

.footer-links{
    margin:0;

    padding:0;

    list-style:none;
}

.footer-links li{
    margin-bottom:13px;
}

.footer-links a{
    color:#aaa;

    font-size:14px;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.footer-links a:hover{
    padding-left:5px;

    color:var(--gold);
}


/* ===========================================================
   FOOTER CONTACT
=========================================================== */

.footer-contact-text{
    max-width:280px;

    margin-bottom:18px;

    color:#aaa;

    font-size:14px;

    line-height:1.8;
}

.footer-contact-link{
    color:var(--gold);

    font-size:14px;
    font-weight:600;
}

.footer-contact-link:hover{
    color:#fff;
}


/* ===========================================================
   FOOTER SOCIAL
=========================================================== */

.footer-social{
    display:flex;

    gap:10px;
}

.footer-social a{
    display:flex;

    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    background:#111;

    color:#bbb;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50%;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.footer-social a:hover{
    background:var(--gold);

    color:#080808;

    border-color:var(--gold);

    transform:translateY(-3px);
}


/* ===========================================================
   FOOTER DIVIDER
=========================================================== */

.footer-divider{
    width:100%;
    height:1px;

    margin:60px 0 28px;

    background:rgba(255,255,255,.08);
}


/* ===========================================================
   FOOTER BOTTOM
=========================================================== */

.footer-bottom{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:25px;

    color:#777;
}

.footer-copyright p{
    margin:0;

    font-size:12px;
}

.footer-legal{
    display:flex;

    align-items:center;

    gap:25px;
}

.footer-legal a{
    color:#777;

    font-size:12px;
}

.footer-legal a:hover{
    color:var(--gold);
}
/* ===========================================================
   SCROLL TO TOP
=========================================================== */

.scroll-top{
    position:fixed;

    right:25px;
    bottom:25px;

    z-index:999;

    display:flex;

    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    padding:0;

    background:var(--gold);

    color:#000;

    border:0;
    border-radius:50%;

    font-size:22px;
    font-weight:700;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
}

.scroll-top.visible{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.scroll-top:hover{
    background:var(--gold-hover);

    transform:translateY(-3px);
}

/* ===========================================================
   ACCESSIBILITY
=========================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible{
    outline:2px solid var(--gold);

    outline-offset:4px;
}