body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-image: url("images/wallpaper.jpg");
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.navbar {
    background-color: #000000;
    color: white;
    padding: 0.5em 0;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ffcc00;
}

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

.navbar .logo img {
    height: 75px; 
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2em;
    padding: 0;
    margin: 0;
}

.navbar nav a {
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    transition: color 0.3s;
    position: relative;
}

.navbar nav a:hover, .navbar nav a.active {
    color: #ffcc00;
}

.navbar nav a.active::after, .navbar nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background-color: #ffcc00;
}

.hero {
    color: white;
    padding: 5em 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2em;
    text-align: left; 
}

.hero-img {
    border: 5px solid #ffcc00;
    width: 250px; 
    height: 250px; 
    object-fit: cover;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    font-weight: bold;
}

.hero-text h2 {
    font-size: 2.5em;
    margin: 0.5em 0;
    color: #ffcc00;
}

.hero-text h2 .highlight {
    color: #ffcc00;
}

.hero-text h2 span {
    color: white;
}

.hero-text p {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.hero-buttons {
    display: flex;
    justify-content: start;
    gap: 1em;
    margin-top: 2em;
}

.hero-buttons .btn {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-buttons .btn:hover {
    background-color: #e0b800;
}

.projects, .about, .certificates {
    color: white;
}

.about {
    border-bottom: 2px solid #ffcc003e;
}

.projects h2, .about h2, .certificates h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    color: #ffcc00;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.project {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

.project-img {
    background-color: #ffcc00;
    width: 100%;
    height: 150px;
    margin-bottom: 1em;
}

.project h3 {
    font-size: 1.5em;
    color: #ffcc00;
}

.project p {
    color: #ccc;
}

.project .btn {
    background-color: #ffcc00;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.project .btn:hover {
    background-color: #e0b800;
}

section {
    padding: 2em 0;
}

.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.certificate {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    text-align: left;
}

.certificate-img {
    background-color: #ffcc00;
    width: 150px;
    height: 100px;
    margin-right: 1em;
}

.certificate-content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.certificate h3 {
    font-size: 1.5em;
    color: #ffcc00;
    margin: 0;
}

.certificate p {
    color: #ccc;
    margin: 0;
}

.certificate .btn {
    background-color: #ffcc00;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    align-self: start; 
}

.certificate .btn:hover {
    background-color: #e0b800;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.about-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #ffcc00;
}

.about-text h3 {
    font-size: 2em;
    margin: 0;
    color: #ffcc00;
}

.about-text p {
    font-size: 1.2em;
    margin: 1em 0;
    color: #ccc;
}

.contact {
    text-align: center;
    padding: 2em 0;
}

.contact h2 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 1em;
}

.contact .platforms {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}

.platform {
    background-color: #333;
    border-radius: 10px;
    padding: 1em;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    gap: 1em;
    transition: transform 0.3s;
}

.platform a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1em;
}

.platform img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.platform p {
    margin: 0;
}

.platform:hover {
    transform: scale(1.05);
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1em 0;
    border-top: 2px solid #ffcc00;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1c1c1c; /* Zwarte achtergrondkleur */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Zwarte schaduw */
    color: #f1c40f; /* Gouden tekstkleur */
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.contact-form-container label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #f1c40f; /* Gouden kleur voor labels */
}

.contact-form-container input,
.contact-form-container textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #333; 
    color: #f1c40f; 
}

.contact-form-container button {
    padding: 10px 15px;
    background-color: #f1c40f; 
    color: #1c1c1c; 
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-container button:hover {
    background-color: #d4ac0d; 
}

#form-status {
    margin-top: 10px;
    font-size: 14px;
    color: green; /* Standaard kleur groen voor succesbericht */
}

/* Responsive design */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    max-width: 100%;
    padding: 15px;
    margin: auto;
}

img, video {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}
