/* --- INSTELLINGEN & KLEUREN --- */
:root {
    --primary: #1a252f;    /* Donkerblauw */
    --accent: #e67e22;     /* Oranje */
    --bg-light: #f9f9f9;   /* Achtergrond */
    --text: #333333;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0; padding: 0;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-light);
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
}

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

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--accent);
}

nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 25px;
    font-weight: 600;
}

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

/* --- HERO --- */
.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--white);
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; line-height: 1.2; }
.subtitle { font-size: 1.4rem; color: #666; margin-top: 0; }

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn:hover { transform: translateY(-2px); background-color: #d35400; }

/* --- SECTIES --- */
section { padding: 70px 0; }
h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.icon { font-size: 2.5rem; margin-bottom: 15px; }

/* --- PERSOONLIJK --- */
.personal-section { background-color: #fff; border-radius: 10px; padding: 40px; }
.personal-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.profile-pic {
    width: 200px; height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--bg-light);
}

.personal-content h2 { text-align: left; margin-bottom: 20px; }

/* --- PORTFOLIO --- */
.portfolio-section { text-align: center; max-width: 700px; margin: 0 auto; }
.intro-text { margin-bottom: 40px; color: #666; }

.audio-track {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.track-title { display: block; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
audio { width: 100%; height: 40px; }

/* --- FOOTER --- */
footer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 15px 15px 0 0;
}

.footer-content h2 { color: var(--white); }

.contact-details {
    margin: 30px 0;
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* --- MOBIEL --- */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; }
    nav a { margin: 0 10px; }
    .hero h1 { font-size: 2.2rem; }
    .personal-content { flex-direction: column; text-align: center; }
    .personal-content h2 { text-align: center; }
}
