
h1{

	font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	color: #000;
}

h2{
	font-family:Arial, Helvetica, sans-serif;
	color: red;
}

h3{
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-weight:900;
}

h6{
	font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	color: #9191f6;
	font-weight: bolder;
	
}


/* Navigation Styles */

.header-container {
	width: 100%;
	padding: 10px 20px;
	background-color: lightgrey;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
  }
  
  .navbar-logo img {
	height: 110px;
	width: auto;
  }
  
  /* Toggle button hidden on large screens */
  .menu-toggle {
	display: none;
	font-size: 30px;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
  }
  
  /* Menu styling */
  .navbar-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 25px;
  }
  
  .navbar-menu li {
	font-size: 25px;
  }
  
  .navbar-menu a {
	text-decoration: underline;
	font-weight: bolder;
	color: black;
  }
  
  .navbar-menu a:hover {
	color: firebrick;
  }
  
  /* Responsive rules */
  @media (max-width: 768px) {
	.menu-toggle {
	  display: block;
	}
  
	.navbar-menu {
	  display: none;
	  width: 100%;
	}
  
	.navbar-menu.open {
	  display: block;
	  margin-top: 10px;
	}
  
	.navbar-menu ul {
	  flex-direction: column;
	  gap: 10px;
	}
  
	.navbar-menu li {
	  text-align: left;
	}
  }


/*page spacers*/
.tspace{

padding-top: 30px;

}

.bspace{

	padding-bottom: 40px;

}

/*style for banner with delivery, cs and trusted brands info*/

.feature-banner {
	background-color: red;
	padding: 25px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
	text-align: center;
	font-family: 'Segoe UI', sans-serif;
  }
  
  .feature-item {
	display: flex;
	align-items: center;
	gap: 25px;
	font-size: 30px;
	color: black;
	white-space: nowrap;
	padding: 0 20px;
	position: relative;
  }
  
  /* Add vertical line between items except the last */
  .feature-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	height: 40px;
	width: 4px;
	background-color: black;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .feature-icon {
	font-size: 45px;
	color: black;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
	.feature-banner {
	  flex-direction: column;
	  gap: 25px;
	}
  
	.feature-item {
	  font-size: 20px;
	  justify-content: center;
	  padding: 10px 0;
	}
  
	.feature-icon {
	  font-size: 30px;
	}
  
	/* Hide dividers on small screens */
	.feature-item::after {
	  display: none;
	}

	.featured-items img {
		transition: transform 0.3s ease;
	  }
	  
	  .featured-items img:hover {
		transform: scale(1.1);
	  }
	  
  }
  
   /*styling for buttons*/

   .custom-btn {
	padding: 12px 25px;
	background-color: grey;
	color: white;
	text-decoration: underline;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .custom-btn:hover {
	background-color: red;
	transform: translateY(-2px);
	color: white; /* ✅ this makes text stay white */
  }
  
  /*<a> tag inside */
  .custom-btn a {
	color: white;
	text-decoration: none;
  }
  
  .custom-btn a:hover {
	color: white; /* ✅ ensures link text turns/stays white on hover */
  }
  
  
  /* White card over background */
  .overlay-text-box {
	background-color: grey;
	padding: 5px;
	max-width: 750px;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .overlay-text-box h2 {
	margin-bottom: 20px;
	font-size: 32px;
	color: red;
  }
  
  .overlay-text-box p {
	font-size: 20px;
	color: black;
  }

  /*community donations*/

  .community-donations {
	background-color: #f8f9fa; /* light gray background */
  }
  
  .community-donations h2 {
	font-weight: bold;
  }
  
  .community-donations img {
	border-radius: 10px;
  }
  

/*footer customization*/
.fbg {
	background-color: lightgrey;
}
  
/*border for text*/

.bor{

border: 3px solid black;
}

.par{

	font-family: 'Times New Roman', Times, serif;
	font-size: 12pt;
}

.desc{

	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	color: grey;
}


.brand-marquee {
	overflow: hidden;
	white-space: nowrap;
	background: #f8f9fa;
	padding: 20px 0;
  }
  
  .brand-track {
	display: inline-block;
	animation: scroll-left 65s linear infinite;
  }
  
  .brand-marquee:hover .brand-track {
	animation-play-state: paused;
  }
  
  .brand-logo {
	height: 80px;
	margin: 0 30px;
	display: inline-block;
	object-fit: contain;
  }
  
  @keyframes scroll-left {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-50%);
	}
  }
  
/* Dropdown Button */
.dropbtn {
	background-color: #f09af2;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
	background-color: #bf09b9;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #e4f46c;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

  /*css for product card*/
  .pcard {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 300px;
	margin: auto;
	text-align: center;
	font-family: arial;
	background-color: gold;
  }
  
  .pcard2 {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 300px;
	margin: auto;
	text-align: center;
	font-family: arial;
	background-color: palevioletred;
  }

  .pcard2 button {
	border: none;
	outline: 0;
	padding: 10px;
	color: white;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
  }
  
  .pcard2 button:hover {
	opacity: 0.7;
  }

  .pcard3 button {
	border: none;
	outline: 0;
	padding: 10px;
	color: white;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
  }
  
  .pcard3 button:hover {
	opacity: 0.7;
  }
  .pcard3 {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 300px;
	margin: auto;
	text-align: center;
	font-family: arial;
	background-color: white;
  }

  .price {
	color: rgb(0, 0, 0);
	font-size: 22px;
  }
  
  .pcard button {
	border: none;
	outline: 0;
	padding: 10px;
	color: white;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
  }
  
  .pcard button:hover {
	opacity: 0.7;
  }

  /*form specifications*/
  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */ 
	border: 1px solid #ccc; /* Gray border */
	border-radius: 4px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
	background-color: #e9f32b;
	color: rgb(12, 12, 12);
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
	background-color: #d249b9;
  }
  
  /* Add a background color and some padding around the form/container*/
  .fcontainer {
	border-radius: 5px;
	background-color: #f49af1;
	padding: 20px;
  }

  /*css for star rating*/
  .checked {
	color: orange;
  }

  /* css for modal log in form */

  /* The Modal (background) */

  input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
  }
  
  /* Set a style for all buttons */
  .lfbutton {
	background-color: #04AA6D;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
  }
  
  .lfbutton:hover {
	opacity: 0.8;
  }
  
  /* Extra styles for the cancel button */
  .cancelbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #f1f436;
  }
  
  /* Center the image and position the close button */
  .imgcontainer {
	text-align: center;
	margin: 24px 0 12px 0;
	position: relative;
  }
  
  img.avatar {
	width: 40%;
	border-radius: 50%;
  }
  
  .container {
	padding: 16px;
  }
  
  span.psw {
	float: right;
	padding-top: 16px;
  }
  
.lmodal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	padding-top: 60px;
  }
  
  /* Modal Content/Box */
  .lmodal-content {
	background-color: #f9b1eb;
	margin: 5px auto; /* 15% from the top and centered */
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
  }

  
  /* The Close Button */
  .close {
	/* Position it in the top right corner outside of the modal */
	position: absolute;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
  }
  
  /* Close button on hover */
  .close:hover,
  .close:focus {
	color: red;
	cursor: pointer;
  }
  
  /* Add Zoom Animation */
  .animate {
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
	from {-webkit-transform: scale(0)}
	to {-webkit-transform: scale(1)}
  }
  
  @keyframes animatezoom {
	from {transform: scale(0)}
	to {transform: scale(1)}
  }