/* ===== BASIS ===== */
body {
    margin: 0;
	font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #fac073, #7fe9ff);
    background-attachment: fixed;
}

img {
    max-width: 900px;
}

h1, h2, h3 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #333;
}


p {
    line-height: 1.6;
    color: #444;
}


/* ===== PAGE WRAPPER ===== */
.wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* ===== HEADER ===== */
.site-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo img {
    max-width: 600px;
    margin-bottom: 1rem;
}


/* ===== NAV MENU ===== */
.main-nav {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;                     /* zelf toegevoegd */
}

.main-nav a {
    flex: 1;
    text-align: center;
    padding: .5rem 0;             /* lager gemaakt */
    background: rgba(240,248,255,0.65); /* subtiel lichtblauw */
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    color: #003e7e;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize !important;    /* elk woord begint met hoofdletter */
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

/* HOVER EFFECT */
.main-nav a:hover {
    background: rgba(240,248,255,1);      /* gewoon wat lichter */
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    color: #000;
}

/* OPTION: actieve pagina */
.main-nav a.active {
    background: #035097;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ===== SECTION: HERO ===== */
.hero {
    padding: 2rem 2rem;
    text-align: center;
}

.cta-buttons .btn {
    padding: .8rem 1.5rem;
    display: inline-block;
    margin-right: 1rem;
    background: #035097;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.cta-buttons .btn.secondary {
    background: #666;
}


/* ===== USP GRID ===== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.usp {
    background: #eef4fb;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}


/* ===== TEASER-SCHEMA ===== */
.teaser-schema {
    text-align: center;
    padding: 2rem;
}


/* ===== CTA SECTION BOTTOM ===== */
.cta-bottom {
    text-align: center;
    padding: 2rem 2rem;
    margin-top: 0rem;
    margin-bottom: 2rem;
    background: #f7faff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.cta-bottom h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-bottom p {
    max-width: 640px;
    margin: 0 auto 2rem auto;
}

.btn {
    background: #035097;
    color: #fff;
    padding: .8rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background .3s ease;
}

.btn:hover {
    background: #002f5e;
}


/* ===== FOOTER ===== */
.site-footer {
    padding: 1rem 2rem;
    background: #fac073;
    text-align: center;
    border-radius:8px;
}
.site-footer a {
	color:#000;
	text-decoration:underline;
}
.site-footer a:hover {
	color:#000;
	background: #f1f1f1;
	text-decoration:underline;
}
.usp {
    background: #eef4fb;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.usp::before {
    content: "✔";        /* eventueel ander symbool */
    display: block;
    font-size: 1.3rem;
    margin-bottom: .4rem;
    color: #003e7e;
}

.usp strong {
    display: block;
    font-weight: 600;
    margin-bottom: .3rem;
    color: #003e7e;
    text-decoration: underline;
}

.usp {
    background: #eef4fb;
    padding: 1rem 1rem 1rem 1.4rem;
    border-left: 4px solid #003e7e;   /* kleur kan zachter */
    border-radius: 6px;
    font-weight: 500;
}
.usp:hover {
    background: #e3f2ff;
    transition: background .3s ease;
}

/* ==== CAROUSEL CLIENTS ==== */
.client-carousel {
    width: 100%;
    background: rgba(240,248,255,0.7);
    padding: 1.5rem 0;
    margin: 2rem 0 0 0;
    border-radius: 12px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #003e7e;
}

/* standaard: alles verbergen */
.client-slide {
    display: none;
}

/* alleen de actieve tonen */
.client-slide.active {
    display: block;
}


.integration-panel {
    background: #e7f6ff;  /* zacht blauw, valt op maar niet schreeuwerig */
    border-left: 6px solid #0074b8;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.integration-panel h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #003e7e;
}

.integration-panel p {
    max-width: 700px;
    margin: 0.5rem auto;
    font-size: 1.1rem;
}

.integration-panel a {
    color: #003e7e;
    text-decoration: underline;
}
.integration-panel a:hover {
    text-decoration: none;
}

/* ===== ZEZAR KOPPELING PANEL ===== */
.zezar-koppeling {
    margin: 3rem 0;
    padding: 2rem;
    background: #e9f6ff; /* licht icy blauw */
    border-left: 6px solid #003e7e; 
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

.zezar-koppeling h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #003e7e;
    font-weight: 600;
}

.zezar-koppeling p {
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
}

.zezar-koppeling a {
    color: #003e7e;
    font-weight: 600;
    text-decoration: underline;
}

.zezar-koppeling a:hover {
    text-decoration: none;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.contact-form label {
    display: block;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form .btn {
    margin-top: .5rem;
}

.ok {
    background: #e6ffed;
    border: 1px solid #b4e2c1;
    padding: .8rem;
    border-radius: 6px;
    color: #2d7738;
}

.error {
    background: #ffecec;
    border: 1px solid #e2b4b4;
    padding: .8rem;
    border-radius: 6px;
    color: #8f2a2a;
}

/* ===== DUBBEL SCHEMA OP INDEX ===== */
.duo-schema {
    text-align: center;
    padding: 2rem 0;
}

.duo-schema .schema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.schema-box {
    background: #f7faff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    text-decoration: none;          /* zodat link geen underline toont */
    color: inherit;                 /* behoud kleuren */
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;                 /* hele box klikbaar */
}

.schema-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.schema-box img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.schema-caption {
    font-size: 1.1rem;
    color: #003e7e;
    font-weight: 600;
    margin-top: .5rem;
}

/* ===== GRID-2 LAYOUT ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Op mobiel → 1 kolom */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ===== CARD STYLE ===== */
.card {
    background: #f7faff;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.card h2 {
    margin-top: 0;
    color: #003e7e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.card li {
    margin-bottom: .6rem;
}

@media (max-width: 600px) {

    .main-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;   /* 2 naast elkaar */
        gap: 8px;
    }

    .main-nav a {
        padding: 0.7rem 0;
        font-size: 0.9rem;               /* iets kleiner, niet té klein */
        border-radius: 6px;
    }
}
