/* ============================
   HUNTING PAGE – HERO
   (Image-based, not background)
============================ */

/* .hunt-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
}

.hunt-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* Overlay for text contrast */
/* .hunt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
} */

/* ============================
   HERO CONTENT
============================ */

/* .hunt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4.5rem 6%;
  color: #fff;
}

.hunt-hero-content h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hunt-hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
} */

/* ============================
   HERO CTAs (MATCH HOME)
============================ */
/* 
.hunt-hero-ctas {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.hunt-hero-ctas .btn-primary {
  display: block;
  padding: 1rem;
  background: #4caf50;
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}

.hunt-hero-ctas .btn-secondary {
  display: block;
  padding: 0.95rem;
  border: 2px solid #4caf50;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
} */

/* ============================
   MOBILE ADJUSTMENTS
============================ */
/* 
@media (max-width: 768px) {
  .hunt-hero {
    min-height: 85vh;
  }

  .hunt-hero-content {
    padding: 3.25rem 1.25rem 2.5rem;
  }

  .hunt-hero-content h1 {
    font-size: 2.2rem;
  }
} */

/* ============================
   HUNTING PAGE CONTENT
============================ */

.hunt-section {
  padding: 5rem 8%;
}

.hunt-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hunt-section p {
  max-width: 760px;
  line-height: 1.65;
}

/* ============================
   HUNT OFFERINGS / CARDS
============================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  height: 500px;
  /* allows better image framimng desktop - bear hunt has empty bg on mobile */
}
.hunt-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.hunt-card h3 {
  margin-bottom: 0.5rem;
}

.hunt-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================
   IMAGE + TEXT ROWS
============================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.feature img {
  width: 60%;
  /* width: 100%; */
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature img {
    width: 100%;
    
  }
}

/* ============================
   HUNTING GALLERY
============================ */

.hunt-gallery {
  padding: 5rem 8%;
}

.hunt-gallery h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Vertical-friendly grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  aspect-ratio: 3 / 4; /* favors vertical */
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Let landscape images breathe */
.gallery-grid img.landscape {
  aspect-ratio: 4 / 3;
}

