/* ---------------------------------------------
   Globale instellingen
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff;
    color: #111827;
    line-height: 1.7;
}

/* Container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ---------------------------------------------
   Einde Globale instellingen
--------------------------------------------- */

/* ---------------------------------------------
   Navbar
--------------------------------------------- */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: block;
}

.logo-img {
    height: 100px;       /* gewenste hoogte van het logo */
    width: auto;        /* behoudt originele verhoudingen */
    display: block;
    max-height: 100px;
}

/* Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
    color: #111827;
}

/* ---------------------------------------------
   Einde Navbar
--------------------------------------------- */

/* ---------------------------------------------
   Hero sectie
--------------------------------------------- */
.hero {
    background: url('Fotos/achtergrond-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 40px;
    border-radius: 12px;
    max-width: 90%;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subtext {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #374151;
}

.card a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------
   Einde Hero sectie
--------------------------------------------- */

/* ---------------------------------------------
   Feature Blokken (Wat doen wij)
--------------------------------------------- */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 80px auto;
    flex-wrap: wrap;
    max-width: 1200px;
}

.feature {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 300px;
    padding: 30px 20px;
    text-align: center;
}

.feature-icon {
    width: 50px;
    margin-bottom: 20px;
}

/* ---------------------------------------------
   Einde Feature Blokken
--------------------------------------------- */

/* ---------------------------------------------
   voor wie / Onze aanpak
--------------------------------------------- */
.text-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.image-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-content {
    flex: 1;
    max-width: 600px;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    background: #fafafa;
}

/* ---------------------------------------------
   Einde voor wie / Onze aanpak
--------------------------------------------- */

/* ---------------------------------------------
   Footer
--------------------------------------------- */
.footer {
    background: #111827; /* donkerblauw/grijs */
    color: #fff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p, 
.footer-section li, 
.footer-section a {
    font-size: 16px;
    color: #d1d5db; /* lichtere tekst */
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #9ca3af;
}

/* ---------------------------------------------
   Einde Footer
--------------------------------------------- */