/* Font definitions */
@font-face {
    font-family: "Fredoka";
    src: url("/parks/fonts/fredoka.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Luckiest Guy";
    src: url("/parks/fonts/luckiest-guy.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "concert-one";
    src: url("/parks/fonts/concert-one.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  /* Base styles */
  body {
    font-family: "Fredoka", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .fredoka {
    font-family: "Fredoka", sans-serif;
  }
  
  /* Header styles */
  table.header-bg-table {
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }
  
  table.header-table {
    margin: 0 auto;
    padding: 1em 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: transparent;
    width: 94%;
  }
  
  table.header-table td {
    vertical-align: middle;
    padding: 0.5em;
  }
  
  .header-logo {
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  
  .header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
  }
  
  .header-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
  }
  
  .header-logo .brand {
    font-size: 1.5em;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .header-headline {
    text-align: center;
    font-size: 1.8em;
    font-family: concert-one;
    font-weight: 400;
    color: white;
  }
  
  .header-nav {
    text-align: right;
    white-space: nowrap;
  }
  
  .header-nav a {
    display: inline-block;
    padding: 0.5em 0.8em;
    margin-left: 0.25em;
    text-decoration: none;
    color: white;
    font-size: 1.05em;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.2s ease;
  }
  
  .header-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .header-nav a.active {
    background-color: white;
    color: #ff6600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Main content */
  main {
    display: block;
    flex: 1;
    padding-bottom: 2em;
  }
  
  /* Hero section */
  .hero {
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    padding-top: 50px;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  /* Search panel */
  .search-panel {
    position: absolute;
    bottom: 40px;
    left: 30px;
    z-index: 2;
    background: white;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
  }
  
  .search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
  }
  
  .input-container {
    position: relative;
  }
  
  .search-input {
    width: 100%;
    padding: 1em 1em 1em 3em;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: "Fredoka", sans-serif;
    box-sizing: border-box;
  }
  
  .search-icon-wrapper {
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .search-button,
  .browse-button {
    padding: 1em 2em;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 500;
    transition: 0.5s;
    background-size: 200% auto;
    font-family: "Fredoka", sans-serif;
    display: block;
    cursor: pointer;
    border: 3px solid transparent;
  }
  
  .search-button {
    background-image: linear-gradient(
      to right,
      #ff6600 0%,
      #f0ca19 51%,
      #ff512f 100%
    );
  }
  
  .search-button:hover {
    background-position: right center;
    border-color: #000;
  }
  
  .browse-button {
    background-image: linear-gradient(to right, #a3c292, #7fa97f, #d9e4e4);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  }
  
  .browse-button:hover {
    background-position: right center;
    text-decoration: none;
    border-color: #000;
  }
  
  .search-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    color: #666;
  }
  
  .separator-icon {
    width: 24px;
    height: 24px;
  }
  
  .separator-or {
    font-weight: 500;
    font-size: 1.1em;
  }
  
  /* Sections */
  .about-section {
    padding: 2em 0 1.1em 0;
    background-color: white;
  }

  .about-text p {
    margin-top: 0;
    margin-bottom: 0.5em;
  }

  .about-section p {
    margin-top: 0;
    margin-bottom: 0.5em;
  }

  .states-section {
    padding: 3em 0;
    background-color: white;
  }
  
  /* Title styling for pages */
  .city-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .page-title {
    color: #ff6600;
    font-family: "Luckiest Guy", cursive;
    font-size: 2em;
    margin: 0 0.5em;
    text-align: center;
  }
  
  .paw-emoji {
    font-size: 1.8em;
    margin: 0 0.5em;
    line-height: 1;
  }
  
  .headline-emoji {
    font-size: 0.9em;
    margin: 0 0.5em;
  }

  /* City description */
  .city-description {
    max-width: 900px;
    margin: 0 auto 2.5em auto;
    padding: 0 2em;
    text-align: center;
  }

  .city-description p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
    margin: 0;
  }

  /* State and park cards grid */
  .states-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1em;
  }
  

a.state-card:hover,
.state-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); 
  border-color: #333 !important; 
  text-decoration: none;
  z-index: 2; 
}

.state-card,
a.state-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 1em 1.2em;
  margin-bottom: 1em;
  text-align: left;
  transition: all 0.25s ease;
  border: 4px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
  background-repeat: repeat;
  background-size: 120px;
}

.features {
  text-align: center;
  padding: 0.5em 1em 1em 1em;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.75em;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: .75em;
}

.feature {
  flex: 1 1 260px;
  max-width: 300px;
}

.feature h3 {
  font-size: 1.4rem;
  margin: 0.5em 0;
  font-weight: 600;
  text-align: center;
}

.feature p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
  max-width: 220px;     
  margin: 0 auto;        
  text-align: left;  
}

.emoji-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 0.5em;
}

.icon-card h3 {
  font-size: 1.4rem;
  margin: 0.5em 0 0.6em;
  font-weight: 600;
}

.icon-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.icon {
  font-size: 2.5rem;
  line-height: 1;
}

.merch-section {
  padding: 1em 1em;
  text-align: center;
}

.merch-intro {
  font-size: 1.1em;
  max-width: 750px;
  margin: 0 auto 2em;
  text-align: left;
}

.merch-grid {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  flex: 1 1 120px;
  max-width: 140px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1em;
  box-shadow: none;
  transition: transform 0.2s;
}

.merch-item:hover {
  /*(transform: translateY(1px);*/
  border: 2px solid #ff6600;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #f5dac9;
}

.merch-item i.emoji-icon {
  font-size: 2em;
  display: block;
  margin-bottom: 0.5em;
}


.merch-header .emoji-icon {
  height: 90px;
  margin: 0 12px;
  vertical-align: middle;
}

.merch-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-top: 2em;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}

