:root {
    --zwart:      #0A0A0F;
    --donker:     #111118;
    --kaart:      #1A1A26;
    --rand:       #2A2A3A;
    --paars:      #7C3AED;
    --paars-dark: #5B21B6;
    --blauw:      #3B82F6;
    --geel:       #F59E0B;
    --geel-light: #FCD34D;
    --wit:        #FFFFFF;
    --tekst:      #E5E7EB;
    --grijs:      #9CA3AF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--zwart);
    color: var(--tekst);
    line-height: 1.6;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,15,0.65);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,200,0,0.45);
    padding: 0.5rem 2rem;
    min-height: 90px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.35s ease, box-shadow 0.35s ease, min-height 0.35s ease, padding 0.35s ease;
}
nav.scrolled {
    background: rgba(10,10,15,0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    min-height: 55px;
    padding: 0.25rem 2rem;
}
nav.scrolled .nav-logo img { height: 70px; }
nav.scrolled .nav-logo-tekst strong { font-size: 0.9rem; }
nav.scrolled .nav-logo-tekst span { font-size: 0.65rem; }
.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none;
}
.nav-logo img { height: 150px; width: auto; filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff); transition: height 0.35s ease; }
.nav-logo-tekst { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-tekst strong { font-size: 1rem; font-weight: 800; color: var(--wit); letter-spacing: -0.3px; }
.nav-logo-tekst span { font-size: 0.72rem; color: var(--grijs); font-weight: 500; }
.nav-links {
    display: flex; list-style: none; gap: 2rem; align-items: center;
}
.nav-links a {
    color: var(--grijs); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    transition: color 0.2s;
    position: relative; padding-bottom: 3px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--geel);
    border-radius: 2px; transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.actief::after { width: 100%; }
.nav-links a:hover, .nav-links a.actief { color: var(--wit); }
.nav-cta {
    background: linear-gradient(135deg, var(--paars), var(--blauw));
    color: #FFFFFF; padding: 0.6rem 1.4rem;
    border-radius: 8px; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: opacity 0.2s, transform 0.1s;
    white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
    display: none; background: none; border: none;
    color: var(--wit); font-size: 1.4rem; cursor: pointer;
}
.mobile-menu {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--donker); border-bottom: 1px solid var(--rand);
    z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 1rem 2rem; color: var(--grijs);
    text-decoration: none; font-weight: 500;
    border-bottom: 1px solid var(--rand);
    transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--wit); background: var(--kaart); }

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    background: #0A0A0F;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10,10,15,0.85) 0%,
        rgba(124,58,237,0.3) 50%,
        rgba(10,10,15,0.75) 100%
    );
}
.hero-fallback {
    position: absolute; inset: 0; z-index: 10;
    background: #0A0A0F;
    animation: heroFadeOut 0.8s ease 0.6s forwards;
    pointer-events: none;
}
@keyframes heroFadeOut { to { opacity: 0; } }
@keyframes heroFotoIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 8rem 2rem 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: flex-end;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--geel); font-size: 0.75rem; font-weight: 700;
    padding: 0.4rem 1rem; border-radius: 20px;
    margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -2px; color: var(--wit);
    margin-bottom: 1.5rem;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--paars), var(--blauw), var(--geel));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.1rem; color: var(--grijs);
    margin-bottom: 2.5rem; line-height: 1.8; max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-geel {
    background: var(--geel); color: #000000;
    padding: 0.9rem 2rem; border-radius: 10px;
    text-decoration: none; font-weight: 800; font-size: 1rem;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-geel:hover { background: var(--geel-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.4); }
.btn-outline-wit {
    background: transparent; color: var(--wit);
    padding: 0.9rem 2rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none; font-weight: 600; font-size: 1rem;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-wit:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--rand);
}
.stat-getal { font-size: 2rem; font-weight: 900; color: var(--geel); }
.stat-label { font-size: 0.78rem; color: var(--grijs); margin-top: 0.1rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-foto-wrap {
    animation: heroFotoIn 1.1s ease 0.5s both;
    width: 100%; max-width: 480px;
    aspect-ratio: 2/3;
    border-radius: 24px; overflow: hidden;
    position: relative;
    background-image: url('images/hero/herohero.png');
    background-size: cover;
    background-position: top center;
}
.hero-foto-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 20%;
    background: linear-gradient(to top, rgba(10,10,15,0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem;
    font-weight: 700; color: var(--geel); margin-bottom: 0.6rem; display: block;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
    color: var(--wit); margin-bottom: 1rem; letter-spacing: -0.5px;
}
.divider {
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--paars), var(--geel));
    border-radius: 2px; margin-bottom: 1.5rem;
}
.section-sub { font-size: 1rem; color: var(--grijs); max-width: 580px; line-height: 1.8; }

