	* {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
		/* outline: solid 1px red; */
	}

	html {
	  /* width: 100%;
	  height: 100%; */
	  scroll-behavior: smooth;
	}

	body {
	  width: 100%;
	  min-height: 100%;
	  background-color:white ;
	  
	}

	h3 {
	  font-size: 24px;
	  color: #8fce00;
		font-weight: bolder;
	}

	/* add an image on the logo box on the page header */
	#top-bg-wrapper {
		background: url(img/background-pic.jpg) no-repeat center center fixed;
		background-size: contain ;
		background-attachment: fixed;
		width: 100%;
		min-height: 80vh;
	  }
	
/* HomePage Menu navigation styling -----------------------------------------*/
.navbar {
	display: flex;
	background-color: #8fce00;
	justify-content: space-between;
	padding: 20px 10px 10px 10px;
	/* color: white; */
}

/* Menu links */
.navbar li {
	background-color: #8fce00;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 10px;
	border-left: 4px solid #fff;
  }

.navbar a {
	color: #fff;
	padding: 5px 5px;
	text-decoration: none;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	border-left: 4px solid #f44336;
}

.navbar a:hover {
	background-color: #ddd;
	color: black;
}

.active-link {
    background-color: #f44336;
    color: black;
}

/* Hamburger menu icon */
.menu-icon {
	display: none;
	font-size: 30px;
	cursor: pointer;
	color:#fff;
}

/* Hide the links by default on small screens */
.navbar ul {
	list-style-type: none;
	display: flex;
	gap: 15px;
}

/* Media Query for mobile view */
@media (max-width: 768px) {
	.navbar ul {
		display: none; /* Hide the menu */
		flex-direction: column;
		width: 40%;
		position: absolute;
		top: 60px;
		left: 0;
	}

	.navbar ul li {
		background-color: #fff;
	  }

	.navbar a {
		color: #f44336;
	}

	.navbar ul.show {
		display: flex; /* Show the menu when the class "show" is added */
	}

	.menu-icon {
		display: block; /* Show hamburger icon */
	}

	#top-bg-wrapper {
		background: url(img/background-pic.jpg) no-repeat center center fixed;
		background-size: contain ;
		background-attachment: fixed;
		width: 100%;
		min-height: 60vh;
	  }

	  #logodiv {
		display: none;
	}
	
	#top-bg-wrapper_otherPages {
		background: none;
		background-size: contain ;
		background-attachment: fixed;
		width: 100%;
		min-height: 60vh;
	  }

}

/* End of HomePage Menu navigation styling -----------------------------------------*/

#logodiv {
	display: flex;
	justify-content: center; /*Horizontally center;
	align-items: center;  Vertically center;
	/* height: 30vh; Set the height to the viewport height */
	margin: 0;
	margin-top:70px;
}

.grid-columns-33 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 15px;
	text-align: center;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	width: 80%;
	margin: 80px auto 80px auto;
  }

  /* Optional: Styling for different screen sizes */
  @media (max-width: 800px) {
	.grid-columns-33 {
		  grid-template-columns: 1fr;
	  }
	.content-footer {
		grid-template-columns: 1fr;
	}
	.store-content {
		grid-template-columns: 1fr;
	}
  }

  .grid-columns-33>div {
	background-color: #f44336;
	padding: 1em;
	box-shadow: 0px 0px 20px #000;
  }

  .grid-columns-33 .fa-brands, .fa-solid {
	font-size: 2em;
	  /* color:red; */
  }




/* Footer Section styling ************************************ */
#grid-footer {
	width: 100%;
	height: 300px;
	margin-top: 15px;
	padding-bottom: 20px;
	/* box-shadow: 0px 0px 40px black; */
}

.content-footer {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
	grid-gap: 3em;
	width: 80%;
	margin: 0px auto;
	padding-bottom: 30px;
	/* Center content horizontally and vertically */
	justify-items: center; /* Align items horizontally */
	align-items: center;   /* Align items vertically */
	/* margin: 80px auto 80px auto; */
}

.content-footer img {
	width: 50px;
	margin-top: 40px;
}

.content-footer a {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
	border: 0px solid #fff;
	border-radius: 0px;
}

.content-footer a:hover {
	color: #666666;
	transition: 0.25s ease-in;
	border: 0px solid #fff;
	border-radius: 0px;
}

.content-footer ul {
	list-style: none;
}

.content-footer ul li {
	padding: 0px 0px 8px 0px;
}

.content-footer h4 {
	padding: 20px 0px;
	text-transform: uppercase;
	font-size: 14px;
}

.input-newsletter {
	width: 120px;
	height: 30px;
	display: inline-block;
	border: 1px solid #000000;
	box-shadow: 0px 0px 10px #000000;
	padding-left: 5px;
}

.submit-newsletter {
	width: 80px;
	height: 30px;
	color: #fff;
	position: relative;
	top: 5px;
	display: inline-block;
	background-color: #000000;
	border: 1px solid #000000;
	box-shadow: 0px 0px 10px #000000;
	margin-top: 0px;
}

.social-footer li {
	display: inline-block;
	margin-top: 40px;
}

.social-link {
	font-size: 24px;
	color:blue;
}

.fa-brands {
	margin: 10px 10px 10px 10px;
	font-size: 30px;
	color: #f44336;
}

.fa-brands:hover {
	color: #8fce00;
}

/* End of footer styling css ************************************ */


/* footer slogan styling css ************************************ */
.bottom_container {
	display: flex;
	justify-content: flex-end; /* Aligns the div to the right */
	background-color: #f8f8f8;
}

.bottom_right-div {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	color: #f44336;
	  text-align: right;
	  font-size: 1.5em;
	  font-style: italic;
	  font-family: 'Euphoria Script', Arial, sans-serif;
	  margin: 0px 10px 0px 0px;
}

.fa-regular {
	color: #c90076;
	font-size: 32px;
	position: relative;
	top: 10px;
  }
/* End of footer slogan styling css ************************************ */

/* New Footer Styling _______________________________________________*/
/* Basic Footer Styles */
.site-footer {
  background-color: #f1f1f1; /* Light grey background */
  color: #333; /* Dark text color */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 300px; /* Adjusts column width for responsiveness */
}

/* Section Headings */
.footer-section h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Link Styles */
.footer-section a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007bff; /* Change to your brand's color */
}

/* Link List (Company Info) */
/* Update this section in your stylesheet */
.footer-section.company-info ul li {
  background-color: transparent;
  margin-bottom: 5px; /* Keeps a small gap between links */
  padding: 0; /* Removes the button padding */
  border: none; /* Removes the border */
  border-left: none; /* Removes the left border */
  margin-bottom: 5px; /* Adds a small gap between links */
  border-radius: 0; /* Removes the rounded corners */
  color: #333; /* Resets the text color */
}

/* Social Icons (text-based) */
.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1em;
  font-weight: bold;
}

/* Copyright Section */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.footer-bottom_right-div {
	width: 100%;
	/*background-color: #fff;*/
	padding: 20px;
	color: #f44336;
	  text-align: right;
	  font-size: 1.5em;
	  font-style: italic;
	  font-family: 'Euphoria Script', Arial, sans-serif;
	  margin: 0px 10px 0px 0px;
}