.merch-header h2 {
  font-size: 1.8em;
  color: #ff6600;
  font-family: "Luckiest Guy", cursive;
  font-weight: bold;
  margin: 0;
}

.merch-header img {
  height: 64px;
  width: auto;
  max-width: 80px;
}

/* Optional supporting text below header */
.merch-intro {
  text-align: left;
  max-width: 799px;
  margin: 0 auto 2em auto;
  color: #333;
  font-size: 1.2em;
}


.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Fredoka", sans-serif;
}

.city-count-left {
  color: #ff6600;
}

.park-count-right {
  color: #444;
}

/* Make sure this doesn't override the hover */
.state-card:nth-child(4n+1):hover,
.state-card:nth-child(4n+2):hover,
.state-card:nth-child(4n+3):hover,
.state-card:nth-child(4n+4):hover {
  border-color: #333 !important;
}
  
.state-card:nth-child(4n + 1) {
  background: url('/parks/svg/site/pawprint1_faded_small.svg') repeat, #c8e6c9;
  background-size: 120px, auto;
  border-color: #388e3c;
}

.state-card:nth-child(4n + 2) {
  background: url('/parks/svg/site/pawprint1_faded_small.svg') repeat, #bbdefb;
  background-size: 120px, auto;
  border-color: #1976d2;
}

.state-card:nth-child(4n + 3) {
  background: url('/parks/svg/site/pawprint1_faded_small.svg') repeat, #f8bbd0;
  background-size: 120px, auto;
  border-color: #c2185b;
}

