/* Almere Wandelroutes - Professioneel Design */
/* Geïnspireerd door rotterdamroutes.nl */

/* CSS Variables */
:root {
  /* Colors - Professioneel */
  --primary: #111111;
  --primary-light: #000000;
  --accent: #eb5e17;
  --accent-dark: #d44000;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-cream: #faf9f7;
  --bg-black: #111111;
  --bg-orange: #eb5e17;
  
  /* Text */
  --text-primary: #040404;
  --text-secondary: #4a4a5a;
  --text-muted: #000000;
  --text-black:#111111;
  --text-white: #ffffff;
  
  /* Borders */
  --border-light: #e8e8ec;
  --border-medium: #d0d0d8;
  
  /* Shadows */
  --shadow-sm: 0 2px 16px rgba(171, 114, 114, 0.16);
  --shadow-box: 0 2px 14px rgba(171, 114, 114, 0.16);
  --shadow-md: 0 4px 16px rgba(253, 253, 253, 0.20);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 4px 20px rgba(255, 89, 0, 0.55);
  
  /* Radius */
  --radius-sm: 0px;
  --radius: 0px;
  --radius-lg: 0px;
  --radius-full: 0px;
  
  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== */
/* HEADER */
/* ==================== */
.header {
  background-color: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

/* Navigation */
.main-nav {
  display: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-app {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-app:hover {
  background: var(--accent-dark);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-slow);
}

.hero-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ==================== */
/* MAIN CONTENT */
/* ==================== */
.main {
  padding: 4rem 0 6rem;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ==================== */
/* ROUTE CARDS GRID */
/* ==================== */
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Route Card - Professioneel */
.route-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  transition: var(--transition-slow);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-light);
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.route-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.route-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.route-card:hover .route-card-image img {
  transform: scale(1.03);
}

/* Route Stats Overlay */
.route-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  gap: 1rem;
}

.route-stat-overlay {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-white);
  font-weight: 500;
}

.route-stat-overlay svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* Badges */
.route-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

.badge-populair {
  background: #e74c3c;
}

.badge-nieuw {
  background: var(--accent);
  color: var(--primary);
}

.badge-architectuur {
  background: #9b59b6;
}

.badge-natuur {
  background: #27ae60;
}

.badge-familievriendelijk {
  background: #f39c12;
}

.badge-avontuurlijk {
  background: #3498db;
}

.route-card-content {
  padding: 1.25rem;
}

.route-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.route-card-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
  background-color: var(--primary);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* ==================== */
/* ROUTE DETAIL PAGE */
/* ==================== */

/* Back Navigation */
.back-nav {
  background-color: var(--bg-white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--text-primary);
}

.back-link svg {
  width: 18px;
  height: 18px;
}

/* Route Hero */
.route-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.route-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.route-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.route-hero-image {
  width: 280px;
  height: 280px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.route-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.route-hero-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.route-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
}

.route-hero-stat svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Route Content */
.route-content {
  padding: 3rem 0 4rem;
  background: var(--bg-light);
}

.route-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Start Button */
.start-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
  padding: 1.125rem 2rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-slow);
}

.start-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Route Sections */
.route-section {
  margin-bottom: 2.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.route-section-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.route-section-title svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
}

.route-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.info-item:hover {
  background-color: var(--border-light);
}

.info-item-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item-content {
  flex: 1;
}

.info-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.info-item-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlights */
.highlights-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.highlights-container::-webkit-scrollbar {
  height: 6px;
}

.highlights-container::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: var(--radius-full);
}

.highlights-container::-webkit-scrollbar-thumb {
  background-color: var(--border-medium);
  border-radius: var(--radius-full);
}

