:root {
    --neon-green: #ccff00;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-gray: #b3b3b3;
}

body { background-color: var(--dark-bg); color: white; font-family: 'Inter', sans-serif; margin: 0; }

.hero { 
    height: 80vh; 
    display: flex; 
    align-items: center; 
    justify-content: space-around; 
    padding: 0 10%;
    background: radial-gradient(circle at center, #252525 0%, #121212 100%);
}

.hero-text h1 { font-size: 5rem; font-weight: 900; italic; margin: 0; line-height: 0.9; }
.hero-text p { font-size: 1.5rem; margin: 20px 0; color: var(--text-gray); }
.hero-text span { color: #4facfe; } /* De blauwe touch in 'Oomph' */

.btn-primary { 
    background: var(--neon-green); 
    color: black; 
    padding: 15px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase;
}

.text-centered {
    text-align: center;
}

.centered {
    margin: 0 auto;
    display: block;
}

.section-title { padding: 50px 10% 20px; font-size: 2rem; text-transform: uppercase; }

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    padding: 0 10% 50px; 
}

.product-card { 
    background: var(--card-bg); 
    padding: 20px; 
    border-radius: 15px; 
    text-align: center; 
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-10px); }
.product-card img { max-height: 200px; margin-bottom: 15px; }

.info-section { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    padding: 80px 10%; 
    background: #1a1a1a;
}

.contact-form input, .contact-form textarea { 
    width: 100%; 
    background: #252525; 
    border: 1px solid #333; 
    color: white; 
    padding: 10px; 
    margin-bottom: 10px; 
    border-radius: 5px;
}