.state-card:nth-child(4n + 4) {
  background: url('/parks/svg/site/pawprint1_faded_small.svg') repeat, #ffe0b2;
  background-size: 120px, auto;
  border-color: #ef6c00;
}

  /* Card content styling - updated based on name length analysis */
  .state-link {
    font-size: 1.55em;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.8em;
    font-family: "Fredoka", sans-serif;
    line-height: 1.25;
  }
  
  /* Medium length names (17-23 characters) */
  .state-link-medium {
    font-size: 1.3em;
  }
  
  /* Long names (24-30 characters) */
  .state-link-small {
    font-size: 1.05em;
  }
  
  .city-count {
    color: #ff6600;
    font-size: 1.2em;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: auto;
  }
  
  /* Card table styles */
  .state-card table {
    border-collapse: collapse;
    width: 100%;
    flex: 1;
    display: table;
  }
  
  .state-card table tr:last-child {
    vertical-align: bottom;
  }
  
  .state-card td {
    padding: 2px 0;
  }
  
  .icon {
    width: 1.75em;
    vertical-align: top;
  }
  
  .icon-img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    position: relative;
    top: 1px;
  }
  
  .rating-value {
    font-weight: bold;
  }
  
  /* Navigation elements */
  .breadcrumb-link {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  
  .breadcrumb-link a {
    text-decoration: none;
    color: #444;
    display: inline-block;
    line-height: 1.4;
  }
  
  .breadcrumb-link a:hover {
    color: #ff6600;
  }
  
  /* Pagination */
  .pagination {
    text-align: center;
    margin: 2em 0;
  }
  
  .pagination a,
  .pagination .current {
    display: inline-block;
    padding: 0.5em 0.8em;
    margin: 0 0.2em;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .pagination a {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
  }
  
  .pagination a:hover {
    background-color: #eee;
  }
  
  .pagination .current {
    background-color: #ff6600;
    color: white;
    border: 1px solid #ff6600;
  }
  
  .pagination .prev,
  .pagination .next {
    font-weight: 700;
  }

  /* Park detail card styles */
.park-detail-card {
  margin: 0 auto;
  margin-top: 1.2em;
  margin-bottom: 2em;
  max-width: 480px;
  min-width: 340px;
  /* padding 1em 2em 2em 2em; */
  padding: 0.7em 2em 2em 2em;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  text-align: left;
  font-size: 1.15em;
  position: relative;
  background-color: #fff;
}

.park-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5em;
}

.park-title-row {
  text-align: center;
  font-family: 'concert-one', 'Fredoka', sans-serif;
  color: #ff7a1a;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 0.1em;
  padding-top: 0.35em; /* from 0.5 */
}

.park-title-text {
  display: inline;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0.15em;
  white-space: nowrap;
}

.park-emoji {
  font-size: 1.3em;
  margin: 0 0.12em;
  vertical-align: middle;
}

.icon-td {
  width: 44px;
  text-align: right;
  vertical-align: top;
  padding-right: 0.5em;
}

.info-td {
  text-align: left;
  vertical-align: middle;
  font-size: 1.13em;
  color: #222;
  font-weight: 500;
  padding-left: 0.2em;
}

.icon-img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  display: inline-block;
}

.website-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08em;
  transition: color 0.2s;
}

.website-link:hover {
  color: #0077cc;
  text-decoration: underline;
}

.address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.address-link:hover {
  color: #0077cc;
  text-decoration: underline;
}

.park-hours-td {
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  font-size: 1em;
}

.rating-value {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
}

.review-count {
  color: #222;
  font-size: 0.98em;
  margin-left: 0.3em;
}

