/* =====================================================
   MOMENT & MEER EVENTS
   STYLE.CSS
   Versie 2.0
===================================================== */

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

/* =====================================================
   KLEUREN
===================================================== */

:root{

    --cream:#F8F4EE;
    --sand:#E8DCCB;
    --champagne:#D8C3A5;
    --gold:#B58B4B;

    --dark:#2D2A27;
    --taupe:#5C5147;
    --white:#ffffff;

    --shadow:
        0 15px 40px rgba(0,0,0,.08);

    --radius:28px;

    --transition:.35s ease;

}

/* =====================================================
   BODY
===================================================== */

body{

    font-family:"Manrope",sans-serif;

    font-size:16px;

    line-height:1.8;

    color:var(--taupe);

    background:var(--cream);

    overflow-x:hidden;

}

/* =====================================================
   CONTAINER
===================================================== */

header .container{
    width:100%;
    max-width:none;

    padding:0 20px;

    height:110px;

    display:flex;
    align-items:center;
}
/* =====================================================
   TYPOGRAFIE
===================================================== */

h1,
h2,
h3,
h4{

    font-family:"Cormorant Garamond",serif;

    color:var(--dark);

    font-weight:600;

    line-height:1.15;

}

h1{

    font-size:62px;

}

h2{

    font-size:48px;

}

h3{

    font-size:30px;

}

p{

    margin-bottom:18px;

}

.section-subtitle{

    display:inline-block;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;

}

.section-intro{

    max-width:760px;

    margin:20px auto 60px;

    text-align:center;

}

/* =====================================================
   SECTIES
===================================================== */

section{

    position:relative;

    padding:90px 0;

    overflow:hidden;

}

section::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(181,139,75,.04);

    top:-90px;

    right:-90px;

}

/* =====================================================
   HEADER
===================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(248,244,238,.96);

    backdrop-filter:blur(10px);

    z-index:1000;

    border-bottom:1px solid rgba(181,139,75,.12);

    transition:.35s;

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:100px;

}

.logo img{
    height:190px;
    width:auto;
    max-width:none;
    display:block;
}

/* =====================================================
   NAVIGATIE
===================================================== */

nav ul{

    display:flex;

    align-items:center;

    gap:38px;

}

nav a{

    position:relative;

    color:var(--dark);

    font-size:17px;

    font-weight:600;

    letter-spacing:0.3px;

    text-decoration:none;

    transition:var(--transition);

}

nav a:hover,
nav a.active{

    color:var(--gold);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:var(--transition);

}

nav a:hover::after,
nav a.active::after{

    width:100%;

}

/* =====================================================
   KNOPPEN
===================================================== */

.button-nav,
.button-gold,
.button-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.button-nav,
.button-gold{

    background:var(--gold);

    color:#fff;

    border:2px solid var(--gold);

}

.button-outline{

    border:2px solid var(--gold);

    color:var(--gold);

    background:transparent;

}

.button-nav:hover,
.button-gold:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(181,139,75,.25);

}

.button-outline:hover{

    background:var(--gold);

    color:#fff;

}

/* =====================================================
   HAMBURGER
===================================================== */

.menu-toggle{

    display:none;

    border:none;

    background:none;

    color:var(--gold);

    font-size:30px;

    cursor:pointer;

}

/* =====================================================
   MOBIEL MENU
===================================================== */

.mobile-menu{

    position:fixed;

    top:95px;

    left:0;

    width:100%;

    background:white;

    overflow:hidden;

    max-height:0;

    transition:max-height .35s ease;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    z-index:999;

}

.mobile-menu.active{

    max-height:700px;

}

.mobile-menu ul{

    padding:25px;

    text-align:center;

}

.mobile-menu li{

    margin:20px 0;

}

.mobile-menu a{

    font-family:"Cormorant Garamond",serif;

    font-size:24px;

    color:var(--dark);

}

/* =====================================================
   HEADER RUIMTE
===================================================== */

main{

    padding-top:95px;

}
/* =====================================================
   HERO
===================================================== */

.hero{
    position:relative;
    overflow:hidden;
    background:var(--cream);
    padding:100px 0;
	display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at right center,
        rgba(216,195,165,.18),
        transparent 55%);
}

