/* Color Palette */
:root {
    --light-bg: #FCF8F3;
    --secondary-light-bg: #F2EAE4;
    --dark-bg: #524C4A;
    --primary-text: #2D2927;
    --secondary-text: #7A716E;
    --light-text: #FFFFFF;
    --primary-accent: #E3B8A4;
    --secondary-accent: #D49B8A;
    --highlight-accent: #E6F2F0;
    --primary-button-bg: #D49B8A;
    --hover-button-bg: #357F8A;
    --button-text-color: #FFFFFF;
    --button-text-hover-color: #FFFFFF;
    --link-color: #68A9B5;
    --visited-link-color: #A9847B;
}

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

/* General Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Schibsted Grotesk', sans-serif; /* Consistent font for all text */
    background-color: var(--light-bg);
    color: var(--primary-text);
    line-height: 1.6;
}

a {
    color: var(--link-color);
    text-decoration: none;
    font-family: inherit; /* Consistent font for links */
}

a:visited {
    color: var(--visited-link-color);
}

a:not(.btn):hover {
    color: var(--hover-button-bg);
}

/* Button Links */
.btn, button {
    font-family: inherit; /* Consistent font for buttons */
    color: var(--button-text-color) !important;
}

/* Text Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit; /* Consistent font for headers */
    color: var(--primary-text);
    margin-bottom: 20px;
    font-weight: 700;
}

p, li, span, em, i, strong, b {
    font-family: inherit; /* Consistent font for paragraphs and text */
    font-weight: 400;
}

strong, b {
    font-weight: 700;
}

/* Header */
header {
    background-color: var(--secondary-light-bg);
    padding: 10px 0;
}

/* Nav styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo a {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-text);
}

/* Hamburger Menu Container */
.menu-container {
    position: relative;
}

.hamburger-menu {
    font-size: 1.5em;
    cursor: pointer;
    color: var(--primary-text);
    padding: 10px;
}

/* Navigation Links */
.nav-links {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--secondary-light-bg);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: auto;
    white-space: nowrap;
}

/* Show nav links when the .show class is added for mobile */
.nav-links.show {
    display: flex;
    flex-direction: column;
}

/* Stijl voor de taalknop */
.language-toggle {
    color: var(--secondary-accent); /* Kies de gewenste kleur */
    font-style: italic;
    font-weight: bold; /* Optioneel voor extra nadruk */
}

.language-toggle:hover {
    color: var(--hover-button-bg); /* Kleur bij hover-effect */
}


/* Desktop: Show nav links on hover */
@media (min-width: 768px) {
    .menu-container:hover .nav-links {
        display: flex;
        flex-direction: column;
    }
}

/* Individual nav link styles */
.nav-links li {
    margin: 10px 0;
}

.nav-links a {
    font-family: inherit; /* Consistent font for navigation links */
    font-weight: 600;
    color: var(--primary-text);
}

.nav-links a:hover {
    color: var(--hover-button-bg);
}

/* Section Styles */
.intro, .contact, .about {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

 .services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

/* Layout for Services Content */
.services-content {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.services-main {
    flex: 2;
}

.services-sidebar {
    flex: 1;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    background-color: var(--primary-accent);
    padding: 20px;
    border-radius: 5px;
}

/* Styling for Services Sections and Sidebar */
.services-section, .services-details {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--highlight-accent);
    border-radius: 5px;
}

.services-section h2, .services-details h2 {
    margin-bottom: 15px;
    color: var(--primary-text);
}

.services-section ul, .services-details ul {
    list-style-type: disc;
    padding-left: 20px;
}

.services-details ul {
    list-style-type: none;
    padding-left: 0;
}

.services-details ul li {
    margin-bottom: 10px;
}

/* CTA Button */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: var(--primary-button-bg);
    color: var(--button-text-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--hover-button-bg);
}

/* Intro Background */
.intro {
    background-color: var(--highlight-accent);
}

.intro h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Button Styles */
.btn, button {
    font-family: inherit; /* Consistent font for buttons */
    display: inline-block;
    background-color: var(--primary-button-bg);
    color: var(--button-text-color) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.1s, color 0.1s;
    margin-top: 20px;
}

.btn:hover, button:hover {
    background-color: var(--hover-button-bg);
    color: var(--button-text-hover-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.linkedin-button {
    margin-top: 20px;
    text-align: center;
}

.linkedin-button .btn {
    background-color: var(--primary-button-bg);
    color: var(--button-text-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.linkedin-button .btn:hover {
    background-color: var(--hover-button-bg);
}


/* Media Queries */
@media (max-width: 1024px) {
    .services-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .intro h1 {
        font-size: 2em;
    }
}

/* Profile Photo Styling */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.profile-photo {
    width: 60%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Adjustments for Profile Photo at Larger Screen Sizes */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
        margin-right: 15px;
    }
}

@media (min-width: 1024px) {
    .profile-photo {
        width: 300px;
        height: 300px;
    }
}
/* Mobile view adjustments */
@media (max-width: 768px) {
    /* Zorg dat nav als flexbox horizontaal blijft */
    nav {
        flex-direction: row;
    }

    /* Zet logo en hamburger-menu naast elkaar */
    .logo {
        flex: 1;
    }

    .menu-container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hamburger-menu {
        position: relative; /* Houdt het binnen de header */
        right: 0;
        top: 0;
        margin-left: auto;
    }

    /* Zorgt ervoor dat nav-links verborgen zijn, behalve bij klikken */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--secondary-light-bg);
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Toggle class om nav-links weer te geven */
    .nav-links.show {
        display: flex;
    }
}