@charset "UTF-8";
/* CSS Document */

/*

Branding Colors

Header Background:  2e5735
H1:  2e5735
H2:  636f53
H3:  272626
Light Green:  84a931
Logo Background: ebf0db
Van Dark Color:  3c4248
Van Gold:  ffbf48
Van Lime Green:  5ecf28


*/


* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html {font-size: 16px; scroll-behavior: smooth;}


body { 
    /* background-color:#f2dbb9; */
	margin:0;
	padding:0;
	font-family:Verdana, Geneva, sans-serif;
	background-color: #000;
}

.clear {clear: both;}

/* Global styles ensuring consistent box-sizing */
#westwebpages, #westwebpages * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Styles, setting up font, background, and text alignment */
#westwebpages {
  text-align: center;
    /*background-image: url("images/auto-parts-background.png");
	background-size: 500px;
	background-position: 0 145px;*/
	background-color: #ebf0db;
  color: #5a5a5a;
}

#westwebpages a.button {
    float: right;
	padding: 5px 8px 6px 8px;
	border-radius: 5px;
	background-color: #2e5735;
	color: #fff;
	margin: 0 0 10px 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
	border: 3px solid #f2f2f2;
	box-shadow: 0 7px 7px -2px rgba(0, 0, 0, 0.6);
}

#westwebpages a.button:hover {
  background-color: #5ecf28;
	color: #fff;
}

/* H1 style */
#westwebpages h1 {
  margin-top: 0;
	margin-bottom: 10px;
  color: #2e5735;
  font-size: 1.7rem;
}

/* H2 style */
#westwebpages h2 {
  color: #ffbf48;
  font-size: 1.5rem;
  font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.9);
}

/* H3 style */
#westwebpages h3 {
  color: #272626;
  font-size: 1.35rem;
  font-weight: normal;
  margin-top: 10px;
}

/* Paragraph style */
#westwebpages p {
  color: #5a5a5a;
  font-weight: normal;
  font-size: 1.0rem;
	line-height: 1.4;
}

/* Unordered and ordered list font size */
#westwebpages ul, ol {
  font-size: 0.9rem;
	line-height: 1.0rem;
}

/* List item style, with margin bottom for spacing */
#westwebpages ul li, #westwebpages ol li {
  font-weight: normal;
	margin-bottom: 1.0rem;
}

/* Header container style */
#westwebpages header {
  width: 100%;
  margin: 0 auto;
  background-color: #2e5735;
	/*background-image: url("images/wood-background-2.png");*/
	background-size: 500px;
	background-position: 0 0;
	display: block;
	/*border-top: 3px solid #000;*/
	/*padding-top: 100px;*/
}

#westwebpages .banner {
  max-width: 960px;
  position: relative;
  display: block;
	margin: 0 auto;
  height: auto;
	box-shadow: 7px -7px 17px 6px rgba(0, 0, 0, 0.8);
}

#westwebpages .banner img {
  width: 100%;
	display: block;
	margin-bottom: 0;
}

#westwebpages .logo {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1000;
  width: 25%;
  aspect-ratio: 1 / 1; /* Force the aspect ratio to 1:1 */
  overflow: hidden;
}

#westwebpages .logo img {
  width: 100%;
  height: auto;
}


/* Navigation Styles */
#westwebpages nav {
	display: flex;
  justify-content: center; /* Centers navigation items horizontally */
  align-items: center; /* Aligns navigation items vertically */
  background-color: #3c4248;
  padding: 10px;
	border-bottom: 2px solid #000;
	border-top: 2px solid #000;
	background-size: 300px;
}

#westwebpages nav ul {
  display: flex;
  list-style: none; /* Removes default list styling */
  padding: 0; /* Removes default padding */
  margin: 0; /* Aligns with the rest of the header/footer styles */
}

#westwebpages nav ul li {
  margin-right: 20px; /* Spacing between nav items */
	font-size: 0.9rem;
	line-height: 1.0;
	margin-top: 0;
	margin-bottom: 0;
}