.hero-content{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:54% 46%;

    align-items:stretch;

    width:100%;
    max-width:none;

  min-height:auto;
    margin:0;
}
.hero-left{
    width:100%;
    max-width:1100px;

    padding-left:80px;
    padding-right:35px;
    padding-top: 20px;
    margin-left:0;
}
.hero-subtitle{

    display:inline-block;

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:6px;

}

.hero h1{

    font-size:54px;

    line-height:1;

    margin-bottom:28px;
letter-spacing:-1px;


}

.script-word{

    display:block;

    margin-top:5px;

    font-family:"Great Vibes",cursive;

    font-size:1.25em;

    font-weight:400;

    color:var(--gold);

}

.hero p{

    max-width:560px;

    margin-bottom:38px;

    font-size:18px;

    line-height:1.8;
}
.reserveren-hero .hero p{
    max-width:620px;
}

/* Alleen homepage hero tekst */
body:not(.reserveren-page) .hero p{
    font-size:17px;
    line-height:1.6;
    margin-bottom:28px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-right{
    display:flex;
    justify-content:flex-end;
    align-items:stretch;
    width:calc(100% + 40px);
}

.hero-image{
    position:relative;

    width:100%;

    height:60vh;

    margin-right:-40px;

    overflow:hidden;
}
.reserveren-hero .hero-image{
    margin-right: 20px;
}
.hero-image::before{
    content:"";
    position:absolute;
    inset:0;
    width:20%;
    background:linear-gradient(
        to right,
        var(--cream),
        rgba(248,244,238,.7),
        transparent
    );
    z-index:2;}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:right center;
    display:block;
}

