/* Standard category page banner */

.banner {
  width: 100%;
  height: auto;
  background-color: #F8F8F8;
  background-size: cover;
  position: relative;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	
   /* Gives the banner some depth */
  box-shadow: 0 0 12px 10px rgba(0, 0, 0, 0.08);
	
  /* This is how to interpret the box shadow (it gives depth)
  box-shadow: [horizontal offset] [vertical offset] [blur radius] [spread radius] [colour]
	+ve value = move shadow to the right / down
	-ve value = move shadow to the left / up
	blur radius = how soft the shadow is.  The larger the value, the softer and more widespread the shadow. 
	
	To show depth on both top and bottom, use 0 for the vertical and horizontal offsets.
	
	r = red
	g = green
	b = blue
	a = alpha
	
	a = 1    --> 100% opaque, solid
	a = 0.75 --> 75% opaque, slightly transparent
	a = 0.50 --> 50% opaque, half transparent
	a = 0.25 --> 25% opaque, very faint
	a = 0    --> 0% opaque, completely invisible
	*/
}

.banner-overlay {
  background: none;
}

.banner-content {
  max-width: 900px;
  margin: 0 auto;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #1e3a3a;
  font-family: 'Denver Serial Medium', sans-serif;
}

.banner-content p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
}

.banner-content .subtext {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Since I am not using the button, I am deactivating this code for the button.

.banner-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #206040;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.banner-btn:hover {
  background-color: #184d33;
}  */

/* Responsive text for smaller screens */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.2rem;
  }

  .banner-content p,
  .banner-content .subtext {
    font-size: 1rem;
  }
}


/* Removing as there is no button. 
  .banner-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}  */







