
@charset "utf-8";
/*


*/

/* THEME VARIABELEN – LICHTER & KLEURRIJKER */
:root {
    /* Basisteksten */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.9);

    /* Default achtergrond (ocean-ish, maar lichter) */
    --bg-gradient: radial-gradient(circle at top,
        #0f172a 0%,
        #1d4ed8 28%,
        #22c1c3 55%,
        #a5b4fc 100%
    );

    /* Glas-achtige elementen – iets lichter */
    --glass-bg: rgba(255, 255, 255, 0.22);
    --glass-bg-hover: rgba(255, 255, 255, 0.28);
    --glass-border: rgba(255, 255, 255, 0.35);

    /* Accent kleuren (ocean) */
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.25);
    --accent-border: rgba(56, 189, 248, 0.9);
}

/* Thema: Ocean (default) – frisser blauw/turquoise */
body[data-theme="ocean"] {
    --bg-gradient: radial-gradient(circle at top,
        #0f172a 0%,
        #1d4ed8 25%,
        #22c1c3 55%,
        #a5b4fc 100%
    );
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.25);
    --accent-border: rgba(56, 189, 248, 0.95);
}

/* Algemene linkstijl */
a {
    color: #7ac7ff; /* zacht lichtblauw dat matcht met je gradients */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* Hover */
a:hover {
    color: #b5e4ff; /* lichter en zachter */
}

/* Actieve / visited links - geen paarse rommel meer */
a:visited {
    color: #88d0ff; 
}

/* Links in glas-secties (homepage intro, cards, etc.) */
.glass a {
    color: #cbe7ff; /* nog iets zachter vanwege donkere achtergrond */
}
.glass a:hover {
    color: white;
}


.homepage-new {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    display: inline-block;
}

.back-button {
    display: inline-block;
    padding: 10px 18px;        /* gelijke padding boven/onder */
    margin: 0;                 /* voorkomt ongelijke witruimte */
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;     /* underline weg */
    line-height: 1;            /* voorkomt extra hoogte */
    transition: 0.2s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.32);
}

/* Optioneel maar sterk aanbevolen:
   Glass-panel waarin de knop staat netjes centreren */
.glass-header-top {
    display: flex;
    align-items: center;       /* verticaal centreren */
    padding: 12px 20px;        /* evenveel ruimte boven/onder */
}

.back-button,
.back-button:link,
.back-button:visited,
.back-button:hover,
.back-button:active {
    text-decoration: none !important;
}


.breadcrumb {
    padding: 10px 16px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    font-size: 15px;
    color: #fff;
}
.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.logo img {
    height: 120px; /* of 40px indien je hem kleiner wil */
    width: auto;
    display: block;
}

/* Intro-blok boven de categorie tiles */
.homepage-intro.glass {
    max-width: 960px;          /* niet fullscreen, net als een tile */
    margin: 1.5rem auto 2.5rem;/* beetje lucht boven/onder en centreren */
    padding: 1.5rem 2rem;      /* minder dik dan de grote tiles */
    text-align: left;
}

.helper {
    margin-top: 6px;
    margin-bottom: 18px; /* extra ruimte vóór het volgende inputveld */
    font-size: 0.9rem;
    line-height: 1.35;
    display: block; /* zodat hij altijd onder het veld komt */
}

.form-group {
    margin-bottom: 22px;
}

/* Kop wat kleiner dan categorie-titels */
.homepage-intro h1 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

/* Tekst rustig en goed leesbaar */
.homepage-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.disclaimer-panel {
    margin-top: 24px;           /* Glass panel iets naar beneden */
    padding: 18px 24px;         /* Zelfde “lucht” als andere kaarten */
    font-size: 0.9rem;
}

.disclaimer-panel h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
}

.disclaimer-panel p {
    margin: 0 0 4px;
    opacity: 0.9;
}

/* Disclaimerpagina layout */
.disclaimer-page .feature-header {
    margin-bottom: 24px;
}

.disclaimer-page .feature-header h2 {
    margin-bottom: 8px;
}

