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

body {
  
  background:
    repeating-linear-gradient(
      45deg,
      #eaeaea,
      #eaeaea 2px,
      #f5f5f5 2px,
      #f5f5f5 6px
    );

}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #28a745 0%, #ffd700 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
}

/* Routes Section */
#routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Route Card */
.route-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Map Container */
.map-container {
  width: 100%;
  height: 300px;
  background-color: #e0e0e0;
}

/* Route Description */
.route-description {
  padding: 20px;
}

.route-description h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #667eea;
}

.route-description p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Route Stats */
.route-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 15px;
  border-top: 1px solid #eee;
  gap: 10px;
}

.route-stats div {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  #routes {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .map-container {
    height: 250px;
  }
  .download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #0056b3;
}
}