.hero-image:hover img{

    transform:scale(1.02);

    transition:.6s;

}
.home-hero p{
    font-size:17px;
    line-height:1.6;
    margin-bottom:28px;
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-down{

    text-align:center;

    margin-top:40px;

    color:var(--gold);

    animation:bounce 2s infinite;

}

.scroll-down span{

    display:block;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

}

/* =====================================================
   HERO MOBIEL
===================================================== */

@media (max-width:900px){

    .hero{

        min-height:auto;

        padding:60px 0;

    }

    .hero-content{

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

    .hero-right{

        order:1;

    }

    .hero-left{

        order:2;

        padding:0;

    }

    .hero-left p{

        max-width:100%;

    }

    .hero-image{

        height:350px;

    }

    .hero-buttons{

        justify-content:center;

    }

}
/* =====================================================
   USP / WAAROM MOMENT & MEER
===================================================== */

.welcome{

    padding:20px 0 30px;

    position:relative;

    background:var(--cream);

}
.usp-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
    max-width:1280px;
    margin:0 auto;

}

.usp-card{

    background:white;

    padding:30px 25px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}

.usp-card:hover{

    transform:translateY(-14px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.usp-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:rgba(181,139,75,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.usp-icon i{

    font-size:28px;

    color:var(--gold);

}

.usp-card h3{

    margin-bottom:15px 0 10px;

}
.usp-card p{

    font-size:15px;

    line-height:1.6;

    margin:0;

}



/* =====================================================
   OVER ONS
===================================================== */

.about-home{

    background:var(--champagne);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.about-content p{

    margin-bottom:25px;

}

.signature{

    font-family:"Great Vibes",cursive;

    font-size:42px;

    color:var(--gold);

}

/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar{

    background:#faf7f2;

    padding:35px 0;

}

.trust-bar .container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.trust-item i{

    font-size:34px;

    color:var(--gold);

}

.trust-item strong{

    display:block;

    font-family:"Cormorant Garamond",serif;

    font-size:24px;

    color:var(--dark);

}

.trust-item span{

    color:#666;

    font-size:14px;

}

/* =====================================================
   TABLET & MOBIEL
===================================================== */

@media(max-width:900px){

    .usp-grid{

        grid-template-columns:1fr;

    }

    .about-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .about-content{

        text-align:center;

    }

    .trust-bar .container{

        grid-template-columns:1fr;

        gap:25px;

    }

}

/* =====================================================
   PAKKETTEN
===================================================== */

.packages{

    padding:20px 0;

    background:#ffffff;

    text-align:center;

}


/* TITEL + INTRO */

.packages .section-title{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}


.section-intro{

    max-width:650px;

    margin:20px auto 45px;

    text-align:center;

}



/* GRID */

.packages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    align-items:stretch;

    padding:25px 0;

}



/* PACKAGE KAART */

.package{

    position:relative;

    background:white;

    border-radius:28px;

    padding:30px 25px;

    min-height:520px;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    flex-direction:column;

}


.package:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}



/* TITELS */

.package h3{

    font-size:34px;

    margin-bottom:15px;

}



/* UREN */

.package-hours{

    color:var(--gold);

    font-weight:600;

    margin-bottom:20px;

}



/* PRIJS */

.package-price{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    font-weight:700;

    color:var(--gold);

    margin-bottom:10px;

}


.package.featured .package-price{

    font-size:58px;

}



/* LIJST */

.package ul{

    margin-bottom:25px;

}


.package li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:8px;

    text-align:left;

}


.package li i{

    color:var(--gold);

}



/* KNOPPEN ONDERAAN */

.package .button-gold,
.package .button-outline{

    width:100%;

    justify-content:center;

    margin-top:auto;

}



/* MEEST GEKOZEN */

.featured{

    border:2px solid var(--gold);

    transform:scale(1.03);

}


.featured:hover{

    transform:scale(1.03) translateY(-10px);

}


.featured-label{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:var(--gold);

    color:white;

    padding:10px 22px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

}



/* NOTITIE */

.package-note{

    font-size:14px;

    color:#8b8176;

    margin-bottom:25px;

    font-style:italic;

}

/* =====================================================
   MOBIEL
===================================================== */

@media(max-width:900px){

    .packages-grid{

        grid-template-columns:1fr;

    }

    .package.featured{

        transform:none;

    }

}

/* =====================================================
   GALERIJ
===================================================== */

.gallery{

    padding:30px 0;
    background:var(--cream);
    text-align:center;

}

.gallery-slider{

    position:relative;
    overflow:hidden;

    max-width:1300px;
    margin:0 auto;

}

.gallery-track{

    overflow:hidden;

}

.gallery-grid{

    display:flex;

    gap:20px;

    transition:transform .6s ease;

}

.gallery-grid img{

    flex:0 0 calc((100% - 80px) / 4);

    height:260px;

    object-fit:cover;

    border-radius:22px;

    box-shadow:var(--shadow);

    cursor:pointer;

    transition:.35s;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

.gallery-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:white;

    color:var(--gold);

    box-shadow:var(--shadow);

    cursor:pointer;

    z-index:50;

    transition:.3s;

}

.gallery-btn:hover{

    background:var(--gold);

    color:white;

}

.gallery-btn.prev{

    left:15px;

}

.gallery-btn.next{

    right:15px;

}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:20px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:50px;

    cursor:pointer;

}

/* =====================================================
   MOBIEL
===================================================== */

@media(max-width:900px){

    .gallery-grid img{

        flex:0 0 85%;

        width:85%;

        height:260px;

    }

    .button-prev,
    .button-next{

        display:none;

    }

}/* =====================================================
   REVIEWS
===================================================== */

.reviews{

    padding:45px 0;

    background:white;

    text-align:center;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:30px;

}

.review{

    background:var(--cream);

    padding:25px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.review:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.stars{

    color:var(--gold);

    font-size:20px;

    margin-bottom:12px;

}

.review p{

    font-style:italic;

    margin-bottom:15px;

    line-height:1.6;

}

.review h4{

    color:var(--gold);

}

/* =====================================================
   CTA
===================================================== */

.cta{

    background:linear-gradient(
        135deg,
        var(--dark),
        #3d352f
    );

    color:#fff;

    text-align:center;

}

.cta h2{

    color:#fff;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:#ececec;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* =====================================================
   MOBIEL
===================================================== */

@media(max-width:900px){

    .reviews-grid{

        grid-template-columns:1fr;

    }

}
/* =====================================================
   FOOTER
===================================================== */

.footer{

    background:var(--dark);

    color:#fff;

    padding:40px 0 0;

}

.footer-wrapper{

    display:grid;

    grid-template-columns:1.7fr 1fr 1fr;

    gap:50px;

}

.footer h2,
.footer h3{

    color:#fff;

    margin-bottom:18px;

}

.footer p{

    color:#d9d9d9;

}

.footer-center{

    border-left:1px solid rgba(181,139,75,.25);

    padding-left:35px;

}

.footer-center p{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

}

.footer-center i{

    color:var(--gold);

    width:22px;

}

.footer-right{

    text-align:center;

}

.footer-right img{

    width:220px;

    margin:auto;

}

.socials{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:20px;

}

.socials a{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(181,139,75,.18);

    color:var(--gold);

    transition:var(--transition);

}

.socials a:hover{

    background:var(--gold);

    color:#fff;

    transform:translateY(-4px);

}

.copyright{

    margin-top:45px;

    padding:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#bdbdbd;

    font-size:14px;

}

/* =====================================================
   FOOTER MOBIEL
===================================================== */

@media(max-width:900px){

    .footer-wrapper{

        grid-template-columns:1fr;

        text-align:center;

        gap:40px;

    }

    .footer-center{

        border:none;

        padding:0;

    }

    .footer-center p{

        justify-content:center;

    }

}
/* =====================================================
   CONTACT
===================================================== */

.contact{

    background:var(--cream);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-info h2{

    margin-bottom:20px;

}

.contact-info p{

    margin-bottom:18px;

}

.contact-info ul{

    margin-top:30px;

}

.contact-info li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.contact-info i{

    width:22px;

    color:var(--gold);

    font-size:20px;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.contact-form .form-group{

    margin-bottom:20px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:14px;

    background:#fff;

}

.contact-form textarea{

    min-height:160px;

    resize:vertical;

}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    z-index:9999;

    transition:.3s;

}

.whatsapp-button:hover{

    transform:scale(1.08);

}

/* =====================================================
   SCROLL TO TOP
===================================================== */

.top-button{

    position:fixed;

    right:25px;

    bottom:100px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    box-shadow:var(--shadow);

    z-index:999;

}

.top-button.active{

    opacity:1;

    visibility:visible;

}

.top-button:hover{

    transform:translateY(-4px);

}

/* =====================================================
   CONTACT MOBIEL
===================================================== */

@media(max-width:900px){

    .contact-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

}
/* =====================================================
   FAQ
===================================================== */

.faq{

    background:var(--champagne);

    padding:50px 0;

}

.faq .section-subtitle{

    display:block;

    text-align:center;

}

.faq h2{

    text-align:center;

    margin-bottom:10px;

}

.faq .section-intro{

    max-width:650px;

    margin:0 auto 35px;

    text-align:center;

}

.faq-container{

    max-width:800px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:16px;

    margin-bottom:12px;

    overflow:hidden;

    box-shadow:var(--shadow);

    border:1px solid rgba(181,139,75,.12);

    transition:var(--transition);

}

.faq-item:hover{

    transform:translateY(-2px);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:18px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-weight:600;

    color:var(--dark);

    font-size:16px;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    width:32px;

    height:32px;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.3s;

    flex-shrink:0;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 24px 20px;

    line-height:1.7;

}
/* =====================================================
   AANBOD OVERZICHT
===================================================== */

.aanbod-overzicht{

    background:var(--cream);

}

.aanbod-intro{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.aanbod-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.aanbod-card{

    background:#fff;

    border-radius:26px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid rgba(181,139,75,.10);

}

.aanbod-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.aanbod-card i{

    font-size:52px;

    color:var(--gold);

    margin-bottom:22px;

}

.aanbod-card h3{

    margin-bottom:15px;

}

.aanbod-card p{

    font-size:15px;

    line-height:1.8;

    margin-bottom:25px;

}

.aanbod-card .button-outline{

    width:100%;

}

/* =====================================================
   PRODUCTSECTIES
===================================================== */

.product-section{

    padding:100px 0;

    background:#fff;

}

.product-section:nth-child(even){

    background:var(--cream);

}

.product-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.product-image img{

    width:100%;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.product-content h2{

    margin-bottom:20px;

}

.product-content p{

    margin-bottom:25px;

}

.product-features{

    margin:35px 0;

}

.product-features li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:15px;

}

.product-features i{

    color:var(--gold);

    margin-top:5px;

}

.product-section.alternate .product-image{

    order:2;

}

.product-section.alternate .product-content{

    order:1;

}

/* =====================================================
   MOBIEL
===================================================== */

@media(max-width:900px){

    .product-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .product-section.alternate .product-image,

    .product-section.alternate .product-content{

        order:unset;

    }

}
/* =====================================================
   RESERVERINGSWIZARD
===================================================== */

.wizard{

    background:var(--cream);

}

.wizard-progress{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-bottom:50px;

}

.step{

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#9b8f82;

    font-size:14px;

    font-weight:600;

}

.circle{

    width:46px;

    height:46px;

    border-radius:50%;

    background:var(--sand);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:10px;

    transition:var(--transition);

}

.step.active .circle{

    background:var(--gold);

    color:#fff;

}

.line{

    width:80px;

    height:2px;

    background:var(--champagne);

}

.wizard-page{

    display:none;

}

.wizard-page.active{

    display:block;

}

.form-card{

    background:#fff;

    border-radius:30px;

    padding:50px;

    box-shadow:var(--shadow);

}

.form-card h2{

    margin-bottom:15px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:35px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    font-weight:600;

    margin-bottom:8px;

}

.form-group input,
.form-group textarea,
.form-group select{

    padding:16px;

    border-radius:14px;

    border:1px solid #ddd;

    background:#fff;

}

.form-group textarea{

    min-height:140px;

    resize:vertical;

}

.wizard-buttons{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-top:40px;

}
.package-card{
    position: relative;
}

.package-badge{
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
/* Stap 3 - pakketten */
.package-options{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.package-card{
    position:relative;
    min-height:220px;
}

.package-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

/* =====================================================
   EVENT KAARTEN
===================================================== */

.event-options{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:35px;

}

.event-card{

    background:#fff;

    border-radius:22px;

    border:1px solid rgba(181,139,75,.20);

    padding:35px 25px;

    text-align:center;

    cursor:pointer;

    transition:var(--transition);

}

.event-card:hover{

    transform:translateY(-6px);

}

.event-card.selected{

    border:2px solid var(--gold);

    background:#fffaf4;

}

.event-icon{

    font-size:44px;

    margin-bottom:18px;

}

.choice-message{

    display:none;

    margin-top:30px;

    padding:18px;

    border-radius:16px;

    background:#fffaf4;

    color:var(--gold);

    text-align:center;

}

/* =====================================================
   SAMENVATTING
===================================================== */

.summary-card{

    background:#fffaf4;

    border-radius:22px;

    padding:30px;

    margin:35px 0;

}

.summary-item{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:16px 0;

    border-bottom:1px solid rgba(181,139,75,.15);

}

.summary-item:last-child{

    border-bottom:none;

}

/* =====================================================
   MOBIEL
===================================================== */

@media(max-width:900px){

    .wizard-progress{

        gap:8px;

    }

    .line{

        width:35px;

    }

    .form-card{

        padding:30px 22px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .event-options{

        grid-template-columns:1fr;

    }

    .wizard-buttons{

        flex-direction:column;

    }

    .summary-item{

        flex-direction:column;

        gap:5px;

    }

}

/* ===========================================
   BEDANKTPAGINA
=========================================== */

.thankyou-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    text-align: center;
    padding: 80px 20px;
}

.thankyou-box {
    max-width: 650px;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.thankyou-box h1 {
    font-family: var(--heading-font);
    font-size: 55px;
    color: var(--dark);
    margin-bottom: 20px;
}

.thankyou-box .script {
    font-family: var(--script-font);
    color: var(--gold);
    font-size: 65px;
    display: block;
    margin-top: -15px;
    margin-bottom: 25px;
}

.thankyou-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--taupe);
    margin-bottom: 35px;
}


.thankyou-box .button-gold {
    display: inline-block;
}
/* LOGO BEDANKTPAGINA */

.thankyou-logo {

    width:220px;
    max-width:80%;
    height:auto;

    display:block;

    margin:0 auto 25px;

}
/* ===========================================
   LUXE SCROLLBAR
=========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9c753b;
}


/* Firefox scrollbar */

html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}



/* ===========================================
   SMOOTH SCROLL
=========================================== */

html {
    scroll-behavior: smooth;
}



/* ===========================================
   SUBTIELE PAGINA ANIMATIES
=========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}



/* ===========================================
   HOVER VERFIJNINGEN
=========================================== */

a,
button {
    transition: all 0.3s ease;
}


img {
    transition: transform 0.5s ease;
}


img:hover {
    transform: scale(1.02);
}

/* ==========================================
   OFFERTE FORMULIER
========================================== */

/* ... bestaande formulier CSS ... */

.date-note{

    display:block;

    margin-top:8px;

    color:var(--taupe);

    font-size:14px;

    font-style:italic;

}

/* ===========================================
   TEKST SELECTIE KLEUR
=========================================== */

::selection {
    background: var(--gold);
    color: #ffffff;
}
/* ===========================================
   KLEINE LUXE AFWERKINGEN
=========================================== */


/* voorkomt ongewenst horizontaal schuiven */

html,
body {
    overflow-x: hidden;
}



/* nette focus voor formulieren */

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(181,139,75,0.15);
}



/* nette overgang voor knoppen */

.button-gold,
.button-outline {
    position: relative;
    overflow: hidden;
}



/* kleine glans beweging op luxe knoppen */

.button-gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.6s ease;
}


.button-gold:hover::after {
    left: 120%;
}



/* standaard sectie overgang */

section {
    position: relative;
}
/* ===========================================
   RESPONSIVE BASIS AFWERKING
=========================================== */


/* tablets en kleiner */

@media (max-width: 1100px) {

    .container {
        width: 90%;
    }


    h1 {
        font-size: 50px;
    }


    h2 {
        font-size: 42px;
    }


}



/* mobiel */

@media (max-width: 768px) {


    .container {
        width: 92%;
    }


    h1 {
        font-size: 38px;
        line-height: 1.1;
    }


    h2 {
        font-size: 34px;
    }


    p {
        font-size: 16px;
        line-height: 1.7;
    }


    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    h1 {
        font-size: 32px;
    }


    h2 {
        font-size: 30px;
    }


    p {
        font-size: 15px;
    }


}
/* ===========================================
   HEADER RESPONSIVE AFWERKING
=========================================== */


@media (max-width: 768px) {


    header .container {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .logo img {
        height: 90px;
        width: auto;
    }


    nav {
        display: none;
    }


    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }



    /* mobiel menu */

    nav.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--cream);
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        z-index: 999;
    }


    nav a {
        font-size: 17px;
        text-align: center;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    header .container {
        height: 75px;
    }


    .logo img {
        height: 75px;
    }


}
/* ===========================================
   HERO RESPONSIVE AFWERKING
=========================================== */


@media (max-width: 1100px) {


    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }


    .hero-left {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 50px;
        text-align: center;
    }


    .hero-image {
        height: 55vh;
    }


}



/* mobiel */

@media (max-width: 768px) {


    .hero {
        display: flex;
        flex-direction: column;
    }


    .hero-left {
        padding: 40px 20px;
        text-align: center;
    }


    .hero-left h1 {
        font-size: 38px;
    }


    .hero-left .script {
        font-size: 55px;
        margin-top: -10px;
    }


    .hero-image {
        width: 100%;
        height: 45vh;
    }


    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }


    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    .hero-left {
        padding-top: 30px;
    }


    .hero-left h1 {
        font-size: 32px;
    }


    .hero-left .script {
        font-size: 45px;
    }


    .hero-image {
        height: 38vh;
    }


}

