/* ============================= */
/* ALGEMENE STIJLEN        */
/* ============================= */

/* CSS Variabelen voor een modern kleurenschema */
:root {
    --primary-color: #007BFF; /* Een heldere, professionele blauwtint */
    --secondary-color: #0056b3; /* Donkerdere blauwtint voor hover-effecten */
    --background-color: #f8f9fa; /* Zeer lichte grijstint voor de body */
    --surface-color: #ffffff; /* Wit voor kaarten en achtergronden */
    --text-color: #333333; /* Donkergrijs voor leesbaarheid */
    --header-footer-bg: #1c2530; /* Donkere achtergrond voor header en footer */
    --light-text-color: #f0f0f0; /* Lichte tekstkleur voor donkere achtergronden */
}

/* Basis reset en setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* Zorgt voor soepel scrollen bij ankerlinks */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    /* Achtergrondafbeelding voor de hele pagina */
    background-image: linear-gradient(rgba(28, 37, 48, 0.7), rgba(28, 37, 48, 0.7)), url('bridge.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Zorgt dat de achtergrond niet meescrollt */
    color: var(--light-text-color); /* Standaard tekstkleur is nu licht */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* HEADER & NAVIGATIE       */
/* ============================= */

.header {
    background-color: var(--header-footer-bg);
    color: var(--light-text-color);
    padding: 0.5rem 0; /* Iets minder padding voor een strakkere look met logo */
    position: sticky; /* Zorgt dat de header bovenaan blijft plakken */
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Ruimte tussen logo en tekst */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text-color);
    text-decoration: none;
}

.logo img {
    height: 50px; /* Hoogte van het logo */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--light-text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hamburger menu (standaard verborgen op desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--light-text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================= */
/* HERO SECTIE           */
/* ============================= */

.hero-section {
    /* Achtergrond is nu op de body, dus geen background-image meer nodig hier */
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 66px); /* Hoogte van het scherm min de hoogte van de header */
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* ============================= */
/* FEATURES SECTIE         */
/* ============================= */

.features-section {
    padding: 80px 0;
    /* Voeg een semi-transparante achtergrond toe om de leesbaarheid te verbeteren maar de brug zichtbaar te houden */
    background-color: rgba(28, 37, 48, 0.5);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--light-text-color); /* Zorg dat de titel leesbaar is */
}

.features-grid {
    display: grid;
    /* Responsive grid: past zich aan op basis van de beschikbare ruimte */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.5); /* 50% dekkend wit */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color); /* Zet de tekstkleur op donkergrijs */
}

.feature-card:hover {
    transform: translateY(-5px); /* Lift-effect bij hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================= */
/* FOOTER               */
/* ============================= */

.footer {
    background-color: var(--header-footer-bg);
    color: var(--light-text-color);
    text-align: center;
    padding: 40px 0;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================= */
/* RESPONSIVE DESIGN        */
/* ============================= */

/* Stijlen voor schermen kleiner dan 768px */
@media (max-width: 768px) {
    /* Toon hamburger menu op mobiel en verberg desktop navigatie */
    .hamburger {
        display: block;
    }

    .nav-links {
        /* Verberg de navigatie en positioneer deze voor het uitklapmenu */
        display: none;
        position: absolute;
        top: 100%; /* Direct onder de header */
        right: 0;
        background-color: var(--header-footer-bg);
        width: 100%;
        flex-direction: column;
        text-align: center;
        border-top: 1px solid #444;
    }
    
    /* Stijl voor de actieve (zichtbare) mobiele navigatie */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px;
    }
    
    .nav-links li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Pas lettergroottes en padding aan voor kleinere schermen */
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .features-section h2 {
        font-size: 2rem;
    }
}