@charset "utf-8";
/* CSS Document */

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

body {
  font-family: 'Inter', Arial, sans-serif;
  background:#f6f8f7;
  color:#2d2d2d;
  line-height:1.6;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;

  backdrop-filter: blur(12px);
  background-color: rgba(46, 139, 87, 0.3);

  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAV */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
  position: relative;
  transition: 0.25s;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #3f704d;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #3f704d;
}

/* ACTIVE */
.nav-links a.active {
  color: #3f704d;
  font-weight: 500;
}
/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE BEHAVIOR */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    flex-direction: column;
    align-items: center;
    gap: 18px;

    background: #fff;
    padding: 20px 0;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }

  /* Optional: hide CTA on mobile */
  .header-cta {
    display: none;
  }
}
/* CTA BUTTON */
.header-cta {
  background: #3f704d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;  
  transition: 0.25s;
}

.header-cta:hover {
  background: #2f5d3a;
}
/* HERO */

.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
}

/* IMAGE LAYER */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.hero-image-wrap picture {
  display: block;
  width: 100%;
}

.hero-image-wrap picture img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   HERO OVERLAY
========================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding-left: 150px;
  padding-right: 20px;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0) 100%
  );
}

/* =========================
   CONTENT
========================= */

.hero-content {
  max-width: 700px;
  color: #fff;
}

/* =========================
   EYEBROW
========================= */

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* =========================
   HEADLINE
========================= */

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* =========================
   DESCRIPTION
========================= */

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
  margin-bottom: 12px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 12px;
  font-size: 15px;
  transition: 0.25s ease;
}

.btn.primary {
  background: #3f704d;
  color: #fff;
}

.btn.primary:hover {
  background: #2f5d3a;
}

.btn.secondary {
  background: #fff;
  color: #333;
}

.btn.secondary:hover {
  background: #f1f1f1;
}

/* =========================
   HERO BRIDGE
========================= */

.hero-bridge {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.9;
  color: #fff;
}

/* =========================
   MOBILE CONTENT CONTROL
========================= */

.hero-mobile {
  display: none;
}

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

@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 540px;
  }

  .hero-overlay {
    padding-left: 20px;
    padding-right: 20px;

    align-items: flex-end;

    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.45)
    );
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 30px;
  }

  /* TEXT SCALE */
  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-bridge {
    font-size: 13px;
    margin-top: 12px;
  }

  /* STACK BUTTONS */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  /* SWITCH CONTENT */
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 500px) {

  .hero h1 {
    font-size: 24px;
  }

  .hero-bridge {
    display: none;
  }

}

/* SNIPPET BLOCK */
.snippet-block {
  padding: 50px 20px;
  background: #f7f9f7;
}

.snippet-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #2f4f3e;
}

/* GRID */
.snippet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.snippet-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* HOVER EFFECT */
.snippet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .snippet-grid {
    grid-template-columns: 1fr;
  }

  .snippet-title {
    font-size: 1.4rem;
  }
}
/* QUICK CHOICES */
/* SECTION */
.quick-choices {
  text-align:center;
  padding:40px 0 30px;
}

.quick-title {
  font-size:23px;
  margin-bottom:25px;
  letter-spacing:0.5px;
  color:#2d2d2d;
}

/* GRID */
.quick-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

/* BUTTON */
.quick-item {
  display:flex;
  align-items:center;
  gap:10px;
  background:#ffffff;
  padding:12px 18px;
  border-radius:40px;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  text-decoration:none;
  color:#2d2d2d;
  font-size:18px;
  transition:all 0.25s ease;
  min-width:170px;
  justify-content:center;
}

/* ICON */
.quick-icon {
  font-size:25px;
}

/* TEXT */
.quick-text {
  text-align:left;
  line-height:1.2;
}

/* HOVER */
.quick-item:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
  color:#3f704d;
}
/* AUTHORITY BLOCK */
.authority-block {
  background: #ffffff;
  padding: 70px 20px;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.authority-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.authority-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.authority-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.authority-highlight {
  font-weight: 500;
  color: #2d2d2d;
}

/* RIGHT GRID */
.authority-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ITEM */
.authority-item {
  background: #f5f7f3;
  padding: 18px;
  border-radius: 14px;
  transition: 0.25s ease;
}

.authority-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* ICON */
.authority-icon {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 8px;
}

/* TITLE */
.authority-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #2d2d2d;
}

/* TEXT */
.authority-item p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .authority-inner {
    grid-template-columns: 1fr;
  }

  .authority-points {
    grid-template-columns: 1fr;
  }
}
	.seo-reinforcement {
  font-size: 15px;
  color: #666;
  margin-top: 12px;
  line-height: 1.6;
}
	/* INTERNAL LINK CTA BLOCK */