#westwebpages nav ul li:last-child {
  margin-right: 0; /* Remove margin-right for the last item to avoid extra spacing */
}

#westwebpages nav a {
  text-decoration: none; /* Removes underline from links */
  color: #ffbf48; /* Sets link color */
  font-weight: bold; /* Optional: makes the nav items stand out */
}

#westwebpages nav a:hover {
  color: #5ecf28 !important; /* "!important;" is only to display correctly in our tool. Use "color: yellow;" if used elswhere */
	text-decoration: underline; /* Adds an underline on hover for visual feedback */
}

#westwebpages nav a:active, nav a:visited, nav a:focus {
  color: white; /* Ensures nav links always stay white except hover */
}

/* Inner page container style */
#westwebpages .inner-page {
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  max-width: 960px;
  border: none;
  background-color: white;
	box-shadow: 7px 7px 17px 6px rgba(0, 0, 0, 0.8);
}

#westwebpages .portal {
  position: relative;
  border: 2px solid #000;
  display: inline-block;
  width: inherit;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}
#westwebpages .portal img {
  width: 100%;
	display: block;
}

/* Image floated to the right styles */
#westwebpages .portal-vertical {
  position: relative;
	border: 2px solid #000;
	width: 100%;
	display: none;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

#westwebpages .portal-vertical img {
  width: 100%;
	display: block;
}

#westwebpages .secTopImage {
  margin-bottom: -24px;
	margin-top: 20px;
	position: relative;
  border: 1px solid #000;
  display: inline-block;
  width: inherit;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

#westwebpages .secTopImage img {
  width: 100%;
	display: block;
}

#westwebpages .flatTop {border-radius: 0 0 10px 10px;}

#westwebpages a.portal-button {
  position: absolute;
	right: 10%;
	bottom: 5%;
	z-index: 1000;
	padding: 5px 8px 6px 8px;
	border-radius: 5px;
	background-color: #20409a;
	color: #fff;
  margin-top: 0;
	margin-bottom: 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
	border: 3px solid #A24800;
	box-shadow: 0 4px 8px 8px rgba(0, 0, 0, 0.6);
}

#westwebpages a.portal-button:hover {
  background-color: #c9533e;
	color: #fff;
}

/* Footer styles, including background, text alignment, and padding */
#westwebpages footer {
  width: 100%;
  margin: 0 auto;
  background-color: #2e5735;
  color: white;
  min-height: 40px;
  text-align: center;
  padding: 10px;
	margin-top: 50px;
	border-bottom: 2px solid #000;
	border-top: 2px solid #000;
	background-size: 300px;
	box-shadow: 0 -7px 17px 6px rgba(0, 0, 0, 0.8);
}

/* Footer paragraph style */
#westwebpages footer p {
  color: #fff;
  font-size: 0.8rem;
}

#westwebpages footer a, #westwebpages footer a:visited {
  color: #fff;
}

#westwebpages .ad-callout {
  background-color: #8E4646;
  color: white;
  padding: 10px 20px 0 20px;
  float: right;
  margin-left: 20px;
	margin-bottom: 20px;
  width: 190px; /* Adjust based on your layout */
  box-shadow: -4px 6px 14px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
	opacity: 1.0;
}

#westwebpages .ad-callout h2 {
  color: #fff;
  margin-top: 0;
	margin-bottom: 7px;
	font-size: 1.0rem;
	line-height: 1.3;
	font-weight: 600;
}

#westwebpages .ad-callout ul {
  list-style: none;
  padding: 0;
	margin-top: 0;
}

#westwebpages .ad-callout ul li {
  margin-bottom: 6px;
	font-size: 0.85rem;
	line-height: 1.4;
}

#westwebpages .ad-callout ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

#westwebpages .ad-callout ul li a:hove {
  color: #00aeef; /* Highlight color on hover */
}

#westwebpages .ad-callout ul li a:focus, #westwebpages .ad-callout ul li a:visited {
  color: #fff; /* Highlight color on hover */
}

