/**
 * 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-dark: #e6d5c0;
	
	--white: #ffffff;
	
	/* Burnt Orange */
	--burnt-orange: #C4631F;
	
	/* Steel Blue */
	--steel-blue: #2E5873;
}

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 var(--black);
  outline-offset: 2px;
}

/* Hamburger lines */
.nav-toggle-box { display: inline-block; }
.nav-toggle-bar {
  display: block;
  width: 24px; height: 2px;
  margin: 5px 0;
  background: var(--deep-espresso);; /* 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: var(--soft-white);; /* 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: var(--deep-espresso);;
  font-weight: 600;
}

.menu a:hover,
.menu a:focus{
  background: rgba(0,0,0,.04);
  text-decoration: none;
}


a.btn-cta {
	font-weight: 700;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--rich-brown); /* Rich Brown */
	color: var(--soft-white);
}
a.btn-cta:hover,
a.btn-cta:focus {
	box-shadow: none;
	background: var(--dark-brown);/* Dark Brown */
	text-decoration: none;
	color: var(--soft-white);
}




/* 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: var(--steel-blue);
	text-decoration: none;
}
a:hover {
  color: var(--burnt-orange);;
	text-decoration: underline;
}

h2 {
	margin: 5px 0px;
}

p {
	margin: 0px;
}

.b-25 {
	flex: 1 1 calc(25% - 15px);
}

.b-30 {
	flex: 1 1 calc(30% - 15px);
}

.b-50 {
	flex: 1 1 calc(50% - 15px);
}

.b-70 {
	flex: 1 1 calc(70% - 15px);
}

.b-75 {
	flex: 1 1 calc(75% - 15px);
}

.b-100 {
	flex: 1 1 100%;
}

.padding-top {
	padding-top: 15px;
}

.padding-right {
	padding-right: 15px;
}

.padding-bottom {
	padding-bottom: 15px;
}

.padding-left {
	padding-left: 15px;
}

img {
	width: 100%;
}

.card {
	background-color: var(--soft-white);
	display: block;
	border-radius: 5px;
	border: 1px solid var(--light-tan-light);
	padding: 15px;
	text-decoration: none;
	color: var(--deep-espresso-dark);
}

a.card:hover {
	text-decoration: none;
	color: var(--deep-espresso-dark);
}

a.card-hover-bg:hover {
	background-color: var(--light-tan);
}

.card h3 {
	margin: 0px;
 	color: var(--rich-brown);
	text-align: center;
	font-size: 22px;
	margin-bottom: 15px;
}

a.card:hover h3 {
	color: var(--deep-espresso-dark);
}

.text-center {
	text-align: center;
}









.flex-gap {
	gap:15px;
}

.mixed-media-flex {
	display: block;
}

.mixed-media-flex img {
	border-radius: 5px;
}




/* Desktop layout */
@media (min-width: 930px) {
	

.mixed-media-flex {
	display: flex;
	flex-wrap: wrap;
}
	
	  .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: var(--deep-espresso);
		  
		border-top: 2px solid transparent;/* adjust to match your header */
	  }
	  .menu a:hover,
	  .menu a:focus,
	  .menu-active {
		background: transparent;
		border-top: 2px solid var(--rich-brown) !important;
	  }
	
	
	.menu a.btn-cta {
		border: none;
		padding: 10px 14px;
		color: var(--soft-white);
	}
	.menu a.btn-cta:hover,
	.menu a.btn-cta:focus {
		box-shadow: none;
		background: var(--dark-brown);/* Dark Brown */
		border-top: none !important;
	}
	
	
	
	

	.footer-content {
		gap:30px;
		flex-wrap:nowrap;
		}
	.footer-logo {
		flex-basis: auto;
	}
	
}

@media (max-width: 930px) {
	.menu a.btn-cta {
		display: block;
		padding: 14px 16px;
		text-decoration: none;
		color: var(--deep-espresso);
		font-weight: 600;
		color: var(--deep-espresso-dark);
		background: none;
	}
	.menu a.btn-cta:hover,
	.menu a.btn-cta:focus {
		background: rgba(0,0,0,.04);
		text-decoration: none;
		color: var(--burnt-orange);
	}

  .b-25, .b-30, .b-50, .b-70, .b-75 {
    flex: 1 1 100%;
  }
	.flex-gap .b-25, .flex-gap .b-30, .flex-gap .b-50, .flex-gap .b-75 {
		margin-bottom: 15px;
	}
	
}

@media (max-width: 786px) {
	.footer-links, .footer-contact {
		flex-basis: 100%;
	}
}

.form-wrapper {
        max-width: 720px;
        margin: 0 auto 3rem;
    }
    .form-intro {
        margin-bottom: 1.5rem;
    }
    .ar-form {
        display: grid;
        gap: 1rem 1.5rem;
    }
    .form-row {
        display: flex;
        flex-direction: column;
    }
    .form-row label {
        font-weight: 600;
        margin-bottom: 0.35rem;
    }
    .form-row input,
    .form-row select,
    .form-row textarea {
        padding: 0.6rem 0.75rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        font: inherit;
    }
    .form-row textarea {
        min-height: 140px;
        resize: vertical;
    }
    .form-row.error input,
    .form-row.error select,
    .form-row.error textarea {
        border-color: #c0392b;
    }
    .error-message {
        color: #c0392b;
        font-size: 0.85rem;
        margin-top: 0.2rem;
    }
    .form-notice {
        font-size: 0.9rem;
        color: #555;
        margin-top: 0.5rem;
    }
    .form-actions {
        margin-top: 0.75rem;
    }
    .btn-primary {
        background: #2E5873; /* your blue */
        color: #fff;
        border: none;
        padding: 0.7rem 1.3rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
    }
    .btn-primary[disabled] {
        opacity: 0.6;
        cursor: default;
    }
    .form-status {
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }
    .form-status.success {
        color: #2b7a3f;
    }
    .form-status.error {
        color: #c0392b;
    }

    /* Simple two-column for bigger screens on quote form if you want */
    @media (min-width: 768px) {
        .ar-form.two-col {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .ar-form .span-2 {
            grid-column: 1 / -1;
        }
    }