/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================
   HEADER
========================= */
.fe-header {
    background: #005aa7;
    color: #fff;
}

.fe-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.fe-logo {
    font-weight: bold;
    font-size: 20px;
}

.fe-nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

/* =========================
   HERO
========================= */
.fe-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* FOTO */
.fe-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 🔥 NIEUW: DONKERE OVERLAY */
.fe-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4); /* donkerder achtergrond */
    z-index: 2;
}

/* CONTENT */
.fe-overlay {
    position: relative;
    z-index: 3;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* TITEL */
.fe-hero-text {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   GRID
========================= */
.fe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

/* 🔥 NIEUW: BETERE CARDS */
.fe-card {
    background: rgba(255, 255, 255, 0.85); /* minder transparant */
    padding: 20px;
    border-radius: 10px;

    color: #222; /* donkere tekst */
    text-align: center;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fe-card {
    transition: transform 0.2s ease;
}

.fe-card:hover {
    transform: translateY(-5px);
}

.fe-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fe-card .fe-btn {
    margin-top: 15px;
}

/* =========================
   BUTTON
========================= */
.fe-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #005aa7;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

/* =========================
   FOOTER (ALTIJD ONDERAAN)
========================= */
.fe-footer {
    background: #222;
    color: #fff;
    padding: 20px;
    margin-top: auto; /* 🔥 zorgt dat footer altijd onder blijft */
}

.fe-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .fe-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .fe-nav a {
        margin: 5px 0;
    }

    .fe-hero-text h1 {
        font-size: 24px;
    }
}

/* =========================
   FORMULIER
========================= */
.fe-form-wrapper {
    width: 100%;
    max-width: 800px;
}

.fe-form-card {
    background: rgba(255, 255, 255, 0.95); /* bijna wit */
    padding: 30px;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* INPUTS */
.fe-form-card input,
.fe-form-card select,
.fe-form-card textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;

    border: 1px solid #ccc;
    border-radius: 6px;

    font-size: 14px;
}

/* TEXTAREA */
.fe-form-card textarea {
    min-height: 100px;
}

/* TITELS */
.fe-form-card h3 {
    margin-top: 20px;
}