/* Basisinstellingen en lettertypen */
/* Your existing styles here */
body {
    --bg-color: #fff;
    --text-color: #333;
}

.dark-mode {
    --bg-color: #333;
    --text-color: #fff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Additional styles for light mode */

.dark-mode button {
    background-color: #333;
    color: #fff;
}

/* Additional styles for dark mode */

body {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font */
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light gray background */
}

/* Add your other styles below */


.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Navigatie en Header */
.main-header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

.main-header h1 {
    margin: 0;
    padding: 0 20px;
}

.main-nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

.main-nav ul li {
    display: inline;
    margin: 0 5px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.main-nav ul li a:hover {
    background-color: #0779e4;
}

/* Secties */
section {
    padding: 20px 0;
}

/* Vaardigheden sectie */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    text-align: center;
}

.skill-item {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

/* Tijdlijn ervaring */
.timeline-item {
    background: #f4f4f4;
    margin-bottom: 20px;
    padding: 20px;
    border-left: #0779e4 4px solid;
}

/* Projecten */
/* Project section styles */
.project {
    height: 400px;
    width: 100%; /* Full width for vertical stacking */
    margin-bottom: 40px;
    display: block; /* Ensure projects stack vertically */
    position: relative;
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

.project h3 {
    margin-top: 0;
}

.project-iframe {
    width: 100%;
    height: 400px; /* Adjust height as needed */
}

.view-full-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.view-full-btn:hover {
    background-color: #0056b3;
}

iframe {
    width: 100%;
    height: 400px;
    border: none; /* Remove iframe border */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Responsive Ontwerp */
@media(max-width: 700px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact en Footer */
.main-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.social-links {
    margin-top: 10px;
}

.social-links ul {
    padding: 0;
    margin: 0;
}

.social-links ul li {
    display: inline;
    margin-right: 10px;
}

.social-links ul li a {
    color: #007bff;
    text-decoration: none;
    font-size: 24px; /* Adjust the size as needed */
}

.social-links ul li a:hover {
    color: #0056b3;
}


/* Responsive Ontwerp */
@media(max-width: 700px) {
    .skills-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
}



/* About Me Section */
.about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-content.show {
    opacity: 1;
    transform: translateY(0);
}

.profile-wrapper {
    position: relative;
}

.profile-image {
    width: 150px; /* Adjust image size as needed */
    height: 150px; /* Adjust image size as needed */
    border-radius: 50%; /* Make the image round */
}

figcaption {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #333;
}