/* ---
PaSS Website: Aangepaste Stijlen
Kleuren:
Blauw:   #0070b6
Paars:  #6f4596
Oranje: #f08d00
Wit:    #ffffff
--- */

/* --- KLEUREN & BASIS --- */
:root {
    --color-primary: #0070b6;  /* Het donkerblauw uit je SVG */
    --color-secondary: #6f4596; /* Het paars uit je SVG */
    --color-accent: #f08d00;   /* Het oranje/geel uit je SVG */
    --color-text: #333;
    --color-text-light: #555;
    --color-text-on-dark: #ffffff; /* Wit */
}

/* Zorg dat de body 100% hoogte heeft voor de sticky footer */
html, body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Vloeiend scrollen bij klikken op nav-links */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: #f8f9fa; /* Zeer lichte grijze achtergrond */
    position: relative;
    /* VERWIJDERD: padding-top: 56px; */
}

/* --- NAVIGATIEBALK --- */
#mainNav {
    background-color: var(--color-primary);
    /* NIEUW: Oranje lijn onder de navbar */
    border-bottom: 3px solid var(--color-accent);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-logo {
    height: 30px;
    width: auto;
}

.nav-link {
    font-weight: 500;
}

/* --- HERO SECTIE --- */
.hero-section {
    background-color: var(--color-primary);
    color: var(--color-text-on-dark);
    /* NIEUW: Padding bovenaan om ruimte te maken voor de fixed-top navbar */
    padding-top: calc(56px + 4rem); /* 56px navbar + 4rem extra ruimte */
    padding-bottom: 4rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex; /* Nodig voor align-items-center */
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.hero-text-column h1, .hero-text-column h2 {
    color: var(--color-text-on-dark);
}

/* NIEUW: Slogan uitlijning */
.hero-text-column .slogan-line-1 {
    text-align: left;
}
.hero-text-column .slogan-line-2 {
    text-align: right;
    padding-right: 10%; /* Inspringen zoals in 'deze layout.png' */
}

.hero-text-column .divider {
    background-color: var(--color-accent);
    height: 0.2rem;
    max-width: 5rem;
    margin: 1.5rem 0;
    opacity: 1;
    border: none;
}

.masthead-subheading {
    font-size: 1.25rem;
}

/* Responsive aanpassingen voor Hero */
@media (max-width: 991.98px) { /* lg breakpoint */
    .hero-section {
        height: auto;
        padding-top: calc(56px + 3rem); /* Minder padding op mobiel */
        padding-bottom: 3rem;
        text-align: center;
    }
    .hero-logo {
        max-height: 250px;
        margin-bottom: 2rem;
    }
    /* Reset slogan uitlijning op mobiel */
    .hero-text-column .slogan-line-1,
    .hero-text-column .slogan-line-2 {
        text-align: center;
        padding-right: 0;
    }
    .hero-text-column .divider {
        margin-left: auto;
        margin-right: auto;
    }
}


/* --- KNOPPEN (Bootstrap Override) --- */
.btn-primary {
    background-color: var(--color-accent) !important; 
    border-color: var(--color-accent) !important;
    color: var(--color-text-on-dark) !important;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #d87c00 !important; /* Donkerder oranje */
    border-color: #d87c00 !important;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* --- SECTIE STYLING --- */
.page-content {
    background-color: #ffffff; /* Witte achtergrond voor content */
}

/* Geef *elke* sectie een standaard padding */
.page-content > section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Zorg voor een lichte achtergrond voor de features, afwisselend */
#features {
    background-color: #f8f9fa; /* Lichte grijze achtergrond */
}

#how-it-works, #help {
    background-color: #ffffff; /* Wit */
    border-top: 1px solid #eee;
}

/* --- NIEUWE CONTENT BLOKKEN --- */
/* Stijl voor ALLE blokken (features, content, etc.) */
.content-block {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #ffffff;
    transition: all 0.3s ease;
    /* Zorgt dat flexbox items correct vullen */
    display: flex;
    flex-direction: column;
}
.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.content-block-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    align-self: center; /* Centreer de afbeelding */
}
.content-block img.img-fluid {
    width: 100%;
    height: auto;
    align-self: auto;
}

.content-block h3 {
    font-size: 1.6rem;
    color: var(--color-secondary); /* Paarse titels */
    margin-bottom: 15px;
}

/* Zorgt dat tekst in content-blokken links uitlijnt */
.content-block.text-start {
    text-align: left;
    align-items: flex-start;
}
.content-block.text-start h3 {
    align-self: flex-start;
}

/* --- CALL TO ACTION & FOOTER --- */
.call-to-action-section {
    background-color: var(--color-primary);
    color: var(--color-text-on-dark);
    padding: 5rem 0;
    border-top: 1px solid #eee;
}

.call-to-action-section h2 {
    color: var(--color-text-on-dark);
}

.footer {
    /* HIER IS DE WIJZIGING: Gebruik je paarse kleur */
    background-color: var(--color-secondary); 

    /* HIER IS DE WIJZIGING: Maak tekst wit voor leesbaarheid */
    color: rgba(255, 255, 255, 0.8); /* Iets transparant wit */

    /* HIER IS DE WIJZIGING: Een subtiele, donkerder paarse rand */
    border-top: 1px solid #5a397a; 
}

/* Zorgt dat de copyright tekst ook de juiste lichte kleur krijgt */
.footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important; 
}

/* Zorgt dat de Privacy Policy link helder wit is en opvalt */
.footer a.text-muted {
    color: #ffffff !important;
}

/* --- GUIDE PAGE & FLOAT STYLES --- */

/* Afbeelding die rechts zweeft (nu 35%) */
.guide-img-right {
    float: right;
    width: 35%; /* Kleiner gemaakt */
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Afbeelding die gecentreerd is (nu 35%) */
.guide-img-center {
    width: 35%; /* Kleiner gemaakt */
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Deze class zorgt dat de layout 'schoon' verdergaat na een float */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}