@charset "UTF-8";

/* CSS-TEST-03012026 */

/* CSS Document */

/*

Branding Colors

Dark Blue and H1: #06364a
Lighter Blue: #00688b
Dark Green: #2c4e47
Light Green: #76978e
Light Green Text: #78a1a3
h2 Orange Text: #db9d4f
h3 Black: #000
Sepia: #eadbcb
body p #5a5a5a

*/


* { -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/red-brick-wall-texture-and-background-SBI-301087865.jpg");
	background-size: 200px;
	background-position: 0 145px;*/
	background-color: #fff;
  color: #5a5a5a;
}

#westwebpages a.button {
    float: right;
	padding: 5px 8px 6px 8px;
	border-radius: 5px;
	background-color: #8b1c1c;
	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: #000000;
	color: #fff;
}

/* H1 style */
#westwebpages h1 {
  margin-top: 0;
	margin-bottom: 10px;
  color: #8b1c1c;
  font-size: 1.6rem;
}

/* H2 style */
#westwebpages h2 {
  color: #000;
  font-size: 1.5rem;
  font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
}

/* 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: #8b1c1c;
	background-image: url("images/woodbknd2.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: #8b1c1c;
  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: white; /* Sets link color */
  font-weight: bold; /* Optional: makes the nav items stand out */
}

#westwebpages nav a:hover {
  color: #f7d8bf !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: 2px 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: #0B3D0E;
	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: #3BAA37;
	color: #fff;
}

/* Footer styles, including background, text alignment, and padding */
#westwebpages footer {
  width: 100%;
  margin: 0 auto;
  background-color: #8b1c1c;
  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: #272626;
  background-image: url("images/dark-wood-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: #fff;
	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: #8b1c1c;
	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: #000000;
	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: #355E3B;
  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: #355E3B;
  background-image: url("images/accordion-arrow-up-white.png");
}

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

.accordion-button:focus {
  background-color: #355E3B;
}

.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;
}









/*@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;}

}
