:root {
    --bg-color: #1a1a1d; 
    --text-color: #e0e0e0; 
    --heading-color: #f4f4f4; 
    --accent-color: #c9b07a; 
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.container { width: 100%; max-width: 900px; }

header .logo {
    width: 60px; 
    height: auto; 
    margin-bottom: 1rem; 
}

header {
    text-align: center;
    padding: 4rem 0 3rem 0;
    border-bottom: 1px solid var(--accent-color);
    margin-bottom: 3rem;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--heading-color);
    letter-spacing: 2px;
    margin: 0;
}

header .tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

section {
    margin-bottom: 3.5rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

p {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    list-style: none;
}

.features-grid li {
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

#contact {
    text-align: center;
    padding: 2rem;
    background-color: #222;
    border-radius: 4px;
    margin-top: 2rem;
}

#contact p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

#contact .email-link {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-color);
    text-decoration: none;
    border: 1px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

#contact .email-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 15px; /* Ruimte tussen de onderdelen */
    font-size: 0.9em;
}

.footer-address {
    width: 100%; /* Dwingt adres op mobiel naar nieuwe regel */
    margin-top: 5px;
    opacity: 0.8;
    font-size: 0.85em;
}

ol, ul {
    font-family: var(--font-body); 
    color: var(--text-color);
}

ol li, ul li {
    font-weight: 300; 
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

#workflow ol {
    counter-reset: custom-counter;
    list-style: none;
}

#workflow ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 2rem;
}

#workflow ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    color: var(--accent-color); 
    font-weight: 600;
}        

.nav-logo-img {
        height: 50px; 
        width: auto; 
        display: block;
        transition: transform 0.3s ease;
}

.navbar {
    position: fixed; 
    top: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-color); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    color: white;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #c9b07a;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Specific styling for the Services page Hero section */
#services-hero {
    background: linear-gradient(rgba(26, 26, 29, 0.9), rgba(26, 26, 29, 0.9)), 
                url('images/consultancy-bg.jpg'); /* Optional background image */
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem; /* Slightly deeper padding for a 'premium' feel */
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#services-hero h1 {
    font-size: 4rem; /* Making the headline slightly larger on this page */
    max-width: 800px;
    line-height: 1.1;
}

#services-hero .tagline {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    max-width: 600px;
}


@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    header {
        padding: 2rem 0;
    }

    header h1 {
        margin-top: 5px;
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 0.5rem;
    }
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%; 
        flex-direction: column;
        background-color: #1a1a1d;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        left: 0; 
    }

    .nav-links li {
        margin: 25px 0;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .nav-logo-img:hover {
        transform: scale(1.05); 
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    .bar { transition: 0.3s; } 

    .footer-address {
        width: auto; /* Op desktop alles naast elkaar */
        margin-top: 0;
    }

    #services-hero {
        padding: 4rem 1rem;
    }
    #services-hero h1 {
        font-size: 2.8rem;
    }

}
