:root {
  --primary-text-color: #2F4F4F;
  --background-color: #FAF4EE;
  --accent-color: #8B4513;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Libre Franklin', 'Helvetica Neue', helvetica, arial, sans-serif;
  color: var(--primary-text-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-text-color);
}

.hero {
  background-image: url('../img/walk-with-us.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f4f4f4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f4f4f4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  margin: 0 auto;
  color: #f4f4f4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero p + p {
  margin-top: 16px;    /* extra gap only between consecutive paragraphs */
}

.hero-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 240px;
  height: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 14px 28px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-text-color);
  color: var(--accent-color);
}

.section {
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  color: var(--primary-text-color);
  font-size: 28px;
  margin-bottom: 20px;
}

.section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.section p,
.section li {
  color: var(--primary-text-color);
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-section {
  background-color: #f2f2f2;
  padding: 40px 20px;
  text-align: center;
}

.contact-section p {
  font-size: 18px;
  margin: 10px 0;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
  padding-bottom: 20px;
}

.footer-image {
  margin-top: 40px;
  text-align: center;
}

/*.footer-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}*/

.footer-image img {
  max-width: 100%;
  height: auto;       /* instead of max-height */
  display: block;
  object-fit: cover;  /* optional, only if you crop intentionally */
}


.feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px auto;
  display: block;
}

.line-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.final-callout {
  font-size: 42px;
  color: var(--primary-text-color);
  margin-top: 30px;
  margin-bottom: 0;
}

.final-section {
  padding: 40px 20px 30px;
  text-align: center;
}

.final-section h2 {
  font-size: 48px;
  color: var(--primary-text-color);
  margin: 0;
  text-decoration: none;
  border: none;
}

@media (max-width: 480px) {
  .final-section h2 {
    font-size: 36px;
  }
}

.section li i {
  margin-right: 8px;
  color: var(--accent-color);
  width: 20px; /* align icons vertically */
}

#faq {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 18px;
  line-height: 1.5;
}

.legal-links {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.legal-links a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}


#more-info a {
  font-size: 18px;
  color: var(--accent-color);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

#more-info a i {
  margin-right: 8px;
  color: var(--primary-text-color);
}

#more-info a:hover {
  color: var(--primary-text-color);
}



/* Price callout */
.price-card {
  background: var(--background-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(139,69,19,.08); /* accent tint */
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.price-badge i {
  font-size: 18px;
  margin-right: 2px;
  color: var(--accent-color);
}

.price-badge span {
  font-weight: 700;
  color: var(--primary-text-color);
  letter-spacing: .2px;
}

.price-badge strong {
  font-size: 22px;
  color: var(--accent-color);
  margin-left: 6px;
}

.price-includes {
  margin: 10px 0 8px;
  padding-left: 18px;
  list-style: disc;
}

.price-includes li {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--accent-color);
}

.price-value {
  margin: 8px 0 0;
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
}

/* small screens tweaks */
@media (max-width: 600px) {
  .price-badge strong { font-size: 20px; }
  .price-includes li, .price-value { font-size: 17px; }
}

.walks-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.walk-card {
  background: var(--background-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.walk-card p {
  margin: 6px 0;
  font-size: 18px;
  color: var(--primary-text-color);
}

.walk-card strong {
  color: var(--accent-color);
  font-size: 20px;
}

.image-card {
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 10px;
  background: var(--background-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 100%;
  margin: 20px auto;

/* NEW: ensure contents respect the card’s rounded corners */
  overflow: hidden;
}

.image-card img,
.image-card object,
.image-card svg {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optional: keep if you like slightly inset corners */
}

/* Make the external SVG responsive */
.svg-embed {
  display: block;            /* remove inline gap */
  width: 100%;               /* fill the card width */
  height: auto;              /* scale height with width */
  max-width: 100%;
  /*aspect-ratio: 1355 / 933;  /* keep the correct proportions */
}

/* Optional: prevent the object from ever exceeding the layout width */
.image-card, .svg-embed {
  box-sizing: border-box;
}

#active-region {
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


.hero-subbrand {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero {
    padding: 70px 20px; /* half the original */
  }

  .hero h1 {
    font-size: 36px; /* scale down a bit */
  }

  .hero p {
    font-size: 18px;
  }

.hero .cta-button {
    font-size: 16px;
    padding: 12px 22px;
    margin-top: 15px;
  }
}

.hero-tagline {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}

footer .member-link {
  font-size: 14px;
  color: #777;          /* muted text */
  margin-top: 10px;
}

footer .member-link a {
  color: #999;          /* lighter than main accent */
  text-decoration: none;
  border-bottom: 1px dotted #bbb; /* subtle underline */
}

footer .member-link a:hover {
  color: var(--accent-color);     /* highlight only on hover */
  border-bottom: 1px solid var(--accent-color);
}

.pickup-legend {
  background: rgba(255,255,255,0.9);
  padding: 6px 8px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  font-size: 12px;
  line-height: 1.1;
}
.pickup-legend div {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0;
}

/*#leaflet-holder { scroll-margin-top: 72px; } /* adjust to your header height */
#leaflet-holder.image-card { /* keep the same card look */

#leaflet {
  width: 100%;
  height: 380px;
  display: block;
  border-radius: 8px;   /* same as .image-card img/object */
  overflow: hidden;     /* clips tile edges & controls */
}

/* Remove Leaflet's default grey background so it doesn't read as an inner border */
.image-card .leaflet-container {
  background: transparent !important;
  border: 0; /* just in case any theme/css added one */
}

/* Hide focus ring on the map card/container */
#leaflet-holder:focus,
#leaflet-holder:focus-visible,
#leaflet:focus,
#leaflet:focus-visible {
  outline: none !important;
}


.map-hint {
  margin: 0 0 .5rem;
  font-size: .95rem;
  color: #556; /* subtle */
}
.map-hint kbd {
  font: inherit;
  border: 1px solid #ccd;
  border-bottom-width: 2px;
  padding: 0 .3em;
  border-radius: 4px;
  background: #f7f8fb;
}

.footer-note {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
  background: none;
}
.footer-note em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color, #8B4513);
}

