/* ===========================
   GLOBAL
=========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f1f2;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    background: #e8bc2c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    height: auto;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-right img {
    width: 28px;
    height: auto;
}

.login-btn {
    background: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid black;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
}

/* ===========================
   CATEGORY BAR
=========================== */
.category-bar {
    display: flex;
    justify-content: center;
    background: #d1cece;
    padding: 20px 0;
    gap: 40px;
}

.category {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.category img {
    width: 45px;
    margin-bottom: 5px;
}

/* ===========================
   SUCCESS PAGE
=========================== */
.success-container {
    text-align: center;
    padding: 60px 20px;
}

.success-mail {
    width: 120px;
    margin-bottom: 20px;
}

.back-home {
    display: inline-block;
    margin-top: 20px;
    background: #d9a600;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 18px;
    text-decoration: none;
    color: black;
}

/* ===========================
   CONTACT PAGE
=========================== */

/* Wrapper om formulier te centreren */
.contact-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f1f2;
    padding: 20px;
}

/* Groot lichtgrijs vak rondom formulier */
.contact-container {
    width: 450px;
    background-color: #e0e0e0; /* iets donkerder dan achtergrond */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Titel */
.contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Form */
.contact-form {
    display: block;
}

/* Elke input/textarea in eigen lichtgrijs vakje */
.form-group {
    margin-bottom: 15px;
    background-color: #e5e5e5; /* lichtgrijs vak voor input */
    padding: 10px;
    border-radius: 8px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: white; /* input zelf wit */
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Knop */
.send-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #d9a600;
    color: black;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.send-btn:hover {
    background-color: #c79500;
}

/* Foutmeldingen */
.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}
