* {
    box-sizing: border-box;
}

body {
    background-color: rgba(171, 250, 199, 0.48);
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.navbar {
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    padding-bottom: 0.5%;
    border-bottom: 3px solid black;
}
.stripe {
    border-bottom: 3px solid black;
}
.pageTitle {
    font-size: 2rem;
    font-weight: bold;
    color: #072c00;
    text-transform: capitalize;
}

.navBar {
    display: flex;
}

.navList {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.navItem {
}

.itemButton {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 12px;
    background-color: #19680d;
    border-radius: 4px;
    box-shadow: 2px 2px #034e1c;
}

.itemButton:hover {
    background-color: #50bc5d;
    box-shadow: 2px 3px #119f00;
}

.foto {
    height: 200px;
    width: 200px;
    border: 0px solid;
    border-radius: 30%;
}

.containerHome {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.homeFoto {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.qrCode {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
}
.homeText {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #033c1c;
    max-width: 700px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        margin-top: 15rem;
    }

    .navBar {
        width: 100%;
    }
    .stripe  {
        border: none;
    }
    .navList {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
        margin-top: -2rem;
        margin-bottom: 1rem;
    }

    .itemButton {
        display: block;
        width: 100%;
        text-align: left;
    }
    .containerHome {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10vh;
    }

    .homeText {
        max-width: 100%;
    }
}
/* Alert */
.container-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff3cd; /* lichte geelachtige waarschuwing */
    border: 1px solid #ffeeba;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert {
    color: #856404;
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
}

.contactForm {
    max-width: 700px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contactForm h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #033c1c;
}

.formGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.formGroup label {
    margin-bottom: 0.5rem;
    color: #033c1c;
    font-weight: bold;
}

.formGroup input,
.formGroup textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.submitButton {
    background-color: #19680d;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 2px 2px #034e1c;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: block;
    margin: 1rem auto 0 auto;
}

.submitButton:hover {
    background-color: #50bc5d;
    box-shadow: 2px 3px #119f00;
}
.section-title {
    font-size: 1.5rem;
    color: #033c1c;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    border-left: 5px solid #19680d;
    padding-left: 1rem;
    font-weight: bold;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #044c2e;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.infoSection {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f3fff7;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}