.camping-page {
  background-color: #fdfaf6;
  font-family: 'Segoe UI', sans-serif;
  color: #3e2f1c;
}


/*====== Hero Banner =======*/

<section class="hero-camping">
  <div class="hero-overlay">
    <h1><a href="index.html" class="bereamall-link">🏕️ BereaMall: Camping Essentials</a></h1>
    <p>Explore tents, trail gear, lighting, and outdoor tech — curated for your next adventure.</p>
  </div>
</section>

}

.hero-camping h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.bereamall-link {
  text-decoration: none;
  color: #3e2f1c;
  font-weight: 700;
}

.bereamall-link:hover {
  color: #8b5e3c;
}


/*======== Product Grid ======== 
=============================== */
.product-zone {
  margin: 48px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.category-heading {
  font-size: 2rem;
  margin: 40px 0 16px;
  color: #3e2f1c;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.product-card {
  text-align: center; /* Ensures all text and buttons are centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fdfaf6;
  border: 1px solid #a67c52;
  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: 60%; /* or any size you want */
  height: auto;
  border-radius: 6px;
}


.product-card h2 {
   font-size: 1.2rem;
  margin: 8px 0;;
  color: #3e2f1c;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3e2f1c;
}


body.camping-page .cta-button {
  background-color: #8b5e3c;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 8px;

}
.shop-button:hover {
  background-color: #6f472c;
}


.hero-camping h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero-camping p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-link {
  text-decoration: none;
  color: #2c3e2f;
}

/* Category Buttons */
.camping-links {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 800px;
}

.camping-links h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.camping-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.camping-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.camping-button:hover {
  background-color: #6f472c;
}

/* Top Navigation */
.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  background-color: #a67c52;
  border-bottom: 2px #6f472c;
}

.top-nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
/*====== Footer======
=====================*/
.footer-nav {
  background-color: #f2e8dc;
  border-top: 2px solid #a67c52;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #3e2f1c;
}

.footer-links a {
  color: #3e2f1c;
}

.social-links a {
  color: #8b5e3c;
}


.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;
}

/*====== Hero Banner======
==========================*/
.hero-camping {
  background-image: url('/images/camping-banner.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 #a67c52;
}

.hero-overlay {
  background-color: rgba(242, 232, 220, 0.5); /* softer beige overlay */
  padding: 24px 32px;
  border-radius: 12px;
  text-align: center;
  max-width: 700px;

}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #3e2f1c;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #3e2f1c;
}

.bereamall-link {
  text-decoration: none;
  color: #3e2f1c;
  font-weight: 700;
}

.bereamall-link:hover {
  color: #8b5e3c;
}

/*====== Featured Section ======
===============================*/
.featured-camping {
  margin: 48px auto;
  padding: 0 20px;
  max-width: 1200px;
  text-align: center;
}
.featured-camping h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #3e2f1c;
}
.featured-camping h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #3e2f1c;
}
@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;
  }
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8b4513;
  color: #fff8dc;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}
