/* Algemene body-styling */
body {
    font-family: 'Avenir', sans-serif;
    color: #333;
    background-color: #fff;
}

header {
    border-bottom: 4px solid #2E8CA8;
    background-color: #ffffff;
    padding: 40px 0 !important; 
}

.welcome-section {
  margin-top: 200px;
  margin-bottom: 200px;
}

.vestigingen-section {
    margin-bottom: 200px;
}

/* Navigatie links */
.nav-link {
    color: #2E8CA8 !important; /* donkerblauw */
    font-weight: 500;
    font-size: 18px;
    padding: 0 30px;
}

.nav-link:hover {
    color: #F29C50 !important; /* oranje accent */
}

/* Carrousel-afbeeldingen */
.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Koppen in secties */
section h2 {
    color: #006F93; /* donkerblauw */
    margin-bottom: 20px;
}

/* Footer met lichte blauwe lijn boven */
footer {
    background-color: #f8f9fa;
    color: #666;
    border-top: 4px solid #2E8CA8; /* lichtblauw */
    padding: 20px 0;
}

/* Footer links */
footer a {
    color: #006F93;
    text-decoration: none;
}

footer a:hover {
    color: #F29C50;
}

/* Kleine extra’s */
ul {
    padding-left: 1rem;
    color: #2E8CA8;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2E8CA8;
}

.text-brand-dark {
    color: #006F93; /* donkerblauw */
}

.text-brand-accent {
    color: #F29C50; /* oranje */
}

.text-brand-accent:hover {
    color: #006F93;
    text-decoration: underline;
}

.card {
    border: none;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}