.highlight-card {
  flex: 0 0 260px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.highlight-card:hover {
  background-color: var(--border-light);
}

.highlight-card-image {
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.highlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.highlight-card:hover .highlight-card-image img {
  transform: scale(1.03);
}

.highlight-card-content {
  padding: 1rem;
}

.highlight-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight-card-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Map */
.map-container {
  width: 100%;
  height: 350px;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-container iframe,
.map-container #route-map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Tips */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tip-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.tip-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Next Route Navigation */
.next-route {
  margin-top: 2rem;
}

.next-route-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.next-route-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.next-route-content {
  display: flex;
  flex-direction: column;
}

.next-route-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.next-route-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.next-route-arrow {
  color: var(--accent-dark);
  font-size: 1.25rem;
}

/* ==================== */
/* WALK PAGE */
/* ==================== */
.walk-header {
  background: var(--primary);
  padding: 0.875rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.walk-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.walk-route-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

.stop-walk-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.stop-walk-btn:hover {
  background: rgba(231, 76, 60, 0.8);
}

.walk-map-section {
  position: relative;
  height: 55vh;
  min-height: 400px;
}

#walk-map {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.current-progress {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.walk-highlights {
  background: var(--bg-light);
  padding: 1.5rem 0;
}

.walk-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.walk-highlights-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.walk-highlights-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.walk-highlights-scroll::-webkit-scrollbar {
  height: 6px;
}

.walk-highlights-scroll::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: var(--radius-full);
}

.walk-highlights-scroll::-webkit-scrollbar-thumb {
  background-color: var(--border-medium);
  border-radius: var(--radius-full);
}

.walk-highlight-card {
  flex: 0 0 280px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.walk-highlight-distance {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.walk-highlight-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.walk-highlight-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 1rem 1rem 0.25rem;
  margin: 0;
}

.walk-highlight-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0 1rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.walk-highlight-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.walk-highlight-link:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ==================== */
/* HIGHLIGHT PAGE */
/* ==================== */
.highlight-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
}

.highlight-back {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.highlight-back:hover {
  background: rgba(0, 0, 0, 0.7);
}

.highlight-hero-image {
  width: 100%;
  height: 100%;
}

.highlight-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.highlight-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.highlight-hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-distance-badge,
.highlight-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.highlight-audio {
  background: var(--bg-light);
  padding: 1.5rem;
}

.audio-player {
  max-width: 600px;
  margin: 0 auto;
}

.audio-unlock-message {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-medium);
}

.audio-unlock-message strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.audio-unlock-message p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.audio-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.audio-play-btn:hover {
  background: var(--accent-dark);
}

.audio-progress {
  height: 6px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  margin-top: 1rem;
  overflow: hidden;
}

.audio-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.highlight-content {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
}

.highlight-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.highlight-description {
  margin-bottom: 2rem;
}

.highlight-description h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.highlight-description p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight-facts {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.highlight-facts h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.highlight-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.highlight-facts li:last-child {
  border-bottom: none;
}

.fact-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.highlight-navigation {
  background: var(--bg-light);
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.highlight-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.nav-link:hover {
  border-color: var(--accent);
  background: var(--bg-cream);
}

.nav-icon {
  font-size: 1.25rem;
}

.nav-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.nav-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .btn-app {
    display: inline-flex;
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .main {
    padding: 5rem 0 8rem;
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .route-card-image {
    height: 220px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-section {
    padding: 2rem;
  }

  .walk-map-section {
    height: 60vh;
  }

  .highlight-hero {
    height: 60vh;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .hero {
    padding: 6rem 0 7rem;
  }

  .main {
    padding: 6rem 0 10rem;
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .route-card-image {
    height: 240px;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-card {
    flex: 0 0 300px;
  }

  .route-hero-image {
    width: 320px;
    height: 320px;
  }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
  .routes-grid {
    gap: 2rem;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* altijd 2 kolommen */
  gap: 16px;
}

/* ============================================================
   WALK PAGE – sticky map + verticale highlights lijst met cards
   Voeg dit toe onderaan styles.css
   ============================================================ */

/* 1. Kaart blijft plakken net onder de header */
.walk-map-section {
  position: sticky !important;
  top: 56px;
  z-index: 90;
  height: 60vh;
  min-height: 300px;
  max-height: 500px;
}

/* 2. Highlights-lijst: van horizontale slider naar verticale kolom */
.walk-highlights-scroll {
  display: flex !important;
  flex-direction: column !important;
  overflow-x: unset !important;
  gap: 10px !important;           /* ruimte tussen de cards */
  padding: 12px 12px 24px !important; /* padding rondom de lijst */
}

/* 3. Elke card: horizontale rij met ronding en schaduw */
.walk-highlight-card {
  display: flex !important;
  flex-direction: row !important;
  flex: none !important;
  width: 100% !important;
  border-radius: 0px !important; /* lichte ronding */
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  background: #fff !important;
  overflow: hidden !important;
  align-items: stretch;
  position: relative;
}

/* 4. Afstandsbadge: linksboven in de foto */
.walk-highlight-distance {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 0px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
}

/* 5. Foto: vierkant blok, vaste breedte */
.walk-highlight-image {
  width: 100px !important;
  min-width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  flex-shrink: 0;
  display: block;
}

/* 6. Tekst-blok naast de foto */
.walk-highlight-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px;
  min-width: 0;
}

.walk-highlight-card .walk-highlight-title {
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin: 0 0 3px !important;
  padding: 0 !important;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.walk-highlight-card .walk-highlight-description {
  font-size: 0.8125rem !important;
  color: var(--text-secondary) !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.walk-highlight-card .walk-highlight-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 0 !important;
  background: none !important;
  color: var(--accent-dark) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  align-self: flex-start;
  margin-top: auto;
}

.walk-highlight-card .walk-highlight-link:hover {
  color: var(--accent) !important;
  background: none !important;
}

/* 7. Sectie zelf: lichtgrijze achtergrond laat de witte cards uitkomen */
.walk-highlights {
  background: var(--bg-light) !important;
  padding: 0 !important;
}

.walk-highlights-container {
  padding: 0 !important;
  max-width: 100% !important;
}

.walk-highlights-title {
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--text-muted) !important;
  padding: 14px 12px 8px !important;
  margin: 0 !important;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

/* ── Hero Slider ─────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.hero-slider-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-btn:hover { background: var(--accent, #eb5e17); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dot.active { background: #fff; }