/**
 * General styles - These are basic overall styles on tags
 */

* {
	box-sizing: border-box;
}

:root {
	/* Black */
	--black: #000000;
	--black-light: #333333;

	/* Warm Tan */
	--warm-tan: #897056;
	--warm-tan-light: #a38b70;
	--warm-tan-dark: #6e5944;

	/* Dark Brown */
	--dark-brown: #462f1e;
	--dark-brown-light: #6a4a2e;
	--dark-brown-dark: #2d1e11;

	/* Rich Brown */
	--rich-brown: #64432a;
	--rich-brown-light: #865b3b;
	--rich-brown-dark: #422d1c;

	/* Light Tan */
	--light-tan: #ba9876;
	--light-tan-light: #d2b293;
	--light-tan-dark: #9d7a5a;

	/* Deep Espresso */
	--deep-espresso: #241810;
	--deep-espresso-light: #3f2d22;
	--deep-espresso-dark: #120c08;

	/* Soft Off-White */
	--soft-white: #f9f4ef;
	--soft-white-light: #ffffff;
	--soft-white-dark: #e6d5c0;
	
	--white: #ffffff;
}

html, body {
	margin:0px;
	width:100%;
}

body {
	font-family: 'Arial', sans-serif;
	font-size: 15px;
	line-height: 1.42857;
	color: var(--deep-espresso-dark);
	background-color: var(--soft-white);
}

.body-container {
	width: 100%;
	max-width: 1440px;
	background-color: var(--soft-white-dark);
	margin: 0px auto;
	position: relative;
	min-height: 100vh;
	-webkit-box-shadow: inset 0 5px 5px rgba(0, 0, 0, .5);
	box-shadow: inset 0 5px 5px rgba(0, 0, 0, .5);
	padding-top: 171px;
}

.cactus-container {
	width: 100%;
	max-width: 1440px;
	position: fixed;
	bottom: 0px;
	pointer-events: none;
}

.cactus-container::before {
	content: '';
	background-image: url(/images/cactus-left.png);
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0px;
	width: 400px;
	height: 247px;
	left: -400px;
	opacity: .25;
}
.cactus-container::after {
	content: '';
	background-image: url(/images/cactus-right.png);
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0px;
	width: 400px;
	height: 247px;
	right: -400px;
	opacity: .25;
}

.header-container {
	position: fixed;
	top: 0px;
	width: 100%;
	max-width: 1440px;
}

.header-inner-container {
	background-color: var(--soft-white);
	position: relative;
	z-index: 2;
	height:171px;
	display: flex;
}

.header-container-shadow {
	-moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 1);
    box-shadow: 0 5px 3px rgba(0, 0, 0, 1);  
	height: 1px;
  	margin-top: -3px;
	margin-bottom: 17px;
}

.logo-container {
	display: inline-block;
	height: 100%;
	width: 300px;
	padding-left: 10px;
	flex-shrink: 0;
}

.logo-container img {
	width: 100%;
	max-width: 300px;
	position: relative;
	display: block;
	top: 20px;
	  margin-top: 5px;
}

.navigation-container {
	height: 100%;
	display: inline-block;
	flex: 1;
}

.body-content-container {
	padding: 0px 15px;
}





/* A11y helper */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* Navigation base */
.main-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* adjust if needed */
	height: 100%;
	padding-bottom: 5px;
	padding-right: 15px;
}

/* Toggle button (mobile) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
	align-self: end;
}

.nav-toggle:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Hamburger lines */
.nav-toggle-box { display: inline-block; }
.nav-toggle-bar {
  display: block;
  width: 24px; height: 2px;
  margin: 5px 0;
  background: #241810; /* Deep Espresso from your palette, tweak as needed */
  transition: transform .2s ease, opacity .2s ease;
}

/* Menu list */
.menu {
  list-style: none;
  margin: 0; padding: 0;
  display: none; /* hidden by default on mobile */
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #f9f4ef; /* your light background */
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 20;
align-self: end;
}

.menu li { border-bottom: 1px solid rgba(0,0,0,.06); }
.menu li:last-child { border-bottom: 0; }

.menu a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #241810;
  font-weight: 600;
}

.menu a:hover,
.menu a:focus {
  background: rgba(0,0,0,.04);
}

/* CTA styling (optional) */
.menu a.btn-cta {
  font-weight: 700;
}

/* When open */
.main-navigation.is-open .menu { display: block; }

/* Animate hamburger into an X when open */
.main-navigation.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.main-navigation.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.main-navigation.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



.tag-line {
	background-color: var(--rich-brown);
	color: var(--white);
	text-align:center;
	margin: 0px;
	margin-top: -5px;
	font-size: 24px;
	font-weight: normal;
	display: block;
}

.img-reponsive {
	width: 100%;
}


.footer-container {
	background-color: var(--rich-brown);
	position: relative;
	overflow-x: clip;
}

.footer-container a {
	color: var(--soft-white);
	text-decoration: none;
}

.footer-container a:hover {
	color: var(--deep-espresso-dark);
}

.footer-content {
	display: flex;
	color: var(--deep-espresso-dark);
	gap:0px;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-links {
	flex-direction: column;
	display: flex;
	padding: 0px 30px;
}

.footer-contact {
	flex-direction: column;
	display: flex;
	padding: 0px 30px;

}

.footer-contact .contact {
	color: var(--soft-white);
	font-weight: normal;
}

.footer-logo {
	text-align: center;
	flex-direction: column;
	display: flex;
	min-width: 320px;
	padding: 15px 30px 0px;
  	justify-content: center;
	flex-basis: 100%;
}

.footer-logo img {
	width:100%;
	max-width: 200px;
}

.footer-headline {
	font-weight: bold;
	padding: 15px 0px 5px;
	
}

.footer-copyright {
	text-align: center;
	color: var(--deep-espresso-dark);
	padding: 30px 0px 15px;
}

.footer-social {
	text-align: center;
	color: var(--deep-espresso-dark);
}









a {
  color: #2E5873;
	text-decoration: none;
}
a:hover {
  color: #C4631F;
	text-decoration: underline;
}

























/* Desktop layout */
@media (min-width: 930px) {
  .nav-toggle { display: none; }
  .menu {
    position: static;
    display: flex;
    gap: 24px;
    width: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .menu li { border: 0; }
  .menu a {
    padding: 10px 0;
    color: #241810; /* adjust to match your header */
  }
  .menu a:hover,
  .menu a:focus {
    background: transparent;
    box-shadow: 0 2px 0 0 #64432a inset; /* Rich Brown underline hover */
  }
  .menu a.btn-cta {
    padding: 10px 14px;
    border-radius: 8px;
    background: #64432a; /* Rich Brown */
    color: #f9f4ef;
  }
  .menu a.btn-cta:hover,
  .menu a.btn-cta:focus {
    box-shadow: none;
    background: #462f1e; /* Dark Brown */
  }
	
.footer-content {
	gap:30px;
	flex-wrap:nowrap;
	}
.footer-logo {
	flex-basis: auto;
}
	
}