/*

	"Hoo" Haven Website Styles

#footer

*/
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CAFFCA;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #000;
}

.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	text-align: left;
	color: #FF0000;
}

/* Header */

.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #9BD3AE;
}

.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


/* Main Content */

.oneColFixCtrHdr #container #mainContent {
	text-align: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	color: #000;
}

.oneColFixCtrHdr #container #mainContent p strong u {
	color: #B31A44;
	font-weight: bold;
	text-align: center;
}

.oneColFixCtrHdr #container #mainContent p {
	font-weight: normal;
	color: #000;
}

.oneColFixCtrHdr #container #mainContent h6 {
	font-weight: normal;
	text-align: left;
	color: #000;

}

.oneColFixCtrHdr #container #mainContent h4 {
	color: #F00;
}

.oneColFixCtrHdr #container #mainContent h3 {
	color: #000;
}

.oneColFixCtrHdr #container #mainContent h2 {
	color: #F00;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.35);
}

.oneColFixCtrHdr #container #mainContent h1 {
  font-family: "Poppins", "Trebuchet MS", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;

  /* High-saturation gradient */
  background: linear-gradient(
    90deg,
    #ff2d20,   /* vivid scarlet red */
    #4caf50,   /* strong fresh green */
    #6b4226    /* rich earthy brown */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Clean bold depth */
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.35);
}


.oneColFixCtrHdr #container #mainContent table tr td p strong {
	text-align: center;
}


.oneColFixCtrHdr #container #mainContent ul li {
	color: #000;
	font weight: normal;
}

.oneColFixCtrHdr #container #mainContent div p strong {
	color: #F00;
}

.oneColFixCtrHdr #container #mainContent table tr td p {
	text-align: left;
}

.oneColFixCtrHdr #container #mainContent table tr td h1 strong {
	text-align: center;
}

/* Footer Container */
footer {
	margin-top: 4em;
    background-color: #f4f9f4;
    padding: 30px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    color: #333;
    border-top: 2px solid #d9e6d9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Branding Section */
footer .brand {
    flex: 1 1 100%;
    text-align: left;
}

footer .brand .site-name {
    font-size: 20px;
    font-weight: bold;
    color: #286040;
    margin: 0;
}

footer .brand .tagline {
    font-size: 16px;
    color: #5a8066;
    margin-top: 5px;
}

/* Address and Contact Section */
footer #footer-contact {
    flex: 1 1 45%;
}

footer #footer-contact h1 {
    font-size: 14px;
    font-weight: bold;
    color: #286040;
    margin: 12px 0 4px 0;
}

footer #footer-contact address {
    font-style: normal;
    line-height: 1.6;
}

footer #footer-contact a {
    color: #0a58ca;
    text-decoration: none;
}

footer #footer-contact a:hover {
    text-decoration: underline;
}

/* Links Section */
footer #footer-links {
    flex: 1 1 45%;
}

footer #footer-links h1 {
    font-size: 14px;
    font-weight: bold;
    color: #286040;
    margin-bottom: 8px;
}

footer #footer-links div {
    margin-bottom: 6px;
}

footer #footer-links a {
    color: #0a58ca;
    text-decoration: none;
}

footer #footer-links a:hover {
    text-decoration: underline;
}

/* Copyright Section */
footer #footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #d9e6d9;
    padding-top: 10px;
}

/*

	PAGE SPECIFIC

*/

/* Home Page Flexbox Cards / Little modules */

.flex-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.flex-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 28%;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.flex-item h3 {
  margin-top: 0;
  font-size: 1em;
  color: #333;
}

.flex-item h4 {
  text-align: center;
}

.flex-item form,
.flex-item figure,
.flex-item .fb-page {
  margin-top: 10px;
}

.flex-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.flex-item form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* mission image */

.mission-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  max-width: 900px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mission-content {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.mission-image img {
  display: block;
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mission-text {
  flex: 1;
  text-align: left;
}

.mission-text h4 {
  margin: 0 0 10px;
  font-size: 1.3em;
  color: #333;
}

.mission-text p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  color: #555;
}