/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background: #0f172a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* NAVBAR */
header {
    width: 100%;
    background: rgba(15,23,42,0.95);
    border-bottom: 1px solid rgba(59,130,246,0.25);
    backdrop-filter: blur(12px);
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* BRAND (logo + tekst) */
.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    max-width: 46px;
    height: auto;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.brand-name .accent {
    color: #f97316;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.12);
}

.nav-links a.active {
    background: #f97316;
    color: #111;
    font-weight: 600;
}
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}
/* HERO SECTION */
.hero {
    padding: 60px 0;
}

.hero-inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 2;
}

.hero-panel {
    flex: 1;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(59,130,246,0.3);
    padding: 20px;
    border-radius: 8px;
}

/* BADGE */
.badge {
    background: rgba(59,130,246,0.25);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #cbd5f5;
    display: inline-block;
    margin-bottom: 10px;
}

/* HERO TEXT */
h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* HERO BUTTONS */
.hero-actions {
    display: flex;
    gap: 10px;
}

.button {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.primary {
    background: #f97316;
    color: #111;
}

.primary:hover {
    filter: brightness(1.1);
}

.ghost {
    border: 1px solid #f97316;
    color: #f97316;
}

.ghost:hover {
    background: #f97316;
    color: #111;
}

/* CARDS */
.section {
    padding: 40px 0;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 260px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(59,130,246,0.3);
    padding: 20px;
    border-radius: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px 0;
    opacity: 0.7;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo {
        max-width: 36px;
    }

    .brand-name {
        font-size: 16px;
    }

    .hero-inner {
        flex-direction: column;
    }

    h1 {
        font-size: 24px;
    }

    .cards {
        flex-direction: column;
    }
}
/* FORCEER LOGO-GROOTTE OP ALLE PAGINA'S */
.logo,
img.logo,
img.logo-img,
img[src*="logo"] {
    max-width: 48px !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* TEKST NAAST LOGO */
.brand-name {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}

.brand-name .accent {
    color: #f97316;
}