:root {
    --bg: #0f172a;
    --panel: #020617;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --accent: #6366f1;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f172a, #020617);
    color: var(--text);
}

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

/* HEADER */
.site-header {
    padding: 24px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
}

/* HERO */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    max-width: 520px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-photo {
    width: 320px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--accent);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.content {
    padding: 80px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: linear-gradient(135deg, #111827, #020617);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-photo {
        margin: 40px auto 0;
    }

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

/* over */
.over {
    padding: 80px 0;
    background: rgba(255,255,255,0.02);
}

.over-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.over h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.over-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.over-highlight {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
}

.over-highlight ul {
    list-style: none;
}

.over-highlight li {
    margin-bottom: 14px;
}

.over-highlight strong {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.over-highlight span {
    display: block;
    font-size: 1rem;
}

h2 {
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* ervaring */
.ervaring {
    padding: 80px 0;
}

.ervaring h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.ervaring-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ervaring-item {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
}

.ervaring-item h3 {
    margin-bottom: 12px;
}

.ervaring-item p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* MOBIEL */
@media (max-width: 900px) {
    .over-grid {
        grid-template-columns: 1fr;
    }

    .ervaring-list {
        grid-template-columns: 1fr;
    }
}

.content-intro {
    margin-bottom: 40px;
}

.content-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.content-intro p {
    max-width: 700px;
    color: var(--muted);
    line-height: 1.7;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    transition: color 0.2s ease;
}

.nav-menu a.active {
    color: #6366f1;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #a5b4fc;
}

/* HAMBURGER */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #e5e7eb;
}

/* MOBIEL */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
    }
}

.projecten {
    padding: 80px 0;
    background: #0f172a;
    color: var(--text);
}

.projecten h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projecten p {
    margin-bottom: 3rem;
    color: var(--muted);
    font-size: 1rem;
}

.projecten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	align-items: stretch;
}

.projecten-card {
    background: linear-gradient(135deg, #111827, #020617);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projecten-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid var(--accent);
}

.projecten-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projecten-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.projecten-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    margin-top: 16px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact {
    padding: 80px 0;
    background: #0f172a;
    color: var(--text);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact p {
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #020617;
    color: var(--text);
	resize: none;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: var(--muted);
}

.contact-form-wrapper button {
    background: linear-gradient(90deg, #6366f1, #ec4899);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wrapper button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.contact-success {
    margin-top: 16px;
    color: #4ade80;
    font-weight: 600;
}

.updates {
    padding: 80px 0;
    background: #0f172a;
    color: var(--text);
}

.updates h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.updates p {
    margin-bottom: 3rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.update-card {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.update-card .update-date {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.update-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.update-card p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}
