/* =============================
   FISHING PAGE ONLY
   ============================= */

/* ---------- Page Hero ---------- */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.fishing-hero {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("../images/rrun-pic\ \(6\).JPEG");
}


/* ---------- Hero Content ---------- */
.page-hero-content {
  max-width: 900px;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 2rem;
}



/* ---------- CTAs ---------- */
.page-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Content Sections ---------- */
.page-content {
  background: #f7f7f4;
}

.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content-section.alt {
  background: #ffffff;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section p {
  max-width: 800px;
}

/* ---------- Species List ---------- */
.species-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.species-list li {
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

/* ---------- Details Grid ---------- */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.details-grid h3 {
  margin-bottom: 0.5rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding: 3rem 1.25rem;
  }

  .page-cta {
    flex-direction: column;
  }
}