.disclaimer-page .feature-header p {
    max-width: 900px;
    line-height: 1.5;
}

/* Hoofdcard met inhoud */
.disclaimer-body {
    padding: 24px 28px 30px;
}

.disclaimer-body .disclaimer-intro p {
    margin: 0;
    line-height: 1.5;
}

/* Grid met secties */
.disclaimer-grid {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}

/* Op grotere schermen twee kolommen; aansprakelijkheid mag breder */
@media (min-width: 900px) {
    .disclaimer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .disclaimer-card.disclaimer-wide {
        grid-column: 1 / -1;
    }
}

/* Kaarten binnen de glass card */
.disclaimer-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.disclaimer-card p {
    margin: 0 0 6px;
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Disclaimer-header fix */
.disclaimer-page .feature-header {
    display: block !important;       /* Zet flex uit */
    text-align: left;                /* Consistente uitlijning */
}

.disclaimer-page .feature-header h2 {
    margin-bottom: 10px;             /* Ruimte tussen titel en subtitel */
}

.disclaimer-page .feature-header p {
    margin: 0;
    max-width: 850px;                /* Zelfde breedte als andere secties */
    line-height: 1.5;
}


.tool-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    transition: transform 0.12s ease, background 0.12s ease;
}

.tool-row:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
}

.tool-row-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Container voor logo + tekst */
.header-brand {
    display: flex;
    align-items: flex-end; /* slogan netjes onderaan */
    gap: 12px; /* ruimte tussen logo en tekst */
}

/* Alleen het logo is een link */
.logo-link {
    display: flex;
    align-items: center;
}

/* Logo zelf */
.logo-img {
    height: 50px; /* pas aan naar smaak */
    width: auto;
    display: block;
}

/* Tekstblok naast het logo */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    padding-bottom: 4px; /* zorgt dat het mooi onderaan lijnt */
}

/* Naam Toolsplein */
.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.tool-links {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
}

.tool-links-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.tool-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.tool-links-a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;

  /* subtiel “kaartje” binnen je glass */
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.tool-links-a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.tool-links-a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 2px;
}


/* Slogan */
.brand-slogan {
    font-size: 0.85rem;  /* kleiner zoals je vroeg */
    opacity: 0.85;
    margin-top: 2px;
}

/* Tool rating – extra ruimte onder de sterren */
.rating-box {
    margin: 18px 0 30px;
}


.rating-box { padding: 14px 16px; margin-top: 12px; }
.rating-head { display:flex; justify-content:space-between; gap:12px; align-items:baseline; }
.rating-meta { opacity:.85; font-size:.95rem; }

.stars { display:flex; gap:6px; margin-top:10px; }
.star {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: .5;
  transition: transform .08s ease, opacity .08s ease;
}
.star:hover { transform: translateY(-1px); opacity: 1; }
.stars-disabled .star { cursor: not-allowed; opacity: .25; }
.rating-msg { margin-top: 8px; font-size: .95rem; opacity: .85; }



/* Thema: Purple – minder zwart, meer paars/roze */
body[data-theme="purple"] {
    --bg-gradient: radial-gradient(circle at top,
        #2e1065 0%,
        #7c3aed 30%,
        #ec4899 65%,
        #d946ef 100%
    );
    --accent: #e879f9;
    --accent-soft: rgba(232, 121, 249, 0.25);
    --accent-border: rgba(232, 121, 249, 0.95);
}

/* Thema: Emerald – frisser groen */
body[data-theme="emerald"] {
    --bg-gradient: radial-gradient(circle at top,
        #064e3b 0%,
        #10b981 30%,
        #22c55e 60%,
        #4ade80 100%
    );
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.25);
    --accent-border: rgba(34, 197, 94, 0.95);
}


/* Thema: Sunset – echt sunset, meer oranje/geel */
body[data-theme="sunset"] {
    --bg-gradient: radial-gradient(circle at top,
        #7c2d12 0%,
        #f97316 30%,
        #facc15 60%,
        #fb923c 100%
    );
    --accent: #fb923c;
    --accent-soft: rgba(251, 146, 60, 0.28);
    --accent-border: rgba(234, 88, 12, 0.95);
}


