:root {
    --primary-color: #0a2342;
    --accent-color: #d3a625;
    --text-color: #333;
    --background-color: #f4f4f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 85%;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-img {
    height: 60px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

header nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

header nav ul li a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--accent-color);
    background-color: rgba(211, 166, 37, 0.1);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

#hero p {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Over Section */
#over {
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Diensten Section */
#diensten {
    background-color: var(--background-color);
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    min-height: 3.6rem;
    line-height: 1.2;
}

.service-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Mijn Aanpak Section */
#aanpak {
    background-color: var(--white);
}

#aanpak > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem auto;
    font-size: 1.15rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid .approach-item {
    grid-column: span 2;
}

.approach-grid .approach-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.approach-grid .approach-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.approach-item {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateX(5px);
}

.approach-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    min-height: 3.6rem;
    line-height: 1.2;
}

.approach-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    text-align: center;
}

footer h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

footer p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-info {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer .email-link:hover {
    color: var(--white);
    text-decoration: underline;
}

footer .copyright {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */

/* Tablet (iPad) */
@media(max-width: 1024px) {
    .container {
        width: 90%;
    }
    
    #hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .approach-grid .approach-item {
        grid-column: span 1;
    }
    
    .approach-grid .approach-item:nth-child(4),
    .approach-grid .approach-item:nth-child(5) {
        grid-column: span 1;
    }
}

/* Mobile (iPhone en andere smartphones) */
@media(max-width: 768px) {
    .container {
        width: 90%;
        padding: 0 1rem;
    }

    /* Header optimalisatie */
    header {
        padding: 1rem 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .logo-img {
        height: 50px;
    }

    header nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header nav ul li a {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero sectie */
    #hero {
        padding: 3rem 0;
        min-height: auto;
    }

    #hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    #hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Algemene secties */
    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Over sectie */
    .about-content {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .about-text p {
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Diensten grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Mijn Aanpak grid */
    .approach-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .approach-grid .approach-item {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    .approach-grid .approach-item:nth-child(4),
    .approach-grid .approach-item:nth-child(5) {
        grid-column: 1 / -1 !important;
    }
    
    .approach-item {
        padding: 2rem 1.5rem;
    }
    
    .approach-item h3 {
        font-size: 1.3rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .approach-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Footer */
    footer {
        padding: 3rem 0 2rem 0;
    }
    
    footer h2 {
        font-size: 1.8rem;
    }
    
    footer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-info {
        font-size: 1rem;
    }
    
    .email-link {
        word-break: break-word;
    }
}

/* Extra kleine schermen (iPhone SE, kleine Android) */
@media(max-width: 375px) {
    .container {
        width: 95%;
    }
    
    #hero h1 {
        font-size: 1.75rem;
    }
    
    #hero p {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    header nav ul li a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .service-item,
    .approach-item {
        padding: 1.5rem 1rem;
    }
}

