/* Ebikes-Raalte.com Stylesheet */
/* Bus vol Bikes style: groen #388e3c */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #388e3c;
    color: white;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
}

/* Hamburger menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 1.5em;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

nav {
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Active/highlighted nav item */
nav a[href="blog.html"]:hover,
nav a.active {
    color: #81c784;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2e7d32;
        flex-direction: column;
        padding: 20px;
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    nav.open {
        display: flex;
    }
    
    nav a {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        font-size: 1.1em;
    }
    
    nav a:last-child {
        border-bottom: none;
    }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero h1 span {
    font-weight: 800;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: white;
    color: #388e3c;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    color: #388e3c;
    font-size: 2em;
    margin-bottom: 30px;
}

h3 {
    color: #2e7d32;
    font-size: 1.4em;
    margin: 25px 0 15px;
}

h4 {
    color: #388e3c;
    font-size: 1.2em;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* USP Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.card h3 {
    margin-top: 0;
}

/* Content */
.content {
    background: white;
}

.content a {
    color: #388e3c;
    font-weight: 600;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background: #e8f5e9;
    border-left: 5px solid #388e3c;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.highlight-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #388e3c;
    font-weight: bold;
}

/* Routes */
.routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.route {
    background: #f1f8e9;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #c8e6c9;
}

.route h4 {
    margin-top: 0;
}

.route p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

/* Bike Types */
.bike-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.type {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.type h4 {
    margin-top: 0;
    color: #388e3c;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    color: white;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.cta-box .btn-primary {
    background: white;
    color: #388e3c;
}

.cta-box .btn-secondary {
    color: white;
    border-color: white;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: #388e3c;
    margin-bottom: 15px;
}

footer a {
    color: #4fc3f7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav a {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .btn-secondary {
        display: block;
        margin: 15px auto 0;
        max-width: 200px;
    }
    
    .cta-box {
        padding: 30px;
    }
}
