/* Algemene instellingen */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Bree Serif', serif;
}

/* Navigatiebalk - hergebruik van home.css */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: black;
    padding: 10px 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.navbar img {
    width: 200px;
    margin-right: 20px;
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.navbar a:hover {
    background-color: #dbdada;
    border-radius: 5px;
}

.zoek1, .zoek2 {
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    border-radius: 20px;
    width: 150px;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Bree Serif', serif;
}

.zoek1 {
    background-color: #5c2483;
}

.zoek2 {
    background-color: #009fe3;
}

.zoek1:hover {
    background-color: #4f2070;
}

.zoek2:hover {
    background-color: #007bb2;
}

/* Vacature Container */
.vacature-container {
    width: 100%;
    min-height: 100vh;
    background-image: url("../../images/image.png"); /* Vervang met jouw PNG-achtergrond */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* Ruimte voor de vaste navbar */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacature-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.vacature-content h1 {
    text-align: center;
    color: #5c2483;
    margin-bottom: 20px;
}

.vacature-content h2 {
    color: #009fe3;
    margin-top: 20px;
    margin-bottom: 10px;
}

.vacature-content p, 
.vacature-content ul {
    color: #333;
    line-height: 1.6;
}

.vacature-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.apply-button {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #5c2483;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #4f2070;
}

/* Footer - hergebruik van home.css */
.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    font-family: 'Bree Serif', serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    max-width: 300px;
}

.footer-left, .footer-center, .footer-right {
    text-align: left;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer h2, .footer h3 {
    margin: 0;
    padding-bottom: 10px;
    font-weight: normal;
}

.footer h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: 1em;
    line-height: 1.5;
}

.footer-logo {
    width: 150px; /* Adjust width for better fit */
    height: auto; /* Maintain aspect ratio */
    margin: 10px auto; /* Center and add spacing */
    display: block; /* Center within container */
}

/* Responsiviteit */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vacature-content {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: none;
        width: 100%;
        text-align: center;
    }
}
