@import url("reset.css");
@import url("Navigatiemenu.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E6DAC7;
    font-family: 'Josefin Sans', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1 {
    text-align: center;
    font-family: century, serif;
    color: #8c281a;
    font-size: 40px;
    margin: 30px 0 20px;
}

h2 {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    color: #8c281a;
    font-size: 25px;
    margin: 20px 0 15px;
}

h3 {
    text-align: center;
    font-family: century, serif;
    color: #8c281a;
    font-size: 20px;
    margin: 15px 0 10px;
}

p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

a {
    color: #8c281a;
    transition: color 0.3s ease;
}

a:hover {
    color: #50C878;
}

form {
    display: grid;
    justify-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

input, select, textarea {
    background-color: #8c281a;
    color: white;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
}

input::placeholder {
    color: rgba(255,255,255,0.7);
}

label {
    font-family: 'Josefin Sans', sans-serif;
    color: #8c281a;
    font-weight: bold;
    width: 100%;
    max-width: 400px;
}

button, input[type="submit"] {
    background-color: #FFA500;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #e69500;
    transform: scale(1.02);
}

img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
}

footer p {
    color: white;
    font-size: 16px;
    margin: 5px 0;
}

footer a {
    color: #50C878;
    text-decoration: none;
}

footer a:hover {
    color: #23e965;
    text-decoration: underline;
}

@media (max-width: 600px) {
    main {
        padding: 0 10px;
    }

    h1 {
        font-size: 28px;
        margin: 20px 0 15px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    form {
        padding: 10px;
    }

    input, select {
        font-size: 16px;
        padding: 10px 12px;
    }

    footer {
        padding: 30px 15px;
    }

    footer p {
        font-size: 14px;
    }
}