/* =========================
   HOMEPAGE
========================= */

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

/* ========================================
   HERO
======================================== */

.hero-section{

    background:linear-gradient(135deg,#007bff,#0056b3);

    border-radius:22px;

    padding:55px 40px;

    margin-bottom:40px;

    color:#fff;

    text-align:center;

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

.hero-content{

    max-width:760px;

    margin:0 auto;
}

.hero-section h1{

    font-size:42px;

    line-height:1.2;

    margin-bottom:18px;

    font-weight:800;
}

.hero-section p{

    font-size:19px;

    line-height:1.7;

    opacity:0.96;

    margin-bottom:28px;
}

/* knoppen */
.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

    display:inline-block;

    padding:14px 24px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:0.2s ease;
}

.btn-primary{

    background:#fff;

    color:#007bff;
}

.btn-primary:hover{

    transform:translateY(-2px);
}

.btn-secondary{

    background:rgba(255,255,255,0.18);

    color:#fff;

    border:1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover{

    background:rgba(255,255,255,0.28);
}

/* mobiel */
@media(max-width:768px){

    .hero-section{

        padding:40px 25px;
    }

    .hero-section h1{

        font-size:30px;
    }

    .hero-section p{

        font-size:17px;
    }

}

/* buttons */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.2s ease;
}

.btn-primary{
    background:#fff;
    color:#007bff;
}

.btn-primary:hover{
    background:#f1f1f1;
}

.btn-secondary{
    background:rgba(255,255,255,0.15);
    color:#fff;
    border:1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.25);
}

/* voordelen */
.benefits-section{
    margin-bottom:50px;
}

.benefits-section h2{
    font-size:32px;
    margin-bottom:25px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
    transition:0.2s ease;
}

.benefit-card:hover{
    transform:translateY(-4px);
}

.benefit-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.benefit-card p{
    color:#555;
    line-height:1.7;
}

/* CTA */
.cta-section{
    background:#fff;
    border-radius:18px;
    padding:45px;
    text-align:center;
    margin-bottom:50px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.cta-section h2{
    font-size:34px;
    margin-bottom:15px;
}

.cta-section p{
    color:#666;
    margin-bottom:25px;
    font-size:17px;
}

/* blogs */
.latest-blogs{
    margin-bottom:50px;
}

.latest-blogs h2{
    margin-bottom:25px;
    font-size:32px;
}

.blog-preview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.blog-preview-card{
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    min-height:280px;
    transition:0.2s ease;
}

.blog-preview-card:hover{
    transform:translateY(-4px);
}

.blog-preview-card h3{
    font-size:24px;
    margin-bottom:10px;
    line-height:1.4;
}

.blog-preview-card small{
    color:#888;
    margin-bottom:15px;
}

.blog-preview-card p{
    flex-grow:1;
    color:#555;
    line-height:1.7;
}

.blog-link{
    margin-top:20px;
    text-decoration:none;
    font-weight:700;
    color:#007bff;
}

/* advertentie */
.homepage-ad{
    margin:50px 0;
}

.ad-placeholder{
    background:#fff;
    border:2px dashed #ddd;
    border-radius:16px;
    min-height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#888;
}

/* SEO */
.seo-section{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.seo-section h2{
    font-size:30px;
    margin-bottom:20px;
}

.seo-section p{
    line-height:1.9;
    color:#555;
}

/* mobiel */
@media(max-width:768px){

    .hero-section{
        padding:35px 25px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .cta-section,
    .seo-section{
        padding:30px 20px;
    }

}
/* ========================================
   CAMPAIGN GRID
======================================== */

.campaign-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    margin-top:25px;
}

.campaign-card{
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;

    min-height:260px;

    transition:0.2s ease;
}

.campaign-card:hover{
    transform:translateY(-4px);
}

.campaign-card h3{
    font-size:22px;
    margin-bottom:15px;
    line-height:1.4;
}

.campaign-card p{
    flex-grow:1;
    color:#555;
    line-height:1.7;
}

.campaign-link{
    margin-top:20px;
    display:inline-block;
    text-decoration:none;
    font-weight:700;
    color:#007bff;
}

/* tablet */
@media(max-width:992px){

    .campaign-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* mobiel */
@media(max-width:768px){

    .campaign-grid{
        grid-template-columns:1fr;
    }

}
/* ========================================
   HOMEPAGE BANNER
======================================== */

.homepage-banner{

    background:#fff;

    border-radius:18px;

    padding:20px;

    text-align:center;

    box-shadow:0 4px 14px rgba(0,0,0,0.05);

    overflow:hidden;
}

.homepage-banner img{

    max-width:100%;

    height:auto;

    border-radius:12px;
}