.site-logo {
    width: 42px;      /* passend voor header */
    height: 42px;
    border-radius: 10px; /* mooie afgeronde hoeken zoals het origineel */
    object-fit: cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.feature-header {
    width: 100%;
    max-width: 1400px; /* zelfde breedte als je grid / container */
    margin: 0 auto 30px auto;
    padding: 25px 40px;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.feature-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

/* FINANCIËLE CATEGORIE – LAYOUT */

.tool-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tool-feature-card {
    position: relative;
    padding: 24px 24px 26px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.tool-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.tool-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.tool-feature-label {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(248, 250, 252, 0.4);
    margin-bottom: 10px;
}

.tool-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.9);
}

.tool-feature-meta span {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.55);
}

/* Lange glazen rijen per tool */
.tool-section {
    margin-bottom: 28px;
    padding: 20px 22px;
}

.tool-section-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.tool-section-header p {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 12px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*
.tool-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.6);
    text-decoration: none;
    color: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.tool-row:hover {
    background: rgba(30, 64, 175, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.5);
}

.tool-row-main h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.tool-row-main p {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.9);
}

.tool-row-meta {
    font-size: 0.8rem;
    color: rgba(191, 219, 254, 0.95);
    white-space: nowrap;
}*/

.tool-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.25);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-row:hover {
    background: rgba(15, 23, 42, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
}

/* ronde icoon links */
.tool-row-icon {
    flex: 0 0 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(15, 23, 42, 0.6);
}

/* hoofdtekst pakt gewoon de ruimte tussen icoon en meta */
.tool-row-main {
    flex: 1 1 auto;
}

/* optionele meta rechts (zoals "21% · 9% · 0%") */
.tool-row-meta {
    margin-left: 24px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0.9;
    align-self: center;
}


/* Mobiel tweaks */
@media (max-width: 768px) {
    .tool-section {
        padding: 16px 16px;
    }

    .tool-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .tool-row-meta {
        align-self: flex-end;
    }
}




body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.16);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.25);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}

/* Glass container styles */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Alle glass-kaarten krijgen hover... behalve het mega-menu */
.glass:hover:not(.mega-menu) {
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.3);
}

/* Nav-glass mag dropdowns buiten zijn rand tonen */
nav.glass {
    overflow: visible !important;
    z-index: 2000; /* extra safe boven andere panels */
}


/* Header styles */
.header {
    position: relative;
    width: 100%;
    margin: 0;               /* Geen ruimte boven of onder */
    border-radius: 0;        /* Geen afgeronde hoeken */
    padding: 18px 40px;      /* Iets lagere hoogte voor strakkere look */
    background: rgba(255,255,255,0.05);  /* Transparante glasbar */
    backdrop-filter: blur(18px);
    box-shadow: none;        /* Geen floating shadow meer */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}



/* --- MEGA MENU --- */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item.has-mega.active > .nav-trigger,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
    border-bottom-color: var(--accent-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Knop "Tools" */
.nav-trigger {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.nav-trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
}

.nav-trigger-caret {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Mega menu panel */
.mega-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 720px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95),
        rgba(30, 64, 175, 0.95)
    );
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(26px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5000;
}

/* Toon bij hover / focus */
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

/* Kolommen in mega menu */
.mega-column h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.mega-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.mega-link {
    display: block;
    font-size: 0.9rem;
    padding: 6px 10px;
    margin: 2px -10px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.mega-link:hover {
    background: rgba(148, 163, 184, 0.18);
    transform: translateX(2px);
}

/* Responsief: op small screens één kolom en wat breder */
@media (max-width: 900px) {
    .mega-menu {
        min-width: 0;
        width: calc(100vw - 2rem);
        left: 50%;
        transform: translate(-50%, 16px);
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
}


/* THEME SWITCHER (klein menu rechtsboven) */
.theme-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    opacity: 0.95;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    margin-left: 20px;
}
.theme-label {
    color: rgba(255, 255, 255, 0.7);
}
.theme-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    background: transparent;
    position: relative;
}