/* Card color variants */
.green-card { background: #e2f3e4; border: 3px solid #7fc97f; }
.blue-card { background: #e2f0fa; border: 3px solid #6baed6; }
.pink-card { background: #fbe2ed; border: 3px solid #be6ba0; }
.orange-card { background: #fff3e2; border: 3px solid #e6b86b; }

/* Park About Section */
.park-about {
  margin: 2em auto;
  max-width: 560px;
  padding: 1.5em 2em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.park-about h2 {
  font-family: 'concert-one', 'Fredoka', sans-serif;
  font-size: 1.5em;
  color: #ff7a1a;
  margin: 0 0 0.75em 0;
  font-weight: 400;
}

.park-about p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.park-about a {
  color: #1976d2;
  text-decoration: none;
}

.park-about a:hover {
  text-decoration: underline;
}

/* Nearby Parks Section */
.nearby-parks-section {
  margin: 3em auto;
  max-width: 560px;  /* Match park detail card's visual width (480px + ~80px padding) */
  padding: 0;
}

.nearby-parks-title {
  text-align: center;
  font-family: 'concert-one', 'Fredoka', sans-serif;
  font-size: 1.8em;
  color: #ff7a1a;
  margin-bottom: 1em;
  font-weight: 400;
}

.nearby-parks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  grid-auto-rows: 1fr;  /* Ensure all rows are equal height */
}

.nearby-park-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 1.2em;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nearby-park-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nearby-park-name {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: #333;
}

.nearby-park-info {
  font-size: 0.95em;
  color: #666;
}

/* Nearby park card colors matching main cards */
.nearby-park-card.green-card {
  background-color: #c8e6c9;
  border: 2px solid #388e3c;
}

.nearby-park-card.blue-card {
  background-color: #bbdefb;
  border: 2px solid #1976d2;
}

.nearby-park-card.pink-card {
  background-color: #f8bbd0;
  border: 2px solid #c2185b;
}

.nearby-park-card.orange-card {
  background-color: #ffe0b2;
  border: 2px solid #ef6c00;
}

/* Hours table styles */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.days-column {
  width: 38%;
  text-align: left;
  font-weight: 600;
  padding: 3px 0;
}

.hours-column {
  width: 62%;
  text-align: left;
  font-weight: 600;
  padding: 3px 0;
}

.days-cell {
  padding: 3px 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-cell {
  padding: 3px 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-table tr:last-child .days-cell,
.hours-table tr:last-child .hours-cell {
  border-bottom: none;
}
  
  /* Search Results Styles */
  .search-results-container {
    background-color: white;
    padding: 2rem 0;
    margin: 2rem auto;
    max-width: 1400px;  /* Match states-container max-width */
  }
  
  .search-results-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .search-results-header h2 {
    color: #ff6600;
    font-family: "Luckiest Guy", cursive;
    font-size: 2.2em;
    margin-bottom: 0.5rem;
  }
  
  .search-results-header p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 1rem;
  }
  
  .radius-selector {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 400px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .radius-selector label {
    font-weight: 600;
    color: #333;
  }
  
  .radius-selector select {
    margin-left: 0.5rem;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: "Fredoka", sans-serif;
  }
  
  .radius-selector p {
    margin: 0.5rem 0 0 0;
    font-style: italic;
    color: #666;
  }
  
  /* Park Card Styles for Search Results */
  .park-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
  }
  
  .park-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: #ff6600;
  }
  
  .park-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
  }
  
  .park-card h3 a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .park-card h3 a:hover {
    color: #e55a00;
    text-decoration: underline;
  }
  
  .park-card .location {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .park-card .rating {
    color: #ff6600;
    font-size: 1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .park-card .amenities {
    color: #555;
    font-size: 1em;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .park-card .address {
    color: #777;
    font-size: 0.95em;
    font-style: italic;
  }

  /* Footer */
  footer {
    background-color: #f26522;
    color: white;
    padding: 0.8em 0;
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
  }
  
  .footer-section {
    max-width: 100px;
    margin: .8em;
  }
  
  .footer-section h3 {
    font-size: 1.2em;
    margin-bottom: .6em;
    color: #ff6600;
  }
  
  .footer-section a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3em;
  }
  
  .footer-section a:hover {
    color: #fff7e6;
  }

  
  /* Responsive design */
  @media (max-width: 1200px) {
    .states-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .states-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    table.header-table {
      display: block;
      padding: 1em;
    }
  
    table.header-table tr,
    table.header-table td {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.5em 0;
    }
  
    .header-logo {
      justify-content: center;
      margin-bottom: 1em;
    }
  
    .header-nav {
      text-align: center;
    }
  
    .header-nav a {
      margin: 0 0.25em 0.5em;
    }
  
    .hero {
      height: 400px;
    }
  
    .hero h1 {
      font-size: 2.2em;
    }
  
    .search-panel {
      position: relative;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      max-width: 95%;
      padding: 1.5em;
    }
  
    .page-title {
      font-size: 1.6em;
    }

    .city-description {
      padding: 0 1.5em;
      margin-bottom: 2em;
    }

    .city-description p {
      font-size: 1em;
      line-height: 1.6;
    }

    .paw-emoji {
      font-size: 1.4em;
    }
  }
  
  @media (max-width: 500px) {
    .states-container {
      grid-template-columns: 1fr;
    }
  
    .page-title {
      font-size: 1.4em;
    }

    .city-description {
      padding: 0 1em;
      margin-bottom: 1.5em;
    }

    /* Nearby parks mobile layout */
    .nearby-parks-section {
      padding: 0 1em;  /* Reduce padding on mobile */
    }
    
    .nearby-parks-grid {
      grid-template-columns: 1fr;
    }
    
    .nearby-park-card {
      padding: 1em;
    }
  }
  .breadcrumbs {
  font-size: 0.9em;
  margin-bottom: 12px;
  color: #666;
}
.breadcrumbs a {
  text-decoration: none;
  color: #976d3c;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
