:root {
    /* Fonts */
    /* Regular */
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: italic;

    /* Medium */
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-style: normal;

    /* Bold */
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
    /* Extrabold */
    font-family: "poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    /* Black */
    font-family: "poppins", sans-serif;
    font-weight: 900;
    font-style: normal;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;

    /* Colors */
    --strawberry-red: #fb3640ff;
    --muted-teal: #7a9e7eff;
    --white-smoke: #f4f2f3ff;
    --deep-mocha: #362c28ff;
    --turf-green: #04724dff;

    /* Site max-width */
    --site-max-width: 1300px;

    /* Line height Body */
    --line-height-body: 1.5;

}

.contact-section h2 {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-l);
    color: var(--turf-green);
    text-decoration: underline;
    margin-bottom: 2rem;
}

.contact-section {
    min-height: 50vh;
    margin: 50px 0;
}

.contact-section a {
    color: var(--turf-green);
}

.contact-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    min-height: 50vh;
    color: var(--deep-mocha);
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    min-height: 50vh;
    margin: 0 50px;
}

.contact-info p {
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    margin: 3rem 5rem 3rem 0;
}

form div {
    margin-bottom: 10px;
}

.user-info {
    border: 1px solid var(--deep-mocha);
    border-radius: var(--border-radius-s);
    padding: 10px 0 10px 5px;
    width: 100%;
}

form select {
    max-width: 2rem;
}

.form-personen {
    display: flex;
    flex-direction: column;
}

.form-opmerkingen {
    display: flex;
    flex-direction: column;
}

.form-buttons {
    display: flex;
    max-width: 30%;
    justify-content: space-between;
    padding-top: 1rem;
}

input#submit.button {
    background-color: var(--strawberry-red);
    border: none;
    border-radius: var(--border-radius-s);
    padding: .5rem;
}

input#reset.button {
    background-color: var(--strawberry-red);
    border: none;
    border-radius: var(--border-radius-s);
    padding: .5rem;
}

input#submit.button:hover {
    cursor: pointer;
}

input#reset.button:hover {
    cursor: pointer;
}

.maps-section {
    min-height: 50vh;
    margin-bottom: 50px;
}

.maps-content {
    margin: 0 auto;
    padding: 20px 20px;
    max-width: var(--site-max-width);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
}

iframe {
    border-radius: 14px;
}

@media (max-width: 500px) {
    .contact-details {
        display: block;
    }

    form {
        margin-right: 0;
    }

    .contact-info {
        padding-top: 1rem;
        text-align: center;
    }
    .contact-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .form-buttons {
        gap: 1rem;
    }

    .maps-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}