/* Kleuren van de ronde knopjes */
.theme-dot[data-theme="ocean"] {
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}
.theme-dot[data-theme="purple"] {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}
.theme-dot[data-theme="emerald"] {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}
.theme-dot[data-theme="sunset"] {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

/* Actieve theme-dot */
.theme-dot.active::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    border: 2px solid rgba(15, 23, 42, 0.9);
    background: rgba(15, 23, 42, 0.15);
}

/* Page system */
.page {
    min-height: 100vh;
    padding: 40px 20px 20px;
}

/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}

/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-soft);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-border);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: white;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}
.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}

/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .theme-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    .footer-links a {
        display: block;
        text-align: center;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
}

/* Zorg dat de navigatie boven andere panels ligt */
nav {
    position: relative;
    z-index: 1000;
    overflow: visible;
}

.site-header,
.header {
    overflow: visible;
}

.tool-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.25);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-row:hover {
    background: rgba(15, 23, 42, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
}

.tool-row-icon {
    flex: 0 0 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(15, 23, 42, 0.6);
}

.tool-row-main h4 {
    margin-bottom: 4px;
}

.tool-feature-card {
    position: relative;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(15, 23, 42, 0.55);
    margin-bottom: 6px;
}

/* === HEADER FULL-WIDTH BALK === */

/* Zorg dat de header zelf strak tegen de bovenkant zit */
header {
    margin: 0;
    padding: 0;
}

/* Alleen de container BINNEN de header mag full-width zijn */
header .container {
    max-width: none;   /* haal de max-width van bv. 1200px weg */
    width: 100%;
    margin: 0;
    padding: 0;        /* geen extra ruimte links/rechts */
}

/* De glasbalk zelf over de volle breedte */
header nav.glass {
    width: 100%;
    border-radius: 0;          /* geen kaart-hoeken meer */
    box-shadow: none;          /* niet meer zwevend */
    padding: 18px 40px;        /* hoogte / binnenruimte van de balk */
    background: rgba(10, 12, 40, 0.8);  /* desnoods iets donkerder */
    backdrop-filter: blur(20px);
}

/* Inhoud (logo, links, thema) mooi gecentreerd in het midden */
header nav.glass > .logo,
header nav.glass > .nav-links,
header nav.glass > .theme-switcher {
    /* niks speciaals hier nodig als je flex gebruikt,
       maar we vangen even op dat nav zelf full-width is */
}

header nav.glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Optioneel: bovenste content iets naar beneden als de header nu 'aan' de content plakt */
.page {
    padding-top: 20px;
}

.tool-row-icon {
    width: 48px;        /* vaste breedte */
    height: 48px;       /* vaste hoogte */
    min-width: 48px;    /* voorkomt uitrekken */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08); /* subtiele achtergrond */
}

/* Scroll-to-top knop */
.scroll-top-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    
    /* Als je glass gebruikt, heb je al achtergrond/styling.
       Anders kun je hier iets zetten, bv.: 
       background: rgba(0, 0, 0, 0.4);
       color: #fff;
       backdrop-filter: blur(10px);
    */

    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 9999; /* boven alles */
}

/* Zichtbare staat */
.scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover effectje */
.scroll-top-btn:hover {
    transform: translateY(-2px);
}

/* Eventueel iets kleiner op mobiel */
@media (max-width: 600px) {
    .scroll-top-btn {
        right: 1rem;
        bottom: 1rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.3rem;
    }
}


.feature-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-top: -6px;
    margin-bottom: 10px;
}

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

/* Zorg dat het paneel niet helemaal tegen de container bovenaan plakt */
.content-wrapper .alert {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Successtijl */
.alert.success {
    background: rgba(34, 197, 94, 0.25);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #d1fae5;
}

/* Errors (voor later) */
.alert.error {
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.6);
    color: #fee2e2;
}
