/* Stutzman Ranch — styles_custom.css */

	font-family: "Andada Pro", sans-serif;       /* headings */
	font-family: "PT Sans", sans-serif;          /* body */
	font-family: "shelby", sans-serif;           /* accent/wordmark — use sparingly */

	--color-olive:       #3d5227;   /* Primary olive green */
	--color-olive-mid:   #4e6a30;   /* Mid olive */
	--color-gold:        #c8961a;   /* Accent gold */
	--color-gold-light:  #e8b52a;   /* Gold light */
	--color-bg:          #f7f2e8;   /* Background cream */
	--color-bg-dark:     #ede7d5;   /* Background dark */
	--color-text:        #2a2a1e;   /* Text */
	--color-text-light:  #5a5a48;   /* Text light */

*/


/* ============================================================
   Scroll offset — compensate for fixed header on anchor nav
   ============================================================ */

html {
	scroll-padding-top: 130px;
}

@media only screen and (max-width: 768px) {
	html {
		scroll-padding-top: 90px;
	}
}


/* ============================================================
   CSS Custom Properties
   ============================================================ */

:root {
	--color-olive:       #3d5227;
	--color-olive-mid:   #4e6a30;
	--color-gold:        #c8961a;
	--color-gold-light:  #e8b52a;
	--color-bg:          #f7f2e8;
	--color-bg-dark:     #ede7d5;
	--color-text:        #2a2a1e;
	--color-text-light:  #5a5a48;
}


/* ============================================================
   Base
   ============================================================ */

html, body {
	padding: 0;
	margin: 0;
}

body {
	font-family: "PT Sans", sans-serif;
	font-size: 16px;
	color: var(--color-text);
	background-color: var(--color-bg);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Andada Pro", sans-serif;
	color: var(--color-olive);
	margin: 0 0 0.5em;
}

a {
	color: var(--color-olive);
}

a:hover {
	color: var(--color-gold);
}

p {
	line-height: 1.7;
	margin: 0 0 1em;
}


/* ============================================================
   Layout Utilities
   ============================================================ */

.pad {
	position: relative;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.Clear {
	clear: both;
	display: block;
	height: 0;
	overflow: hidden;
}


/* ============================================================
   Z-index helpers
   ============================================================ */

.z1 { z-index: 1; }
.z2 { z-index: 2; }
.z3 { z-index: 3; }


/* ============================================================
   Accessibility
   ============================================================ */

.skip-link.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
	background-color: var(--color-bg);
	clip: auto !important;
	clip-path: none;
	color: var(--color-olive);
	display: block;
	font-size: 1em;
	height: auto;
	left: 1em;
	padding: 1em;
	top: 1em;
	width: auto;
	z-index: 100000;
}


/* ============================================================
   Site Header
   ============================================================ */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background-color: transparent;
	z-index: 99;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
	height: 70px;
	background-color: #fff;
	border-bottom: solid 1px #e8e4dc;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .pad {
	align-items: center;
	padding-top: 0;
}

.site-header.scrolled #hdrLogo img {
	height: 50px;
	transition: height 0.3s ease;
}

.site-header.scrolled #navBar ul {
	padding-top: 0;
}

.site-header .pad {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 14px;
	height: 100%;
	max-width: 1280px;
	box-sizing: border-box;
}

#hdrLogo {
	flex-shrink: 0;
}

#hdrLogo a {
	display: block;
	line-height: 0;
}

#hdrLogo img {
	height: 96px;
	width: auto;
}

#navBar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2em;
	padding-top:3px;
}

#navBar ul li a {
	font-family: "PT Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #36401c;
	text-decoration: none;
	transition: color 0.2s ease;
}

#navBar ul li a:hover {
	color: var(--color-gold);
}

#hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 16px;
	background: #3d5227;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 8px 7px;
	box-sizing: content-box;
}

#hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger.is-open span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

#hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

#hamburger.is-open span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}


/* ============================================================
   Hero Section
   ============================================================ */

#hero {
	width: 100%;
	height: 70vh;
	min-height: 480px;
	background-image: url('images/heroMain.jpg?v=2');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
	position: relative;
}

.heroInner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.heroText {
	text-align: left;
	width: 50%;
	padding-right: 1%;
	padding-bottom: 2%;
	padding-left:8%;
	position: relative;
}

.heroText::before {
	content: "";
	position: absolute;
	inset: -20% -10%;
	background: radial-gradient( ellipse at center, rgba( 0, 0, 0, 0.5 ) 0%, transparent 70% );
	pointer-events: none;
	z-index: 0;
}

.heroText > * {
	position: relative;
	z-index: 1;
}

.heroAccent {
	display: block;
	font-family: "shelby", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size:6rem;
	line-height: 1;
	color: #ffcc42;
	text-shadow: 1px 2px 8px rgba(0, 0, 0, 1);
}

.heroTagline-sub {
	font-size: 0.8em;
	letter-spacing: 0.02em;
}

.heroTagline {
	font-family: "Andada Pro", sans-serif;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
	margin:-12px 0 0 0;
}

.heroBtn {
	display: inline-block;
	margin-top: 1.4em;
	padding: 8px 20px;
	background-color: #ffcc42;
	color: #000;
	font-family: "PT Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.heroBtn:hover {
	background-color: #e8b52a;
}


/* ============================================================
   Inner Pages — short hero variant
   ============================================================ */

#hero.hero--short {
	height: auto;
	min-height: 440px;
	background-position: left 0px;
}


/* ============================================================
   Inner Pages — body copy
   ============================================================ */

.entry-content p {
	font-family: "Andada Pro", sans-serif;
	font-size: 1.2rem;
	line-height: 1.7;
	color: #2a2a1e;
	margin-bottom: 1em;
}


/* ============================================================
   Inner Pages — page title banner
   ============================================================ */

.page-banner {
	width: 100%;
	background: linear-gradient( 135deg, #5c7d38 0%, #3d5227 50%, #1e2d0e 100% );
	padding: 52px 0 48px;
}

.page-banner-inner {
	text-align: center;
}

.page-banner-title {
	font-family: "shelby", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 5rem;
	line-height: 1;
	color: #ffcc42;
	text-shadow: 1px 2px 10px rgba( 0, 0, 0, 0.55 );
	margin: 0;
}
