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

/* Brand Colors 

#ffffff - White 
#000000 - Black
#121213 - Dark Slate Gray
#debf9a - Sandy Brown
#8c954a - Olive Drab
#bfbfbf - Gray
#bebf91 - Dark Khaki
#a37f1d - Bronze
#6c624d - Dark Slate Gray
#7f7f7f - Silver

Army Green: #4B5320
Forest Green: #228B22
Hunter Green: #355E3B

Sepia Background: #eadbcb

*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1 {
    font-size: 1.8em;
		color: #8c954a;
		margin-bottom: 12px;
		line-height: 1.2;
}

h2 {
    font-size: 1.4em;
		color: #a37f1d;
		margin-bottom: 10px;
		line-height: 1.2;
}

h3 {
    font-size: 1.2em;
		color: #6c624d;
		line-height: 1.2;
		margin-bottom: 8px;
}

p {
    margin-bottom: 20px;
		color: #121213;
}

.last {
    margin-bottom: 0;
}

header {
    background: #4B5320;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 4px solid #000;
    border-left: none;
    border-right: none;
    position: relative;
}

header #logo-placeholder {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 600px;
    height: 300px;
    background: url('images/capturebigfoot-banner-1200x600.png') no-repeat center center;
    background-size: contain;
}

nav ul {
    list-style: none;
    text-align: center;
    transition: max-height 0.3s ease-out;
    max-height: 0; /* Start hidden */
    overflow: hidden;
}

nav ul li {
    display: block; /* Stack vertically */
    margin: 10px 0; /* Adjust spacing */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/*.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}*/

.menu-toggle {
    display: block; /* Ensure it's always displayed, initially */
    cursor: pointer;
    position: absolute; /* Adjust if necessary to fit your header layout */
    left: 20px; /* Adjust based on your layout */
    top: 30px; /* Adjust based on your layout */
		width: 30px; /* Width of the hamburger icon */
    height: 25px; /* Total height of the hamburger icon */
    z-index: 1000; /* Ensure it's above other content */
}

.menu-toggle span {
    display: block;
    height: 3px; /* Height of each line */
    width: 100%; /* Width of each line */
    background: #fff; /* Color of the lines */
    margin-bottom: 5px; /* Spacing between the lines */
    transition: all 0.3s ease-in-out;
}

.menu-toggle span:last-child {
    margin-bottom: 0; /* No margin for the last line */
}


section {
    padding: 20px;
    text-align: center;
}

.inner-section {
    margin: 0 auto;
    text-align: left;
		width: 100%;
		max-width: 1000px;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

p.intro {
    font-size: 1.3em;
		color: #7f7f7f;
		line-height: 1.2;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

footer p {
    color: #fff;
}

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-left {
    margin-top: -15px;
    width: 49%;
    display: inline-block;
    padding: 20px 0 0 0;
    float: left;
}
.video-right {
    width: 49%;
    display: inline-block;
    padding: 20px 0 0 0;
    float: right;
}

.products {
    border: 1px solid #4B5320;
    border-radius: 7px;
    padding: 20px;
    padding-bottom: 5px;
    margin: 0 0 20px 0;
    display: inline-block;
    width: 100%;
    background-color: white;
}

.products img {
    height: 100px;
    float: left;
    margin: 4px 10px 10px 0;
}

.products img.righspace {
    margin-right: 20px;
}

.products a {
    color: #4B5320;
    text-decoration: none;
    font-size: 1.3em;
    display: block;
}

.products a:hover {
    text-decoration: underline;
}

.producs a:visited {
    color: #4B5320;
}

a.orderbutton {
    color: #fff;;
    background-color: #4B5320;
    border: 2px solid #4B5320;
    text-decoration: none;
    display: inline-block;
    padding: 5px 8px 5px 8px;
    border-radius: 5px;
    font-size: 1.1em;
    margin-top: 7px
}

a.orderbutton:hover {
    text-decoration: none;
    color: #4B5320;
    background-color: #fff;
    border: 2px solid #4B5320;
}


.sectimage {
	  width: 30%;
		float: left;
		margin: 7px 20px 10px 0;
		border: 1px solid #000;
}

.sectimage.smallimage {
	  width: 20%;
		float: left;
		margin: 7px 20px 10px 0;
		border: 1px solid #000;
}

.bigfoot-links-container {
    background-color: #cacaca;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
		margin-top: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for depth */
		display: block;
}

.bigfoot-links-container h2 {
    text-align: center;
    color: #355E3B; /* Dark green, similar to hunter green */
    margin-bottom: 16px;
}

.bigfoot-links {
    list-style: none;
    padding: 0;
}

.bigfoot-links li {
    margin-bottom: 10px; /* Space between links */
}

.bigfoot-links li a {
    text-decoration: none;
    color: #355E3B; /* Bootstrap primary blue for consistency */
    font-weight: bold;
}

.bigfoot-links li a:hover {
    text-decoration: underline; /* Highlight on hover */
    color: #355E3B; /* Darker blue on hover */
}

.links-left {
    width: 48%;
    float: left;
}
.links-right {
    width: 48%;
    float: right;
}

.storywrapper {
    border: 1px solid #8c954a;
    border-radius: 5px;
    padding: 20px 20px 0 20px;
    background-color: #eadbcb;
}

.storywrapper p {
    color: #475738;
}
.storywrapper p.intro {
    color: #7f7f7f;
}

a.back-to-top {
    margin-top: 20px;
		border: 1px solid #000;
    position: relative;
    display: inline-block;
    background-color: #8c954a;
    color: #000;
    padding: 5px 10px 5px 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    opacity: 1.0;
    transition: opacity 0.2s;
}

a.back-to-top, a.back-to-top:visited {
color: #fff;
text-decoration: none;
}
a.back-to-top:hover {
color: #fff;
text-decoration: none;
background-color: #000;
}

.clear {clear: both;}

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







@media (min-width: 768px) {
    nav ul { 
        max-height: none; /* Show menu */
        overflow: visible;
    }

    nav ul li {
        display: inline-block; /* Horizontal layout */
        margin: 0 10px;
    }

    .menu-toggle {
        display: none; /* Hide toggle button */
    }
}

@media screen and (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }
		header #logo-placeholder {
		width: 95%;
		height: 175px;
		margin-bottom: 10px;
		}
		
		.sectimage {
	  width: 100%;
		float: none;
		margin: 6px 0 10px 0;
    }
		
		.sectimage.smallimage {
	  width: 50%;
		float: none;
		margin: 16px auto;
		text-align: center;
		display: block;
}
		
		.links-left {
    width: 100%;
		border-radius: 8px 8px 0px 0px;
		margin-bottom: 0;
		box-shadow: none;
    }
		
   .links-right {
    width: 100%;
		border-radius: 0px 0px 8px 8px;
		padding-bottom: 10px;
		padding-top: 0;
		margin-top: 0;
    }
}

p.intro {
    font-size: 1.2em;
		color: #7f7f7f;
		line-height: 1.1;
}

@media screen and (max-width: 300px) {
    nav ul li {
        display: block;
        margin: 2px 0;
    }
    header #logo-placeholder {
		height: 150px;
		margin-bottom: 0;
		}
}