/* DIENSTEN */
.dienst-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.dienst-kaart {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.dienst-kaart::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--paars), var(--geel));
    opacity: 0; transition: opacity 0.3s;
}
.dienst-kaart:hover { transform: translateY(-5px); border-color: var(--paars); box-shadow: 0 20px 40px rgba(124,58,237,0.15); }
.dienst-kaart:hover::before { opacity: 1; }
.dienst-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(59,130,246,0.2));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--geel);
}
.dienst-naam { font-size: 1.05rem; font-weight: 700; color: var(--wit); margin-bottom: 0.5rem; }
.dienst-desc { font-size: 0.88rem; color: var(--grijs); line-height: 1.7; }

/* OPTREDENS GRID */
.optredens-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem; margin-top: 3rem;
}
.optreden-kaart {
    aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
    position: relative; cursor: pointer;
}
.optreden-kaart img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.optreden-kaart:hover img { transform: scale(1.05); }
.optreden-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.25rem;
    opacity: 0; transition: opacity 0.3s;
}
.optreden-kaart:hover .optreden-overlay { opacity: 1; }
.optreden-label { font-size: 0.85rem; font-weight: 600; color: var(--wit); }

/* OVER ONS */
.over-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.over-foto {
    width: 100%; aspect-ratio: 3/2;
    border-radius: 24px; overflow: hidden;
    border: 2px solid var(--rand);
    box-shadow: 0 0 60px rgba(124,58,237,0.25);
}
.over-foto img { width: 100%; height: 100%; object-fit: cover; }
.over-tekst p { color: var(--grijs); font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.over-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.over-tag {
    background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
    color: #C4B5FD; font-size: 0.8rem; font-weight: 600;
    padding: 0.3rem 0.9rem; border-radius: 100px;
}
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--kaart); border: 1px solid var(--rand);
    display: flex; align-items: center; justify-content: center;
    color: var(--grijs); font-size: 1.1rem; text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover { border-color: var(--geel); color: var(--geel); transform: translateY(-2px); }

/* AGENDA */
.agenda-lijst { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.agenda-item {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 14px; padding: 1.5rem 2rem;
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 2rem; align-items: center;
    transition: border-color 0.2s;
}
.agenda-item:hover { border-color: var(--paars); }
.agenda-datum {
    text-align: center; min-width: 60px;
}
.agenda-dag { font-size: 2rem; font-weight: 900; color: var(--geel); line-height: 1; }
.agenda-maand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grijs); }
.agenda-naam { font-size: 1rem; font-weight: 700; color: var(--wit); margin-bottom: 0.25rem; }
.agenda-locatie { font-size: 0.85rem; color: var(--grijs); }
.agenda-tag {
    background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
    color: #C4B5FD; font-size: 0.75rem; font-weight: 600;
    padding: 0.3rem 0.8rem; border-radius: 100px; white-space: nowrap;
}
.agenda-leeg { text-align: center; padding: 4rem 2rem; color: var(--grijs); }
.agenda-leeg i { font-size: 3rem; opacity: 0.3; margin-bottom: 1rem; display: block; }

