/* Fonts Importeren (Indien niet in _Layout aanwezig) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Globale Stijlen */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

/* Kleurenpalet */
:root {
    --brand-primary: #34a853; /* De groene kleur van je logo */
    --brand-dark: #2a8c45;
    --light-gray: #f8f9fa;
    --text-white: #ffffff;
}

/* Navigatiebalk */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-primary) !important;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.nav-link {
    font-weight: 600;
    margin-left: 15px;
    color: #555 !important;
}

.nav-link:hover {
    color: var(--brand-primary) !important;
}

.nav-btn-contact {
    background-color: var(--brand-primary);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 25px !important;
    transition: background-color 0.3s ease;
}

.nav-btn-contact:hover {
    background-color: var(--brand-dark);
}

/* ======== HERO SECTIE ======== */
/* Gecombineerde en opgeschoonde stijl */
.hero-section-image {
    position: relative;
    padding-top: 140px; /* Ruimte voor fixed navbar */
    padding-bottom: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../images/hero-background.png'); /* Zorg dat dit pad klopt */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

/* Donkere overlay voor leesbaarheid */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Iets donkerder voor beter contrast */
    z-index: 1;
}

/* Content (logo, slogan) */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-logo {
    max-height: 120px; /* Iets kleiner voor betere proporties */
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-section-image h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    margin-bottom: 15px;
}

.hero-section-image .lead {
    font-size: 1.4rem;
    color: #f8f9fa;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    font-weight: 400;
}

/* ======== CONTENT SECTIES ======== */
.marketing-section {
    padding: 80px 20px;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

/* Welkom sectie typografie */
.lead-sub {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Diensten Sectie */
.service-item {
    margin-bottom: 30px;
    text-align: left; /* Lijstjes lezen prettiger links uitgelijnd */
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--brand-primary);
    margin-bottom: 15px;
    text-align: center;
}

.service-item ul {
    padding-left: 20px;
}

.service-item li {
    margin-bottom: 8px;
}

/* Wondzorg extra accent */
.border-primary {
    border: 2px solid var(--brand-primary);
}

/* Regio & Kaart */
.list-group-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

/* Contact Sectie */
.contact-info {
    transition: box-shadow 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.contact-info .bi-icon {
    width: 40px;
    height: 40px;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info a {
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
}

/* Footer (indien aanwezig in Layout, hier voor de volledigheid) */
.footer {
    background-color: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

/* ======== TEAM & PAGINA TITELS ======== */
.page-title-section {
    padding: 140px 20px 60px 20px;
    background-color: var(--light-gray);
    border-bottom: 1px solid #ddd;
}

.page-title-section h1 {
    font-size: 2.5rem;
    color: var(--brand-primary);
}

.team-member img {
    border: 5px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Knoppen */
.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    color: #fff;
}