/* --- Variabelen & Reset --- */
:root {
    --bg-color: #0a0a0a;
    --card-bg: #161616;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-primary: #ff00ff; /* Neon Roze */
    --accent-secondary: #00ffff; /* Neon Blauw */
    --font-main: 'Poppins', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typografie --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

.highlight {
    color: transparent;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.dot { color: var(--accent-primary); }

/* --- Knoppen --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), #d400d4);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

.btn-outline {
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-color);
}

.btn-white {
    background: white;
    color: var(--bg-color);
}

.btn-white:hover {
    background: var(--accent-secondary);
    color: var(--bg-color);
}

/* --- Navigatie --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent-primary); }

.btn-nav {
    border: 1px solid var(--accent-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--accent-secondary) !important;
}

.btn-nav:hover {
    background: var(--accent-secondary);
    color: var(--bg-color) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* --- Hero Sectie --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 20px; }

/* Achtergrond Animatie */
.hero-bg-animation {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 400px; height: 400px;
    background: var(--accent-primary);
    top: -100px; right: -100px;
}

.blob-2 {
    width: 300px; height: 300px;
    background: var(--accent-secondary);
    bottom: 10%; left: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

/* --- Secties Algemeen --- */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Cards & Services --- */
.card, .service-card, .testimonial {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.card:hover, .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* --- Aandacht Meter --- */
.meter-section { background: #0f0f0f; }
.meter-container {
    width: 100%;
    max-width: 600px;
    height: 40px;
    background: #333;
    border-radius: 20px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.meter-bar {
    height: 100%;
    width: 5%; /* Startwaarde */
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
}

#meterText {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }

/* --- CTA --- */
.cta-section {
    background: linear-gradient(135deg, var(--accent-primary), #700070);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 { color: white; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.2rem; }

/* --- Footer --- */
.site-footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 { margin-bottom: 20px; color: white; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent-primary); }
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #666;
}

/* --- Animaties Classes (JS) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    
    .mobile-menu-btn { display: block; z-index: 1001; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 70%;
        background: #111;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active { right: 0; }
    
    .hero-buttons { flex-direction: column; }
}