:root {
--bvo-oranje: #FF6B35;
--bvo-oranje-dark: #E55A2B;
--bvo-oranje-light: #FF8555;
--bvo-blauw: #2C3E50;
--bvo-blauw-light: #34495E;
--bvo-grijs: #7F8C8D;
--bvo-grijs-light: #ECF0F1;
--bvo-wit: #FFFFFF;
--bvo-zwart: #2C3E50;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 16px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
--transition: all 0.3s ease;
} body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
color: var(--bvo-zwart);
line-height: 1.7;
font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.3;
color: var(--bvo-blauw);
margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p {
margin-bottom: 1.5rem;
color: var(--bvo-blauw-light);
} .bvo-header {
background: var(--bvo-wit);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 999;
transition: var(--transition);
}
.bvo-header.scrolled {
box-shadow: var(--shadow-md);
}
.bvo-header-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.bvo-logo {
display: flex;
align-items: center;
text-decoration: none;
gap: 0.75rem;
}
.bvo-logo img {
height: 50px;
width: auto;
transition: var(--transition);
}
.bvo-logo:hover img {
transform: scale(1.05);
}
.bvo-logo-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--bvo-blauw);
}
.bvo-logo-text span {
color: var(--bvo-oranje);
} .bvo-nav {
display: flex;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
}
.bvo-nav a {
text-decoration: none;
color: var(--bvo-blauw);
font-weight: 500;
padding: 0.5rem 0;
position: relative;
transition: var(--transition);
}
.bvo-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--bvo-oranje);
transition: var(--transition);
}
.bvo-nav a:hover,
.bvo-nav a.current-menu-item {
color: var(--bvo-oranje);
}
.bvo-nav a:hover::after,
.bvo-nav a.current-menu-item::after {
width: 100%;
} .bvo-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}
.bvo-menu-toggle span {
display: block;
width: 25px;
height: 3px;
background: var(--bvo-oranje);
margin: 5px 0;
transition: var(--transition);
} .bvo-hero {
background: linear-gradient(135deg, var(--bvo-blauw) 0%, var(--bvo-blauw-light) 100%);
color: var(--bvo-wit);
padding: 6rem 2rem;
position: relative;
overflow: hidden;
}
.bvo-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF6B35" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
background-size: cover;
opacity: 0.3;
}
.bvo-hero-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
text-align: center;
}
.bvo-hero h1 {
color: var(--bvo-wit);
margin-bottom: 1.5rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.bvo-hero p {
font-size: 1.25rem;
color: rgba(255,255,255,0.95);
max-width: 700px;
margin: 0 auto 2rem;
}
.bvo-hero-badges {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 3rem;
}
.bvo-hero-badges img {
height: 80px;
width: auto;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
} .bvo-diensten {
padding: 5rem 2rem;
background: var(--bvo-grijs-light);
}
.bvo-diensten-container {
max-width: 1200px;
margin: 0 auto;
}
.bvo-section-title {
text-align: center;
margin-bottom: 3rem;
}
.bvo-section-title h2 {
position: relative;
display: inline-block;
padding-bottom: 1rem;
}
.bvo-section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--bvo-oranje);
border-radius: 2px;
}
.bvo-diensten-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.bvo-dienst-card {
background: var(--bvo-wit);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
}
.bvo-dienst-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.bvo-dienst-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: linear-gradient(135deg, var(--bvo-oranje-light), var(--bvo-oranje));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
}
.bvo-dienst-card h3 {
color: var(--bvo-blauw);
margin-bottom: 1rem;
}
.bvo-dienst-card p {
color: var(--bvo-grijs);
line-height: 1.8;
} .bvo-usps {
padding: 5rem 2rem;
background: var(--bvo-wit);
}
.bvo-usps-container {
max-width: 1200px;
margin: 0 auto;
}
.bvo-usps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.bvo-usp-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.bvo-usp-icon {
width: 50px;
height: 50px;
background: var(--bvo-oranje);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--bvo-wit);
font-size: 1.5rem;
flex-shrink: 0;
}
.bvo-usp-content h4 {
color: var(--bvo-blauw);
margin-bottom: 0.5rem;
}
.bvo-usp-content p {
color: var(--bvo-grijs);
margin-bottom: 0;
} .bvo-cta {
background: linear-gradient(135deg, var(--bvo-oranje) 0%, var(--bvo-oranje-dark) 100%);
color: var(--bvo-wit);
padding: 4rem 2rem;
text-align: center;
}
.bvo-cta-container {
max-width: 800px;
margin: 0 auto;
}
.bvo-cta h2 {
color: var(--bvo-wit);
margin-bottom: 1rem;
}
.bvo-cta p {
color: rgba(255,255,255,0.95);
font-size: 1.125rem;
margin-bottom: 2rem;
}
.bvo-btn {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--bvo-wit);
color: var(--bvo-oranje);
text-decoration: none;
font-weight: 600;
border-radius: 50px;
transition: var(--transition);
box-shadow: var(--shadow-md);
}
.bvo-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
background: var(--bvo-grijs-light);
} .bvo-footer {
background: var(--bvo-blauw);
color: rgba(255,255,255,0.9);
padding: 3rem 2rem 1rem;
}
.bvo-footer-container {
max-width: 1200px;
margin: 0 auto;
}
.bvo-footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}
.bvo-footer-section h3 {
color: var(--bvo-wit);
margin-bottom: 1rem;
font-size: 1.25rem;
}
.bvo-footer-section p,
.bvo-footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: var(--transition);
}
.bvo-footer-section a:hover {
color: var(--bvo-oranje);
}
.bvo-footer-nav {
list-style: none;
padding: 0;
margin: 0;
}
.bvo-footer-nav li {
margin-bottom: 0.5rem;
}
.bvo-footer-badges {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.bvo-footer-badges img {
height: 60px;
width: auto;
}
.bvo-footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 2rem;
text-align: center;
font-size: 0.875rem;
color: rgba(255,255,255,0.7);
} @media (max-width: 768px) { .bvo-menu-toggle {
display: block;
}
.bvo-nav {
position: fixed;
top: 70px;
right: -100%;
width: 80%;
max-width: 300px;
height: calc(100vh - 70px);
background: var(--bvo-wit);
flex-direction: column;
padding: 2rem;
box-shadow: var(--shadow-lg);
transition: var(--transition);
gap: 0;
}
.bvo-nav.active {
right: 0;
}
.bvo-nav li {
margin-bottom: 1rem;
}
.bvo-nav a {
display: block;
padding: 0.75rem 0;
border-bottom: 1px solid var(--bvo-grijs-light);
} .bvo-hero {
padding: 4rem 1.5rem;
}
.bvo-hero h1 {
font-size: 2rem;
}
.bvo-hero p {
font-size: 1.125rem;
}
.bvo-hero-badges {
flex-direction: column;
align-items: center;
} .bvo-diensten-grid {
grid-template-columns: 1fr;
}
.bvo-diensten,
.bvo-usps,
.bvo-cta {
padding: 3rem 1.5rem;
} .bvo-usps-grid {
grid-template-columns: 1fr;
} .bvo-footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
} @media (min-width: 769px) and (max-width: 1024px) {
.bvo-header-container {
padding: 1rem 1.5rem;
}
.bvo-nav {
gap: 1.5rem;
}
.bvo-diensten-grid {
grid-template-columns: repeat(2, 1fr);
}
} .text-center { text-align: center; }
.text-oranje { color: var(--bvo-oranje); }
.bg-oranje { background: var(--bvo-oranje); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; } .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border-width: 0;
}