:root {
    --primary: #0f6fd9;       /* blauw */
    --primary-dark: #0b4ca0;
    --accent: #e0245e;        /* rood/roze */
    --bg: #f4f6fb;
    --text: #111827;
    --muted: #6b7280;
    --white: #ffffff;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, #e0edff, #f9fafb 55%, #fce7f3);
    line-height: 1.6;
}

/* GENERIC */

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(90deg, rgba(15,23,42,0.96), rgba(30,64,175,0.94));
    color: var(--white);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1.25rem;
}

.logo {
    display:flex;
    align-items:center;
}

.logo-img {
    height:60px;          /* logo + cirkel groter */
    width:60px;
    object-fit:contain;

    background:white;
    padding:3px;          /* minder padding = logo groter zichtbaar */
    border-radius:50%;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

@media(max-width:768px){
    .logo-img { height:50px; width:50px; padding:3px; }
}



nav ul {
    list-style: none;
    display: flex;
    gap: 1.4rem;
    align-items: center;
    margin: 0;
}

nav ul li a {
    font-size: .95rem;
    color: #e5e7eb;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

nav ul li a:hover {
    border-color: #e5e7eb;
}

.bel-btn {
    padding: .5rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(248,113,113,.6);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-size: 1.6rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: .6rem;
    padding: 0 1.25rem 1rem;
    background: rgba(15,23,42,0.97);
}

.mobile-menu a {
    color: #e5e7eb;
    font-size: .95rem;
}

/* HERO */

.hero {
    padding: 2.5rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    color: var(--primary-dark);
    margin-bottom: .5rem;
}

.hero h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.9rem);
    line-height: 1.15;
    margin: 0 0 .9rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero-text {
    font-size: .98rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.3rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1rem;
}

.primary-btn {
    display: inline-block;
    padding: .7rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #f9fafb;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(15,118,210,.6);
    opacity: .96;
}

.secondary-btn {
    display: inline-block;
    padding: .65rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.8);
    color: #0f172a;
    background: #fff;
    font-size: .9rem;
}

.score {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .5rem;
}

/* HERO BOX */

.hero-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e5e7eb;
    padding: 1.7rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-box::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 0 0, rgba(59,130,246,.3), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(248,113,113,.25), transparent 55%);
    opacity: .9;
}

.hero-box h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.slot-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    margin-bottom: .6rem;
}

.hero-note {
    position: relative;
    z-index: 1;
    font-size: .8rem;
    color: #cbd5f5;
    margin-top: .8rem;
}

/* SECTIONS GENERIC */

section {
    padding: 2rem 0;
}

h2 {
    margin: 0 0 .6rem;
    font-size: 1.6rem;
}

.sectie-intro {
    font-size: .95rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

/* DIENSTEN */

.diensten {
    background: rgba(255,255,255,.96);
    margin-top: .5rem;
}

.dienst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 1.5rem;
}

.dienst {
    background: #f9fafb;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.1rem 1.25rem;
    box-shadow: 0 14px 30px rgba(15,23,42,.06);
    border: 1px solid rgba(226,232,240,.9);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dienst:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15,23,42,.14);
    border-color: rgba(59,130,246,.55);
}

.dienst h3 {
    margin: .5rem 0 .4rem;
    font-size: 1rem;
}

.dienst p {
    font-size: .9rem;
    color: var(--muted);
}

.icoon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #fee2e2, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

/* WERKGEBIED */

.werkgebied {
    background: transparent;
}

.gebied-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
    gap: .75rem;
}

.gebied-grid a {
    display: block;
    padding: .6rem .8rem;
    border-radius: .9rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(209,213,219,.9);
    font-size: .9rem;
    color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(15,23,42,.04);
    transition: var(--transition);
}

.gebied-grid a:hover {
    border-color: var(--accent);
    box-shadow: 0 14px 35px rgba(190,24,93,.22);
}

/* OVER */

.over {
    background: rgba(255,255,255,.96);
}

.over-grid {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 2rem;
}

.over p {
    font-size: .95rem;
    color: var(--muted);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: .4rem;
    font-size: .9rem;
}

.over-card {
    background: linear-gradient(135deg, #0f172a, #111827);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
    color: #e5e7eb;
    box-shadow: var(--shadow-soft);
}

/* CONTACT */

.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 1.8rem;
}

form {
    display: grid;
    gap: .7rem;
    font-size: .9rem;
}

label {
    font-weight: 500;
    font-size: .83rem;
}

input,
textarea {
    width: 100%;
    border-radius: .8rem;
    border: 1px solid rgba(148,163,184,.8);
    padding: .55rem .75rem;
    font-size: .9rem;
    font-family: inherit;
    outline: none;
    background: #f9fafb;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(59,130,246,.35);
    background: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    display: none;
    font-size: .8rem;
    color: var(--muted);
    margin-top: .4rem;
}

.contact-info {
    font-size: .9rem;
    color: var(--muted);
}

.contact-info p {
    margin-bottom: .9rem;
}

/* FOOTER */

footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.4rem 0 1.6rem;
    font-size: .8rem;
    margin-top: 1rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e5e7eb;
}

.to-top {
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.8);
    padding: .35rem .9rem;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
}