#westwebpages section {
  background-color: #2e5735;
  /*background-image: url("images/water-background.png");*/
  border-radius: 10px;
  padding: 20px;
	padding-bottom: 0;
  margin-top: 20px;
	overflow: hidden;
}

#westwebpages section article {
  border-bottom: 1px solid #aaa;
	margin-bottom: 20px;
}

#westwebpages section article:last-child {
  border-bottom: none;
	margin-bottom: 0;
}

#westwebpages section h2 {
  margin-top: 0;
	color: #ffbf48;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

#westwebpages section h3 {
	font-size: 1.2rem;
	color: #fff;
  font-weight: normal;
  margin-bottom: 20px;
}

#westwebpages section h4 {
  color: #db9d4f;
	font-size: 1.1rem;
	margin-top: 0;
}

#westwebpages section h5 {
  color: #00688b;
	font-size: 1.0rem;
	margin-bottom: 5px;
	margin-top: 0;
}

#westwebpages section p {
  color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
	font-size: 0.9rem;
	line-height: 1.4;
}

#westwebpages section img {
  float: right;
	width: 200px;
	margin: 0 0 10px 20px;
	display: inline-block;
}

#westwebpages section time {
  color: #00688b;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.4;
}

#westwebpages section a.button {
    float: none;
	padding: 5px 8px 6px 8px;
	border-radius: 5px;
	background-color: #2e5735;
	color: #fff;
  margin-top: 0;
	margin-bottom: 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
	border: 3px solid #f2f2f2;
	box-shadow: 0 4px 8px 8px rgba(0, 0, 0, 0.6);
}

#westwebpages section a.button:hover {
  background-color: #ffbf48;
	color: #fff;
}

#westwebpages section .youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
	border: 1px solid #000;
	border-radius: 7px;
}

.accordion {
margin-bottom: 30px;
}

.accordion-item {
margin-bottom: 0;
}

.accordion-button {
  /*background-color: #C16114;*/
  background-color: #20409a;
  color: #fff;
  cursor: pointer;
  padding: 18px;
	padding-left: 43px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.2s ease-in-out;
	line-height: 18px;
	background-image: url("images/accordion-arrow-down-white.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: 10px 50%;
	border-radius: 5px;
	margin-bottom: 10px;
	box-shadow: 0 4px 8px 8px rgba(0, 0, 0, 0.6);
}

.accordion-button.active {
  background-color: #c9533e;
  background-image: url("images/accordion-arrow-up-white.png");
}

.accordion-button:hover {
  /*background-color: #039AAD;*/
  background-color: #c9533e;
}

.accordion-button:focus {
  background-color: #20409a;
}

.accordion-content {
  padding: 0 18px 18px 18px;
  display: none;
  overflow: hidden;
  background-color: #57342A;
	width: 98%;
	margin: 0 auto;
	margin-top: -10px;
	margin-bottom: 20px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 8px 15px 14px rgba(0, 0, 0, 0.8);
	background-image: url("images/dark-wood-background.png");
	background-position: center;
}

.accordion-content p {
  margin: 18px 0;
	color: #FCFCBD;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 1.0);

}

.accordion-content ul li, .accordion-content ol li {
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 1.0);

}

.accordion-content .discussionWebsite {
  margin-top: 10px;
	margin-bottom: -10px;
}

#westwebpages section .accordion-content .products {
border: 1px solid #cacaca;
border-radius: 7px;
padding: 20px;
padding-bottom: 5px;
margin: 15px 0 0 0;
display: inline-block;
width: 100%;
background-color: none;
}
#westwebpages section .accordion-content .products img {
width: 46%;
float: left;
background-color: white;
margin: 4px 15px 10px 0;
padding: 5px;
border-radius: 5px;
}
#westwebpages section .accordion-content .products img:last-child {
margin-bottom: 20px;
}
#westwebpages section .accordion-content .products a {
color: #fff;
text-decoration: underline;
}
#westwebpages section .accordion-content .products a:hover {
color: #1e942f;
}
#westwebpages section .accordion-content .products a:visited {
}
#westwebpages section .accordion-content .products a.orderbutton {
color: #fff;;
background-color: #0087be;
border: 2px solid #0087be;
text-decoration: none;
display: inline-block;
padding: 5px 8px 5px 8px;
border-radius: 5px;
font-size: 1.1em;
margin-top: 7px
}
#westwebpages section .accordion-content .products a.orderbutton:hover {
text-decoration: none;
color: #0087be;
background-color: #fff;
border: 2px solid #0087be;
}

