/* Outdoors Page Theme */
.outdoors-page {
  background-color: #f4f7f5;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e2f;
}

  .cta-button {
   display: inline-block;
  background-color:#4a7c59;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #2c3e2f;
}

/* Product Grid */
.product-zone {
  margin: 48px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.category-heading {
  font-size: 2rem;
  margin: 40px 0 16px;
  color: #2c3e2f;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;       /* centers all child elements horizontally */
  justify-content: space-between;
  text-align: center;        /* centers text content */
  background-color: #f4f7f5;
  border: 1px solid #2c3e2f;
  border-radius: 8px;
  padding: 16px;
  width: 280px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card img {
  display: block;
  margin: 0 auto;
  width: 50%; /* or whatever size you want */
  height: auto;
  border-radius: 6px;
}

.product-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #3e2f1c;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3e2f1c;
}


/* Nav Bars */
.top-nav ul,
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 16px;
  margin: 0;
  background-color:  #a3c4a2;
  border-bottom: 1px solid #a3c4a2;
}

.footer-nav {
  background-color: #dbe9dc;
  border-top: 3px solid #a3c4a2;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #2c3e2f;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  color: #2c3e2f;
  font-weight: 600;
}

.social-links {
  margin-bottom: 12px;
}

.social-links a {
  text-decoration: none;
  color: #4a7c59;
  font-weight: 600;
}

.affiliate-disclosure {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.85rem;
  color: #777;
}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 24px 0;
  color: #2c3e2f;
}
.outdoor-links {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 800px;
}

.outdoor-links h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2c3e2f;
}

.outdoor-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.outdoor-button {
  display: inline-block;
  background-color: #4a7c59;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.outdoor-button:hover {
  background-color: #3b5f48;
}
/*============ media section============
=======================================*/

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
    margin-bottom: 24px;
  }

  .hero-camping {
    height: auto;
    padding: 20px;
    background-position: center top;
  }

  .hero-overlay {
    padding: 16px;
  }

  .category-heading {
    font-size: 1.4rem;
  }

  .product-card h2 {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 0.9rem;
  }

  .shop-button {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}
.hero-outdoors {
  background-image: url('/images/out-doors.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-bottom: 2px solid #4a6b3c; /* deep forest green */
}

.hero-overlay {
  background-color: rgba(220, 242, 220, 0.6); /* soft green tint */
  padding: 24px 32px;
  border-radius: 12px;
  text-align: center;
  max-width: 700px;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #2f4f2f; /* dark green */
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #2f4f2f;
}

.bereamall-link {
  text-decoration: none;
  color: #2f4f2f;
  font-weight: 700;
}

.bereamall-link:hover {
  color: #4a6b3c;
}

.cta-button {
  display: inline-block;
  margin-top: 16px;
  background-color: #4a6b3c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #3a5730;
}