/* ===========================================
   PACKAGES RESPONSIVE AFWERKING
=========================================== */


.package {
    display: flex;
    flex-direction: column;
}


.package .button-gold {
    margin-top: auto;
}



/* tablet */

@media (max-width: 1100px) {


    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    .package {
        min-height: 480px;
        padding: 35px 25px;
    }


}



/* mobiel */

@media (max-width: 768px) {


    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .package {
        min-height: auto;
        padding: 35px 25px;
    }


    .package h3 {
        font-size: 28px;
    }


    .package .price {
        font-size: 34px;
    }


    .package ul {
        margin-bottom: 25px;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    .package {
        padding: 30px 20px;
    }


    .package h3 {
        font-size: 25px;
    }


    .package .price {
        font-size: 30px;
    }


}
/* ===========================================
   GALLERY RESPONSIVE AFWERKING
=========================================== */


.gallery-slider {
    overflow: hidden;
}


.gallery-track {
    display: flex;
    gap: 20px;
}


.gallery-track img {
    object-fit: cover;
    border-radius: 18px;
}



/* tablet */

@media (max-width: 1100px) {


    .gallery-track img {
        flex: 0 0 calc(33.333% - 14px);
        height: 280px;
    }


}



/* mobiel */

@media (max-width: 768px) {


    .gallery-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }


    .gallery-slider::-webkit-scrollbar {
        display: none;
    }


    .gallery-track {
        gap: 15px;
    }


    .gallery-track img {
        flex: 0 0 85%;
        height: 320px;
        scroll-snap-align: center;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    .gallery-track img {
        height: 260px;
    }


}
/* ===========================================
   REVIEWS - CTA - FOOTER RESPONSIVE
=========================================== */


/* tablet */

@media (max-width: 1100px) {


    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    .cta-content {
        padding: 50px 35px;
    }


}



/* mobiel */

@media (max-width: 768px) {


    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .review-card {
        padding: 30px 25px;
    }


    .cta-content {
        text-align: center;
        padding: 45px 25px;
    }


    .cta-content h2 {
        font-size: 34px;
    }


    .cta-content p {
        font-size: 16px;
    }


    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }


    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }



    footer {
        text-align: center;
    }


    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}



