
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #626262;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}


header {
    padding: 20px 0;
}

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

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: black;
}
header .logo img{
    width: 50px;
    height: auto;

}

header nav a {
    text-decoration: none;
    color: #fff;
    background-color: #a0a0a0;
    padding: 10px 20px;
    border-radius: 20px;
    margin-left: 10px;
}

.hero {
    display: flex;
    min-height: 70vh;
    justify-content: space-evenly;
    align-items: center;
}

.hero-image img{
    margin-bottom: -4px;
    width: 400px;

}

.hero-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #BEBEBE;
}

.hero-block {
    margin-bottom: 30px;
}

.hero-block h2 {
    font-size: 24px;
    color: #fff;

}

.lees-meer {
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
}
.shadow{

}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    gap: 25px;
}
.info-section, .skills-section {
    color: #fff;
    padding: 60px 0;
}

.info-section h2, .skills-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    /*het had moeite om #76DAFF als kleur te nemen*/
    color: rgba(118, 218, 255, 1);
}

.info-section .grote-tekst {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: bold;
    max-width: 600px;
}
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-card {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 20px;
    flex-shrink: 0;
}

.skill-text h3 {
    margin: 0 0 5px 0;
}

.skill-text p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}
/*CSS VOOR PROJECTEN, MIKE HIER NIKS VERANDEREN VOOR INDEX!!!*/

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #fff;
}
.project-card {
    display: flex;
    gap: 20px;
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;

    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.project-logo {
    flex-basis: 200px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #888;
}

.project-skills {
    flex-basis: 350px;
}

.project-skills h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #888;
}

.project-details {
    flex: 1;
}

.project-details h3 {
    margin-top: 0;
    font-size: 1.5rem;
}
.contact-section {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    margin-top: 60px; /
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex-basis: 25%;
}
.contact-form {
    flex-basis: 45%;
}
.socials {
    flex-basis: 25%;
}

.contact-info h3, .contact-form h3, .socials h3 {
    margin-top: 0;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    background-color: #f0f0f0;
    color: #000;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
}