/* REFERENTIES */
.ref-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.ref-item {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 12px; padding: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 2/1; transition: border-color 0.2s;
}
.ref-item:hover { border-color: var(--paars); }
.ref-item img { max-width: 100%; max-height: 50px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.2s; }
.ref-item:hover img { opacity: 0.9; }

/* VENUES */
.venues-grid {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 3rem;
}
.venue-item {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 100px; padding: 0.6rem 1.4rem;
    font-size: 0.9rem; font-weight: 600; color: var(--grijs);
    transition: all 0.2s;
}
.venue-item:hover { border-color: var(--geel); color: var(--geel); }

/* CTA BALK */
.cta-sectie {
    background: linear-gradient(135deg, var(--paars-dark) 0%, #1e1040 50%, #0d1a3a 100%);
    padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-sectie::before {
    content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.cta-sectie h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--wit); margin-bottom: 1rem; letter-spacing: -0.5px; position: relative; }
.cta-sectie p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 1rem; position: relative; }

/* CONTACT */
.contact-layout {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 4rem; align-items: start;
}
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 800; color: var(--wit); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--grijs); font-size: 0.9rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--grijs); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 10px; padding: 0.8rem 1rem;
    color: var(--wit); font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--paars); }
.form-group select option { background: var(--donker); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
    background: linear-gradient(135deg, var(--paars), var(--blauw));
    color: #FFFFFF; border: none; padding: 0.9rem 2rem;
    border-radius: 10px; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: opacity 0.2s, transform 0.1s;
    display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-feedback { font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 8px; display: none; }
.form-feedback.succes { display: block; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; }
.form-feedback.fout { display: block; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 1rem; }
.contact-kaart {
    background: var(--kaart); border: 1px solid var(--rand);
    border-radius: 14px; padding: 1.5rem;
    display: flex; align-items: center; gap: 1.25rem;
    text-decoration: none; transition: border-color 0.2s;
}
.contact-kaart:hover { border-color: var(--paars); }
.ci-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: rgba(124,58,237,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--paars);
}
.ci-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grijs); margin-bottom: 0.2rem; }
.ci-waarde { font-size: 0.95rem; font-weight: 600; color: var(--wit); }
.ci-sub { font-size: 0.78rem; color: var(--grijs); margin-top: 0.15rem; }

/* FOOTER */
footer {
    background: var(--donker); padding: 2rem 2rem;
    text-align: center; color: var(--grijs);
    font-size: 0.9rem; border-top: 1px solid var(--rand);
}
footer a { color: var(--paars); text-decoration: none; }

/* CONTACT BALK */
.contact-balk {
    background: var(--kaart); border-top: 1px solid var(--rand);
    padding: 1.25rem 2rem;
}
.contact-items {
    max-width: 900px; margin: 0 auto;
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.contact-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
    text-decoration: none; color: var(--grijs); transition: color 0.2s;
}
.contact-item:hover { color: var(--geel); }
.contact-item i { font-size: 1.1rem; }
.contact-item p { font-size: 0.85rem; font-weight: 600; }
.contact-item small { font-size: 0.72rem; }

/* WA STICKY */
.wa-sticky {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.wa-sticky:hover { transform: scale(1.1); }

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--donker) 0%, #1a0533 100%);
    padding: 14rem 2rem 4rem; text-align: center;
    border-bottom: 1px solid var(--rand);
}
.page-header-content { max-width: 600px; margin: 0 auto; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--wit); margin-bottom: 0.75rem; letter-spacing: -1px; }
.page-header p { color: var(--grijs); font-size: 1rem; line-height: 1.75; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; padding-top: 6rem; }
    .hero-visual { display: none; }
    .over-layout { grid-template-columns: 1fr; }
    .over-foto { aspect-ratio: 16/9; max-width: 100%; }
    .contact-layout { grid-template-columns: 1fr; }
    .agenda-item { grid-template-columns: auto 1fr; }
    .agenda-tag { display: none; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
}
