/* Fietshurenraalte.nl - Interactieve fietsroutes pagina */

/* Container voor elke route-sectie */
.route-section {
    margin-bottom: 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.route-section-header {
    padding: 1.25rem 1.5rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.route-section-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.route-section-header .route-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.route-section-header .badge {
    background: rgba(255,255,255,0.22);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.route-section-body {
    padding: 1.5rem;
}

.route-section-body p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.route-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
}

.route-stat strong {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.route-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.route-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* Maak route-cards op home clickable */
.route-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.route-card .btn-route {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 6px 14px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Attractie / waypoint markeringen in tekst */
.route-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.route-highlights li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}

.route-highlights li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0.4rem;
}

/* Mobile */
@media (max-width: 600px) {
    .route-map {
        height: 280px;
    }
    .route-section-header h2 {
        font-size: 1.2rem;
    }
}