/* Stutzman Ranch — styles_responsive.css */


@media only screen and (max-width: 1280px) {

	#navBar ul {
		gap: 1.4em;
	}

}


/* ----------------------------------------------------------------
   1030px — Hamburger menu, logo scale, hero text farther right
   ---------------------------------------------------------------- */

@media only screen and (max-width: 1030px) {

	/* --- Header: activate hamburger, collapse nav --- */

	#navBar {
		display: none;
		position: absolute;
		top: 120px;
		right: 0;
		left: auto;
		width: auto;
		min-width: 200px;
		background-color: #fff;
		border: solid 1px var(--color-bg-dark);
		border-top: none;
		padding: 0.5em 0;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	}

	.site-header.scrolled #navBar {
		top: 70px;
	}

	#navBar.is-open {
		display: block;
	}

	#navBar ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
	}

	#navBar ul li {
		border-bottom: solid 1px var(--color-bg-dark);
	}

	#navBar ul li:last-child {
		border-bottom: none;
	}

	#navBar ul li a {
		display: block;
		padding: 0.75em 1.4em;
		font-size: 0.9rem;
		text-align: right;
	}

	#hamburger {
		display: flex;
		position: relative;
		top:-25px;
		align-self: center;
		background: #3d5227;
	}
	.site-header.scrolled #hamburger {
		top:0;
	}

	/* --- Logo: scale down to stay within cream cloud area --- */

	#hdrLogo img {
		height: 72px;
	}

	#hero {
		height:auto;
		min-height:440px;
		background-position:left top;
	}
	/* --- Hero: shift text farther right, away from truck --- */
	.heroText {
		width:44%;
		padding-right: 2%;
		padding-left: 1%;
	}

}


/* ----------------------------------------------------------------
   1163px — Inner page short hero: reduce height to close gap
            above page-banner (background-position left as-is)
   ---------------------------------------------------------------- */

@media only screen and (max-width: 1163px) {

	#hero.hero--short {
		min-height: 360px;
	}

}


/* ----------------------------------------------------------------
   980px — Hero text moves below truck, over grass
   ---------------------------------------------------------------- */

@media only screen and (max-width: 980px) {

	#hero {
		background-position:left top;
	}
	.heroInner {
		/*
		align-items: flex-end;
		justify-content: center;
		/**/
	}

	.heroText {
		text-align: right;
		margin-right:2vw;
	}

	/* Collapse "from the / Wenatchee Valley" to a single line */
	.heroTagline br {
		Xdisplay: none;
	}

	.heroAccent {
		font-size: 4rem;
	}

	.heroTagline {
		font-size: 1.4rem;
	}

	.heroBtn {
		font-size: 0.95rem;
	}

}


@media only screen and (max-width: 900px) {

	.heroAccent {
		font-size: 4.5rem;
	}

	.heroTagline {
		font-size: 1.5rem;
	}

}


@media only screen and (max-width: 768px) {

	/* Header */
	.site-header {
		height: 80px;
	}

	#hdrLogo img {
		height: 64px;
	}

	/* Dropdown offset: match 80px header height */
	#navBar {
		top: 80px;
	}

	/* Scrolled header is 70px tall — align menu to match */
	.site-header.scrolled #navBar {
		top: 70px;
	}

	/* Hero — text below image (specificity matches hero--short to override background-position) */
	#hero,
	#hero.hero--short {
		min-height:400px;
		background-position: -40px top;
	}

	.heroInner {
		align-items: flex-end;
		justify-content: center;
	}

	.heroText {
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;
		padding-bottom: 4%;
		margin-right: 0;
		text-align: center;
	}

	.heroAccent {
		font-size: 4.2rem;
	}

	.heroTagline {
		font-size: 1.3rem;
	}

	.heroBtn {
		display: none;
	}

}


@media only screen and (max-width: 480px) {

	#hero {
		background-position: -55px top;
	}

	.heroInner {
		justify-content: flex-start;
	}

	.heroText {
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;
	}

	.heroAccent {
		font-size: 2.6rem;
	}

	.heroTagline {
		font-size: 1.1rem;
	}

	.heroBtn {
		font-size: 0.85rem;
		padding: 10px 20px;
	}

	/* Inner page title banner */
	.page-banner {
		padding: 36px 0 32px;
	}

	.page-banner-title {
		font-size: 3rem;
	}

}


