/* ===== Globale stijlen ===== */
:root {
    --primary: #0a0a0a;
    --secondary: #f5f5f5;
    --accent: #ff4d4d;
    --light-gray: #e8e8e8;
    --dark-gray: #333;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    background: white;
    overflow-x: hidden;
}

/* ===== Header ===== */
.konceptiv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== Hero-sectie ===== */
.konceptiv-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
}
/* Behoud alle bestaande .konceptiv-quote stijlen */
.konceptiv-quote {
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Reset voor geanimeerde woorden */
.konceptiv-quote .word {
    display: inline-block;
    white-space: nowrap;
    font-family: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
}

/* Correcte spatiëring tussen woorden */
.konceptiv-quote .word + .word {
    margin-left: 0.4em;
}

/* Herstel spaties tussen woorden */
.konceptiv-quote .word + .word {
  margin-left: 0.3em;
}

/* ===== Footer ===== */
.konceptiv-footer {
    background: var(--primary);
    color: white;
    padding: 50px 0;
    text-align: center;
}

/* ===== About Us Stijlen ===== */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* ===== Contact Stijlen ===== */
.contact-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}