/* WERKGEBIED PAGINA'S */

.hero-gebied {
    padding: 2.2rem 0 1.4rem;
}

.hero-gebied h1 {
    font-size: 2.1rem;
    margin: .2rem 0 .6rem;
}

.hero-gebied p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 38rem;
}

.gebied-main {
    padding: 1rem 0 2.5rem;
}

.gebied-main-grid {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 2rem;
}

.gebied-main-grid h2 {
    font-size: 1.3rem;
}

.gebied-main-grid p {
    font-size: .93rem;
    color: var(--muted);
}

.gebied-list {
    list-style: none;
    padding: 0;
    margin: .6rem 0 0;
    font-size: .9rem;
    color: var(--muted);
}

.gebied-card {
    background: rgba(255,255,255,.95);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.1rem;
    box-shadow: 0 16px 40px rgba(15,23,42,.08);
    border: 1px solid rgba(226,232,240,.9);
}

.abonnementen {
    padding: 60px 0;
}

        .whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;

    width: 65px;
    height: 65px;
    background-color: #25D366 !important; /* GROENE ACHTERGROND */
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 999999;
    cursor: pointer;
}

.whatsapp-float svg {
    fill: #ffffff !important; /* WIT ICON */
    width: 34px;
    height: 34px;
    pointer-events: none;
}

.abonnementen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.abonnement {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    position: relative;
}

.abonnement h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
}

.prijs {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 700;
}

.prijs span {
   font-size: 14px;
   font-weight: 400;
}

.abonnement ul {
    margin: 20px 0;
    padding-left: 20px;
}

.abonnement ul li {
    margin-bottom: 6px;
}

.opmerking {
    margin: 10px 0;
    font-style: italic;
    color: #666;
}

.abonnement-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.2s;
}

.abonnement-btn:hover {
    background: #005fcc;
}

.label-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff8a00;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
}

.plus {
    border: 2px solid #ff8a00;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    nav ul {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-grid,
    .over-grid,
    .contact-grid,
    .gebied-main-grid {
        grid-template-columns: minmax(0,1fr);
    }
    .hero {
        padding-top: 1.8rem;
    }
}

@media (max-width: 640px) {
    .hero-grid {
        gap: 1.8rem;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .gebied-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    }
}

.dienst-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--primary, #0066ff);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.dienst-btn:hover {
    background: #004ec2;
}


/* --- CONTACT FORM UPGRADE --- */

form {
    background: #ffffff;
    padding: 25px 25px 30px;
    border-radius: 1.2rem;
    box-shadow: 0 14px 40px rgba(15,23,42,0.08);
    border: 1px solid rgba(226,232,240,.8);
}

form label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

form input,
form select,
form textarea {
    background: #f8fafc;
    border-radius: .9rem;
    padding: .7rem .9rem;
    border: 1px solid rgba(148,163,184,.6);
    font-size: .92rem;
    font-family: inherit;
    transition: var(--transition);
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,.25);
    background: #ffffff;
}

/* Mooie select dropdown */
form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%),
                      linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1rem),
                         calc(100% - 13px) calc(1rem);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* Submit button upgrade */
form .primary-btn {
    margin-top: 8px;
    padding: .85rem 1.5rem;
    font-size: .95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 28px rgba(15,118,210,.25);
}

form .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15,118,210,.38);
}

/* Kleine spacing tweaks voor mooier geheel */
.contact-grid {
    align-items: start;
}

form textarea {
    min-height: 140px;
}

.galerij { padding: 80px 20px; background:#f7f7f7; }
.galerij h2 { text-align:center; font-size:32px; margin-bottom:10px; }
.galerij .sectie-intro { text-align:center; margin-bottom:40px; color:#444; }

.gallery-grid{
    display:grid;
    gap:12px;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
}

.gallery-grid img{
    width:100%; height:200px; object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    transition:.3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 6px 18px rgba(0,0,0,.2);
}

/* 🔍 Lightbox popup */
.lightbox{
    display:none;
    position:fixed; top:0; left:0; width:100%; height:100%;
    background:rgba(0,0,0,.85);
    justify-content:center; align-items:center;
    z-index:10000;
}
.lightbox img{
    max-width:85%;
    max-height:85%;
    border-radius:6px;
}
.lightbox .close{
    position:absolute; top:30px; right:40px;
    font-size:42px; color:white;
    cursor:pointer; font-weight:bold;
}
.lightbox .close:hover{ opacity:.7; }

.over-foto-blok {
    padding: 0 0 30px; /* Mooie spacing onder de foto */
    text-align: center;
}

.over-foto-blok img.over-foto {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,.12);
    transition: .3s ease;
}

.over-foto-blok img.over-foto:hover {
    transform: scale(1.02);
}

.hero-big-logo {
    width: 220px;     /* groter logo */
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

@media (max-width: 700px) {
    .hero-big-logo {
        width: 160px; /* kleinere variant voor mobiel */
    }
}

.contact-logo{
    width:170px;
    display:block;
    margin:10px auto 25px;
    opacity:0.95;
}

.footer-logo{
    width:130px;
    display:block;
    margin:0 auto 20px;
    filter:brightness(1.1);
}