div.recipe h2 {
padding-top: 20px;
padding-bottom: 10px;
}


.contact-info {
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem 0;
color: #fff;
}

.contact-item {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.1rem;
}

.contact-item i {
color: #fff;
min-width: 24px;
}

.contact-info a {
color: #ffffff;
text-decoration: none;
transition: color 0.2s ease-in-out;
}

.contact-info a:hover {
color: #f7d8bf;
text-decoration: underline;
}

.contact-info a:visited {
color: #fff;
}

.services-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
padding: 1rem 0;
}

.service-item {
color: #fff;
flex: 1 1 45%;
/*min-width: 250px;*/
background-color: #000;
/*padding: 0.75rem 1rem;*/
padding: 0.4rem 0.75rem;
border-left: 4px solid #84a931;
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
.service-item {
  flex: 1 1 100%;
}
}







/*@media screen and (min-width: 0px) and (max-width: 780px) {

#westwebpages .logo {
    width: 29%;
}

}
*/


@media screen and (min-width: 0px) and (max-width: 960px) {

/*#westwebpages header {
    padding-top: 10px;
}*/

#westwebpages nav {
   
		background-size: 200px;

}

#westwebpages {

    background-size: 200px;

}

#westwebpages header {

    background-size: 150px;
		/*padding-top: 30px;*/

}

#westwebpages footer {

    background-size: 200px;

}

#westwebpages .banner {

    border-top: 2px solid #000;

}

#westwebpages .banner img {
    margin-top: -2px;
}

#westwebpages nav ul li a, #westwebpages nav ul li a:visited {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

}

@media screen and (min-width: 0px) and (max-width: 700px) {

html {font-size: 15px;}

#westwebpages .portal-vertical {
    display: inline-block;
    width: 100%;
		float: none;
		margin: 0 auto;
		max-width: 100%;
}

#westwebpages .portal {
    display: none;
}

#westwebpages section .accordion-content .products img {
    width: 100%;

}

}

@media screen and (min-width: 0px) and (max-width: 500px) {

#westwebpages .logo {
    width: 28%;
}

#westwebpages section img {
	width: 40%;
}

}

@media screen and (min-width: 0px) and (max-width: 440px) {

#westwebpages .ad-callout {
    position: relative;
    width: 100%;
		margin-left: 0;
		float: left;
}

}

@media screen and (min-width: 0px) and (max-width: 360px) {

html {font-size: 14.5px;}

#westwebpages h1 {
  font-size: 1.3rem;
}

#westwebpages h2 {
  font-size: 1.2rem;
}

#westwebpages h3 {
  font-size: 1.1rem;
}

#westwebpages p {
  font-size: 1.0rem;
}

#westwebpages .logo {
		top: 5px;
}

#westwebpages section img {
	width: 47%;
}

#westwebpages section h3 {
	font-size: 1.1rem;
}

#westwebpages section h4 {
  color: #db9d4f;
	font-size: 1.0rem;
}

#westwebpages section h5 {
  color: #00688b;
	font-size: 0.9rem;
}

#westwebpages section time {
  color: #00688b;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.75;
}

#westwebpages nav ul li {
  margin-right: 20px; /* Spacing between nav items */
	font-size: 0.8rem;
	line-height: 0.9;
}

}

@media screen and (min-width: 0px) and (max-width: 320px) {

#westwebpages nav ul li {
  margin-right: 20px; /* Spacing between nav items */
	font-size: 0.6rem;
	line-height: 0.8;
}

#westwebpages a.button {
    float: none;
    margin: 0 0 20px 0;
	display: block;
	font-size: 0.7rem;
}

html {font-size: 14px;}

}