/* kleine telefoons */

@media (max-width: 480px) {


    .review-card {
        padding: 25px 20px;
    }


    .cta-content h2 {
        font-size: 30px;
    }


}
/* ===========================================
   LAATSTE RESPONSIVE SCHOONMAAK
=========================================== */


/* afbeeldingen altijd netjes */

img {
    max-width: 100%;
    height: auto;
    display: block;
}



/* buttons algemeen mobiel veilig */

.button-gold,
.button-outline {
    max-width: 100%;
}



/* nette mobiele marges */

@media (max-width:768px){

    .button-gold,
    .button-outline{

        padding:14px 28px;

    }

    .section-title{

        text-align:center;

    }

}
.container{
    max-width:1280px;
    width:94%;
    margin:0 auto;
}

/* extra kleine schermen */

@media (max-width:480px){

    .button-gold,
    .button-outline{

        width:100%;

        text-align:center;

    }

}
.aanbod-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}
/* =====================================================
   FIX AANBOD KAARTEN
===================================================== */

.aanbod-overzicht .container{
    width:94%;
    max-width:1280px;
    margin:0 auto;
}


.aanbod-grid{

    display:grid !important;

    grid-template-columns:repeat(5, 1fr) !important;

    gap:25px;

    width:100%;

}


.aanbod-card{

    width:100%;

}


/* Tablet */

@media(max-width:1100px){

    .aanbod-grid{

        grid-template-columns:repeat(3,1fr) !important;

    }

}


/* Mobiel */

@media(max-width:768px){

    .aanbod-grid{

        grid-template-columns:1fr !important;

    }

}
/* =====================================================
   AANBOD COMPACTER
===================================================== */

.aanbod-overzicht{

    padding:45px 0;

}


.aanbod-grid{

    gap:18px;

}


.aanbod-card{

    min-height:160px;

    padding:25px 18px;

    border-radius:22px;

}


.aanbod-card i{

    font-size:38px;

    margin-bottom:12px;

}


.aanbod-card h3{

    font-size:23px;

    margin-bottom:8px;

}


.aanbod-card p{

    font-size:13px;

    line-height:1.5;

    margin-bottom:0;

}
