Home » Contact » website l2w » l2w 2.0 » gemini » Claude
Leeuwen2Wielers - Premium Fietsenspecialist Rozenburg | E-bikes, Racefietsen & Custom Builds
.products-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: var(--white);
}
.section-header {
text-align: center;
margin-bottom: clamp(50px, 8vw, 70px);
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
gap: clamp(25px, 4vw, 35px);
max-width: 1200px;
margin: 0 auto;
}
.product-card {
background: var(--white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
border: 2px solid transparent;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-xl);
border-color: var(--primary);
}
.product-image {
position: relative;
aspect-ratio: 16/10;
overflow: hidden;
}
.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.product-card:hover .product-image img {
transform: scale(1.1);
}
.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--primary);
color: var(--white);
padding: 6px 14px;
border-radius: 100px;
font-size: clamp(11px, 2vw, 12px);
font-weight: 700;
text-transform: uppercase;
z-index: 2;
}
.product-content {
padding: clamp(25px, 5vw, 35px);
}
.product-brand {
font-size: clamp(12px, 2vw, 13px);
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 10px;
letter-spacing: 1px;
}
.product-title {
font-size: clamp(22px, 4vw, 26px);
font-weight: 800;
margin-bottom: 15px;
color: var(--dark);
}
.product-description {
font-size: clamp(14px, 2.5vw, 15px);
color: var(--gray-700);
margin-bottom: 20px;
line-height: 1.7;
}
.product-features {
list-style: none;
margin-bottom: 25px;
}
.product-features li {
font-size: clamp(13px, 2vw, 14px);
color: var(--gray-700);
padding: 10px 0;
border-bottom: 1px solid var(--gray-300);
display: flex;
align-items: center;
gap: 10px;
font-weight: 500;
}
.product-features li:last-child {
border-bottom: none;
}
.product-features li::before {
content: '✓';
color: var(--success);
font-weight: 700;
font-size: 18px;
}
.product-cta {
display: block;
width: 100%;
padding: 14px 24px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--white);
text-align: center;
border-radius: 100px;
font-weight: 700;
transition: var(--transition);
}
.product-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
}
.special-offers {
background: linear-gradient(180deg, var(--gray-100), var(--white));
padding: clamp(60px, 12vw, 100px) 20px;
}
.special-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
gap: clamp(30px, 5vw, 50px);
max-width: 1400px;
margin: 0 auto;
}
.special-card {
background: var(--white);
border-radius: var(--radius-xl);
padding: clamp(35px, 6vw, 50px);
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
transition: var(--transition);
}
.special-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
}
.lease-card::before {
background: linear-gradient(90deg, #4CAF50, #66BB6A);
}
.custom-card::before {
background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.special-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
}
.special-icon {
font-size: clamp(60px, 10vw, 80px);
margin-bottom: 20px;
}
.special-tag {
display: inline-block;
background: rgba(255, 107, 0, 0.1);
color: var(--primary);
padding: 6px 16px;
border-radius: 100px;
font-size: clamp(12px, 2vw, 13px);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}
.lease-card .special-tag {
background: rgba(76, 175, 80, 0.1);
color: #4CAF50;
}
.special-title {
font-size: clamp(28px, 5vw, 38px);
font-weight: 900;
margin-bottom: 20px;
line-height: 1.2;
}
.special-description {
font-size: clamp(15px, 2.5vw, 17px);
color: var(--gray-700);
line-height: 1.8;
margin-bottom: 30px;
}
.special-description strong {
color: var(--primary);
}
.special-features {
list-style: none;
margin-bottom: 30px;
background: var(--gray-100);
padding: 25px;
border-radius: var(--radius-md);
}
.special-features li {
font-size: clamp(14px, 2.5vw, 16px);
color: var(--gray-700);
padding: 10px 0;
font-weight: 500;
display: flex;
align-items: flex-start;
gap: 10px;
}
.special-features li::before {
content: '✓';
color: #4CAF50;
font-weight: 700;
font-size: 18px;
flex-shrink: 0;
}
.special-example {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 25px;
border-radius: var(--radius-md);
margin-bottom: 30px;
border: 2px solid #4CAF50;
}
.example-label {
font-size: clamp(13px, 2vw, 14px);
color: #4CAF50;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px;
}
.example-calc {
background: var(--white);
padding: 20px;
border-radius: var(--radius-sm);
}
.calc-row {
display: flex;
justify-content: space-between;
padding: 12px 0;
border-bottom: 1px solid var(--gray-300);
font-size: clamp(14px, 2vw, 16px);
}
.calc-row.highlight {
background: rgba(76, 175, 80, 0.05);
padding: 15px;
border-radius: var(--radius-sm);
border: none;
margin-top: 10px;
}
.calc-price {
font-weight: 700;
font-size: clamp(16px, 3vw, 20px);
}
.savings-badge {
display: inline-block;
background: linear-gradient(135deg, #4CAF50, #66BB6A);
color: var(--white);
padding: 10px 20px;
border-radius: 100px;
font-weight: 700;
margin-top: 15px;
font-size: clamp(13px, 2vw, 15px);
}
.custom-process {
background: var(--gray-100);
padding: 25px;
border-radius: var(--radius-md);
margin-bottom: 30px;
}
.process-header {
font-weight: 700;
margin-bottom: 20px;
font-size: clamp(16px, 2.5vw, 18px);
}
.process-steps-mini {
display: grid;
gap: 15px;
}
.mini-step {
display: flex;
align-items: center;
gap: 15px;
background: var(--white);
padding: 15px;
border-radius: var(--radius-sm);
transition: var(--transition);
}
.mini-step:hover {
transform: translateX(5px);
}
.mini-number {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
flex-shrink: 0;
}
.mini-text {
font-size: clamp(13px, 2vw, 15px);
color: var(--gray-700);
}
.special-cta {
display: flex;
gap: 15px;
margin-bottom: 25px;
flex-wrap: wrap;
}
.special-cta .btn {
flex: 1;
min-width: 180px;
}
.special-note {
font-size: clamp(13px, 2vw, 14px);
color: var(--gray-700);
background: rgba(255, 107, 0, 0.05);
padding: 15px;
border-radius: var(--radius-sm);
border-left: 4px solid var(--primary);
}
.special-note strong {
color: var(--primary);
}
.trust-section {
background: var(--dark);
color: var(--white);
padding: clamp(60px, 12vw, 100px) 20px;
}
.trust-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: clamp(25px, 4vw, 35px);
max-width: 1100px;
margin: 0 auto;
}
.trust-badge {
text-align: center;
padding: 25px 15px;
background: rgba(255,255,255,0.05);
border-radius: var(--radius-md);
transition: var(--transition);
border: 1px solid rgba(255,255,255,0.1);
}
.trust-badge:hover {
transform: translateY(-5px);
background: rgba(255,255,255,0.1);
}
.trust-icon {
font-size: clamp(40px, 6vw, 50px);
margin-bottom: 15px;
}
.trust-title {
font-weight: 700;
margin-bottom: 8px;
font-size: clamp(15px, 2.5vw, 17px);
}
.trust-subtitle {
font-size: clamp(12px, 2vw, 14px);
opacity: 0.8;
}
.gallery-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: var(--gray-100);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: clamp(15px, 3vw, 25px);
max-width: 1200px;
margin: 0 auto;
}
.gallery-item {
position: relative;
aspect-ratio: 4/3;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
cursor: pointer;
transition: var(--transition);
}
.gallery-item:hover {
transform: scale(1.05);
box-shadow: var(--shadow-xl);
z-index: 10;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 20px;
transform: translateY(100%);
transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay {
transform: translateY(0);
}
.gallery-title {
color: var(--white);
font-weight: 700;
font-size: clamp(14px, 2vw, 16px);
}
.process-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: var(--white);
}
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
gap: clamp(30px, 5vw, 40px);
max-width: 1100px;
margin: 0 auto;
}
.step-item {
text-align: center;
position: relative;
}
.step-number {
width: clamp(70px, 12vw, 90px);
height: clamp(70px, 12vw, 90px);
margin: 0 auto 25px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(32px, 5vw, 42px);
font-weight: 900;
box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
transition: var(--transition);
}
.step-item:hover .step-number {
transform: scale(1.1) rotate(5deg);
animation: pulse 1s infinite;
}
.step-title {
font-size: clamp(18px, 3vw, 22px);
font-weight: 800;
margin-bottom: 12px;
color: var(--dark);
}
.step-description {
color: var(--gray-700);
line-height: 1.7;
font-size: clamp(14px, 2vw, 15px);
}
.reviews-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: var(--gray-100);
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
gap: clamp(25px, 4vw, 30px);
max-width: 1200px;
margin: 0 auto;
}
.review-card {
background: var(--white);
padding: clamp(25px, 5vw, 35px);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
}
.review-card::before {
content: '"';
position: absolute;
top: 15px;
left: 20px;
font-size: 80px;
color: var(--primary);
opacity: 0.1;
font-family: Georgia, serif;
line-height: 1;
}
.review-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.review-stars {
color: var(--gold);
font-size: clamp(16px, 3vw, 20px);
margin-bottom: 15px;
}
.review-text {
font-size: clamp(14px, 2.5vw, 16px);
color: var(--gray-700);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}
.review-author {
display: flex;
align-items: center;
gap: 12px;
padding-top: 15px;
border-top: 1px solid var(--gray-300);
}
.review-avatar {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 18px;
}
.review-info {
flex: 1;
}
.review-name {
font-weight: 700;
color: var(--dark);
font-size: clamp(14px, 2vw, 15px);
}
.review-date {
font-size: clamp(12px, 2vw, 13px);
color: var(--gray-500);
}
.faq-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: var(--white);
}
.faq-container {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background: var(--white);
border: 2px solid var(--gray-300);
border-radius: var(--radius-md);
margin-bottom: 20px;
overflow: hidden;
transition: var(--transition);
}
.faq-item:hover {
border-color: var(--primary);
}
.faq-question {
width: 100%;
padding: clamp(20px, 4vw, 25px);
background: transparent;
border: none;
text-align: left;
font-size: clamp(15px, 2.5vw, 18px);
font-weight: 700;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--dark);
transition: var(--transition);
}
.faq-question:hover {
color: var(--primary);
}
.faq-icon {
font-size: clamp(24px, 4vw, 28px);
color: var(--primary);
transition: transform 0.3s;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-answer-content {
padding: 0 clamp(20px, 4vw, 25px) clamp(20px, 4vw, 25px);
color: var(--gray-700);
line-height: 1.8;
font-size: clamp(14px, 2vw, 16px);
}
.contact-section {
padding: clamp(60px, 12vw, 100px) 20px;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
gap: clamp(30px, 5vw, 50px);
max-width: 1200px;
margin: 0 auto;
}
.contact-info {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: clamp(30px, 5vw, 40px);
border-radius: var(--radius-lg);
border: 1px solid rgba(255,255,255,0.2);
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid rgba(255,255,255,0.2);
}
.contact-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.contact-icon {
font-size: clamp(24px, 4vw, 28px);
color: var(--white);
flex-shrink: 0;
}
.contact-details h3 {
font-size: clamp(16px, 2.5vw, 18px);
margin-bottom: 8px;
font-weight: 700;
}
.contact-details p, .contact-details a {
font-size: clamp(14px, 2vw, 16px);
opacity: 0.95;
line-height: 1.6;
}
.contact-details a:hover {
opacity: 1;
text-decoration: underline;
}
.opening-hours {
margin-top: 10px;
}
.hours-row {
display: flex;
justify-content: space-between;
padding: 8px 0;
font-size: clamp(13px, 2vw, 15px);
}
.hours-row.closed {
opacity: 0.6;
}
.map-container {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-xl);
min-height: 400px;
}
.map-container iframe {
width: 100%;
height: 100%;
min-height: 400px;
border: none;
}
.footer {
background: var(--dark);
color: var(--white);
padding: clamp(50px, 10vw, 80px) 20px 30px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
gap: clamp(30px, 5vw, 50px);
max-width: 1200px;
margin: 0 auto 40px;
}
.footer-col h3 {
margin-bottom: 20px;
color: var(--primary);
font-size: clamp(16px, 2.5vw, 19px);
font-weight: 800;
}
.footer-col p, .footer-col a {
color: rgba(255,255,255,0.8);
line-height: 1.8;
font-size: clamp(14px, 2vw, 15px);
}
.footer-col a {
display: block;
margin-bottom: 10px;
transition: var(--transition);
}
.footer-col a:hover {
color: var(--primary);
padding-left: 5px;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-link {
width: 45px;
height: 45px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
transition: var(--transition);
}
.social-link:hover {
background: var(--primary);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.6);
font-size: clamp(13px, 2vw, 14px);
}
.whatsapp-float {
position: fixed;
bottom: 25px;
right: 25px;
z-index: 998;
}
.whatsapp-btn {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--success), #20ba5a);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 32px;
box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
transition: var(--transition);
animation: float 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
transform: scale(1.1);
box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
position: absolute;
right: 75px;
top: 50%;
transform: translateY(-50%);
background: var(--white);
color: var(--dark);
padding: 10px 18px;
border-radius: 100px;
white-space: nowrap;
font-weight: 600;
font-size: 14px;
box-shadow: var(--shadow-md);
opacity: 0;
pointer-events: none;
transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip {
opacity: 1;
right: 80px;
}
.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 997;
transform: translateY(100%);
transition: transform 0.4s;
box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}
.cookie-consent.show {
transform: translateY(0);
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 25px;
flex-wrap: wrap;
}
.cookie-text {
flex: 1;
min-width: 250px;
font-size: clamp(13px, 2vw, 15px);
line-height: 1.6;
}
.cookie-text a {
color: var(--primary);
text-decoration: underline;
}
.cookie-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.cookie-btn {
padding: 10px 24px;
border-radius: 100px;
font-weight: 700;
font-size: 14px;
cursor: pointer;
border: none;
transition: var(--transition);
}
.cookie-accept {
background: var(--primary);
color: var(--white);
}
.cookie-accept:hover {
background: var(--primary-dark);
}
.cookie-decline {
background: rgba(255,255,255,0.1);
color: var(--white);
border: 1px solid rgba(255,255,255,0.3);
}
.cookie-decline:hover {
background: rgba(255,255,255,0.2);
}
.scroll-top {
position: fixed;
bottom: 25px;
left: 25px;
width: 50px;
height: 50px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
cursor: pointer;
opacity: 0;
pointer-events: none;
transition: var(--transition);
z-index: 998;
box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}
.scroll-top.show {
opacity: 1;
pointer-events: auto;
}
.scroll-top:hover {
transform: translateY(-5px);
box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
}
@media (max-width: 1024px) {
.nav {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero-stats {
gap: 25px;
}
}
@media (max-width: 768px) {
.header-container {
padding: 15px 20px;
}
.hero-buttons {
flex-direction: column;
width: 100%;
}
.hero-buttons .btn {
width: 100%;
}
.usp-grid {
gap: 20px;
}
.usp-item {
flex-direction: column;
text-align: center;
gap: 8px;
}
.special-cta {
flex-direction: column;
}
.special-cta .btn {
width: 100%;
}
.contact-grid {
grid-template-columns: 1fr;
}
.whatsapp-float {
bottom: 20px;
right: 20px;
}
.whatsapp-btn {
width: 55px;
height: 55px;
font-size: 28px;
}
.scroll-top {
bottom: 90px;
left: 20px;
width: 45px;
height: 45px;
font-size: 20px;
}
}
@media (max-width: 480px) {
.announcement-bar {
font-size: 12px;
padding: 10px;
}
.stat-item {
min-width: 120px;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.cookie-content {
flex-direction: column;
text-align: center;
}
.cookie-buttons {
width: 100%;
flex-direction: column;
}
.cookie-btn {
width: 100%;
}
}
🎉 NIEUW: Specialized Turbo Vado 5.0 nu in de showroom! • Gratis proefrit • Bel 0181-212417
Leeuwen2Wielers Showroom
⭐ 4.8/5 sterren · 127 reviews
Uw Fietsenspecialist sinds 1962
E-bikes · Racefietsen · Custom Builds · Retül Bikefitting
Officieel Specialized & Trek Elite Dealer in Rozenburg
60+
Jaar ervaring
5.000+
Tevreden klanten
24u
Spoedservice
100%
Kwaliteit
✓
Gratis proefrit
🚚
Gratis thuisbezorging
🔧
Spoedservice 24u
💯
2 jaar garantie
⚙️
Retül bikefitting
Bestseller
Specialized · Trek · Gazelle
E-bikes & Stadsfietsen
Elektrisch fietsen zonder compromis. Van stadsfiets tot sportieve e-MTB.
Bosch & Shimano motoren
Bereik tot 200km
Gratis proefrit & afstelling
Lease a Bike mogelijk
Bekijk collectie →
Pro Level
Specialized · Trek · Scott
Racefietsen & Gravel
Voor de serieuze wielrenner. Carbon frames, topgroepen en perfecte geometrie.
Carbon & aluminium frames
Shimano Ultegra/Dura-Ace
Inclusief Retül bikefitting
Custom builds mogelijk
Ontdek meer →
Adventure
Specialized · Trek · Canyon
Mountainbikes & ATB
Off-road performance. Van XC-racers tot enduro monsters.
Full suspension & hardtail
RockShox & Fox vering
29" & 27.5" wielmaten
E-MTB beschikbaar
Verken nu →
🚴💼
Lease a Bike
Lease uw Droomfiets via Werkgever
Met Lease a Bike least u een fiets via uw werkgever en profiteert u van tot 40% fiscaal voordeel . Inclusief verzekering, onderhoud en pechhulp.
Lease voor 36 maanden via bruto salaris
Tot 40% goedkoper door fiscaal voordeel
All-in: verzekering, onderhoud & pechhulp
Gratis vervangende fiets bij storing
Na 36 maanden overnemen voor restwaarde
Keuze uit 500+ fietsen tot €8.000
💰 Rekenvoorbeeld
Nieuwprijs fiets:
€4.000
Maandlast bruto:
€111
Netto kosten (40% voordeel):
€67/maand
Totale besparing:
€1.584
✓ Inclusief verzekering & onderhoud
Let op: Uw werkgever moet deelnemen aan Lease a Bike. Wij helpen u graag bij het aanmelden!
🔧⚙️
Custom Builds
Uw Fiets, 100% Op Maat
Laat door onze experts een volledig custom fiets bouwen. Van frame tot elk component: precies zoals u wilt.
1
Gratis intakegesprek & Retül 3D bikefitting
2
Samen selecteren: frame, groepset, wielen, zadel
3
Professionele assemblage in onze werkplaats
4
Finale afstelling & testrit met u
Keuze uit top merken: Specialized, Trek, Canyon, etc.
Carbon of aluminium frames op maat
Shimano, SRAM of Campagnolo groepsets
Premium wielen: DT Swiss, Fulcrum, Mavic
Gratis Retül bikefitting (t.w.v. €150)
2 jaar garantie op assemblage
Populair: Custom racefiets vanaf €2.500 · Gravel bike vanaf €2.000 · E-bike custom vanaf €3.500
🏆
60+ Jaar Expertise
Sinds 1962
⭐
4.8/5 Sterren
127 reviews
✓
Officiële Dealer
Specialized & Trek
🔧
Eigen Werkplaats
24u spoedservice
📐
Retül Certified
3D bikefitting
1
Kennismaking
Gratis intakegesprek in onze showroom. Wij luisteren naar uw wensen en budget.
2
Proefrit
Test uw favoriete modellen. Voel het verschil en maak een weloverwogen keuze.
3
Bikefitting
Retül 3D-meting voor perfecte zitpositie. Voorkomt klachten en maximaliseert comfort.
4
Aflevering
Gratis thuisbezorging of ophalen. Inclusief uitleg en 2 jaar garantie.
⭐⭐⭐⭐⭐
"Al 15 jaar klant en altijd tevreden. Vakmanschap, eerlijk advies en snelle service. Mijn MTB liep niet lekker, binnen 24u opgehaald, gerepareerd en teruggebracht!"
PV
Peter van der Vliet
3 weken geleden
⭐⭐⭐⭐⭐
"Via Lease a Bike een Specialized Turbo Vado geleaset. Super begeleiding, alles uitgelegd en de bikefitting was top! Fiets rijdt als een droom."
MJ
Marieke Jansen
1 maand geleden
⭐⭐⭐⭐⭐
"Custom racefiets laten bouwen met Ultegra Di2. Perfecte afstelling, prachtige afwerking en rijdt fenomenaal. Prijs-kwaliteit uitstekend!"
RB
Rob Bakker
2 maanden geleden
⭐⭐⭐⭐⭐
"Geweldige service! Kwam voor een snelle reparatie en
kreeg direct hulp. Vriendelijk personeel en eerlijke prijzen. Absolute aanrader voor de regio Rozenburg!"
SH
Sandra Hermans
1 week geleden
cookieConsent', 'declined');
cookieConsent.classList.remove('show');
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
const href = this.getAttribute('href');
if (href !== '#' && href !== '') {
e.preventDefault();
const target = document.querySelector(href);
if (target) {
const headerHeight = header.offsetHeight;
const targetPosition = target.offsetTop - headerHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
}
});
});
// Mobile menu toggle (basic implementation)
const mobileMenuBtn = document.querySelector('.mobile-menu-btn');
const nav = document.querySelector('.nav');
mobileMenuBtn.addEventListener('click', () => {
nav.style.display = nav.style.display === 'flex' ? 'none' : 'flex';
nav.style.position = 'absolute';
nav.style.top = '100%';
nav.style.left = '0';
nav.style.right = '0';
nav.style.background = 'white';
nav.style.flexDirection = 'column';
nav.style.padding = '20px';
nav.style.boxShadow = '0 4px 20px rgba(0,0,0,0.1)';
});
// Animation on scroll (simple fade-in)
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Apply fade-in to sections
document.querySelectorAll('.product-card, .review-card, .step-item, .trust-badge, .gallery-item').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
// WhatsApp float animation
const whatsappBtn = document.querySelector('.whatsapp-btn');
setInterval(() => {
whatsappBtn.style.animation = 'none';
setTimeout(() => {
whatsappBtn.style.animation = 'float 3s ease-in-out infinite';
}, 10);
}, 10000);
console.log('🚴 Leeuwen2Wielers website geladen!');