.authority-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.authority-links a {
  color: #3f704d;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.authority-links a:hover {
  color: #2f5d3a;
  transform: translateX(3px);
}

/* SECTION TRANSITION */
.section-transition {
  margin: 20px auto 20px; /* tightened from larger spacing */
  max-width: 650px;
  text-align: center;
  position: relative;
}

/* TEXT */
.section-transition p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
  padding: 8px 16px; /* tighter padding */
  display: inline-block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* LINE */
.section-transition::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%; /* pulls line inward slightly */
  width: 90%;
  height: 1px;
  background: #e2e6e2;
  transform: translateY(-50%);
  z-index: 1;
}

/* ACCENT LINE */
.section-transition p::after {
  content: "";
  display: block;
  width: 32px; /* slightly smaller */
  height: 2px;
  background: #3f704d;
  margin: 6px auto 0;
  border-radius: 2px;
  opacity: 0.6;
}


/* START HERE */
/* =========================
   START HERE SECTION
========================= */

.start-here {
  background: #eef1ea;
  padding: 70px 20px;
}

/* =========================
   TITLES
========================= */

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 18px;
}

/* =========================
   GRID
========================= */

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* =========================
   CARD
========================= */

.start-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.start-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.start-card a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* =========================
   ICON
========================= */

.start-icon {
  width: 42px;
  height: 42px;
  background: #e7efe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 10px;
}

/* =========================
   IMAGE WRAPPER (UPDATED FOR PICTURE SUPPORT)
========================= */

.start-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Ensure picture behaves like img */
.start-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Image inside picture */
.start-image-wrap picture img,
.start-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover zoom */
.start-card:hover img {
  transform: scale(1.05);
}

/* =========================
   TEXT
========================= */

.start-card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.start-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

/* =========================
   CTA LINK
========================= */

.start-link {
  display: inline-block;
  background: #2f5d3a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.start-card:hover .start-link {
  background: #244a2f;
}

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

@media (max-width: 1024px) {
  .start-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .start-grid {
    grid-template-columns: 1fr;
  }
}

/* IMAGE GRID */
.outdoor-guides {
  padding: 70px 20px;
  background: #fff;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.guide-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px !important;
  display: block;
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
	
}
/* SUPPORT <picture> STRUCTURE */
.guide-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-card:hover img {
  transform: scale(1.05);
}

/* DARK GRADIENT OVERLAY */
.guide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
  color: #fff;
}

/* ICON */
.guide-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(6px);
}

/* TEXT */
.guide-overlay h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.guide-overlay p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.guide-overlay span {
  font-size: 13px;
  font-weight: 500;
}

/* HOVER TEXT POP */
.guide-card:hover .guide-overlay span {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

.overlay {
  position:absolute;
  bottom:0;
  width:100%;
  padding:18px;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color:#fff;
}

.overlay h3 {
  font-size:18px;
}

/* TRUST BAR */
.trust-bar {
  padding: 40px 20px;
  background: #f5f7f3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.trust-item {
  padding: 10px;
}

/* ICON STYLE */
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e7efe3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3f704d;
}

/* TEXT */
.trust-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #2d2d2d;
}

.trust-item p {
  font-size: 13px;
  color: #666;
  max-width: 220px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
/* =========================
   PREMIUM HOMEPAGE FOOTER
========================= */

.main-footer {
  background:#111;
  color:#ddd;
  padding:50px 20px 30px;
  font-size:14px;
}

/* LAYOUT */
.footer-container {
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:30px;
}

/* LOGO / BRAND */
.footer-brand h3 {
  color:#fff;
  font-size:18px;
  margin-bottom:10px;
}

.footer-brand p {
  color:#aaa;
  line-height:1.6;
}

/* LINKS */
.footer-links h4 {
  color:#fff;
  margin-bottom:10px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.footer-links ul {
  list-style:none;
  padding:0;
}

.footer-links li {
  margin:6px 0;
}

.footer-links a {
  color:#bbb;
  text-decoration:none;
  transition:0.25s;
}

.footer-links a:hover {
  color:#3f704d;
}

/* SOCIAL */
.footer-social {
  margin-top:10px;
  display:flex;
  gap:12px;
}

.footer-social a {
  display:inline-block;
  padding:8px 10px;
  background:#222;
  border-radius:6px;
  color:#fff;
  font-size:14px;
  transition:0.25s;
}

.footer-social a:hover {
  background:#3f704d;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top:1px solid #222;
  margin-top:30px;
  padding-top:15px;
  text-align:center;
  font-size:12px;
  color:#888;
}

/* AFFILIATE */
.affiliate-disclosure {
  margin-top:8px;
  color:#777;
}

.affiliate-disclosure a {
  color:#bbb;
}

.affiliate-disclosure a:hover {
  color:#3f704d;
}