/* =============================================================
   MAP
   ============================================================= */

#ftrMap {
	width: 100%;
	max-width: 1000px;
	height: 440px;
	overflow: hidden;
	display: block;
	margin: 40px auto 0;
}

#ftrMap iframe {
	width: 100%;
	height: 100%;
	display: block;
}

#ftrMap:hover iframe {
	filter: grayscale(0%);
}


/* =============================================================
   FOOTER
   ============================================================= */

#Footer {
	background-color: #3d5227;
	padding: 60px 0 50px;
}


/* ------------------------------------------------------------
   Hours & Location — full width, three sub-blocks in a row
   ------------------------------------------------------------ */

.ftrInfo {
	width: 100%;
	background-color: #ede7d5;
	padding: 50px 0;
	text-align: center;
}

.ftrInfo-heading {
	font-family: "Andada Pro", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #3d5227;
	margin: 0 0 1.2em;
}

.ftrInfo-cols {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.ftrInfo-block {
	min-width: 160px;
}

.ftrInfo-label {
	font-family: "PT Sans", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #c8961a;
	margin: 0 0 0.5em;
}

.ftrInfo-block p {
	font-family: "PT Sans", sans-serif;
	font-size: 0.95rem;
	color: #5a5a48;
	line-height: 1.7;
	margin: 0;
}

.ftrInfo-block p a {
	color: #5a5a48;
	text-decoration: none;
}

.ftrInfo-block p a:hover {
	color: #3d5227;
}


/* ------------------------------------------------------------
   Subscribe form — centered below
   ------------------------------------------------------------ */

.ftrSubscribe {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	padding-top:40px;
}

.ftrSubscribe-heading {
	font-family: "Andada Pro", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #f7f2e8;
	margin: 0 0 0.4em;
}

.ftrSubscribe-sub {
	font-family: "PT Sans", sans-serif;
	font-size: 1rem;
	color: #c8d8a8;
	margin: 0 0 1.4em;
	line-height: 1.5;
}

/* Both inputs live inside one <p> — make it a flex row */
#Footer .wpcf7 form > p:first-of-type {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 0 0 10px;
}

/* Hide the <br> CF7 puts between the two labels */
#Footer .wpcf7 form > p:first-of-type br {
	display: none;
}

/* Each label becomes a 250px flex item */
#Footer .wpcf7 form > p:first-of-type label {
	flex: 0 0 250px;
}

#Footer .wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

#Footer .wpcf7 input[type="text"],
#Footer .wpcf7 input[type="email"] {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;
	color: #f7f2e8;
	font-family: "PT Sans", sans-serif;
	font-size: 1rem;
	padding: 10px 14px;
	box-sizing: border-box;
}

#Footer .wpcf7 input[type="text"]::placeholder,
#Footer .wpcf7 input[type="email"]::placeholder {
	color: rgba(247, 242, 232, 0.5);
}

/* Submit button — centered below */
#Footer .wpcf7 form > p:last-of-type {
	margin: 0;
	text-align: center;
}

#Footer .wpcf7 input[type="submit"] {
	display: block;
	background-color: #c8961a;
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-family: "PT Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 11px 32px;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
	margin:0 auto;
}

#Footer .wpcf7 input[type="submit"]:hover {
	background-color: #e8b52a;
}

#Footer .wpcf7-response-output {
	border: none;
	color: #c8d8a8;
	font-family: "PT Sans", sans-serif;
	font-size: 0.9rem;
	margin-top: 8px;
	padding: 0;
	text-align: center;
}


/* =============================================================
   SITE CREDITS BAR
   ============================================================= */

#siteCredits {
	background-color: #f7f2e8;
	padding: 14px 0;
	font-family: "PT Sans", sans-serif;
	font-size: 13px;
	color: #5a5a48;
}

#siteCredits .pad {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px;
}

#siteCredits .copyright {
	color: #5a5a48;
}

#siteCredits a.nwwebdev {
	color: #5a5a48;
	text-decoration: none;
	border-left: solid 1px #c8bfa8;
	padding-left: 12px;
	margin-left: 4px;
	transition: color 0.2s ease;
}

#siteCredits a.nwwebdev:hover {
	color: #3d5227;
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media ( max-width: 600px ) {

	.ftrInfo-cols {
		flex-direction: column;
		gap: 28px;
		align-items: center;
	}

	#ftrMap {
		height: 260px;
	}

	#Footer .wpcf7 form > p:first-of-type {
		flex-direction: column;
		align-items: center;
	}

	#Footer .wpcf7 form > p:first-of-type label {
		flex: 0 0 auto;
		width: 100%;
		max-width: 320px;
	}

}


@media ( max-width: 480px ) {

	/* Remove inline divider — looks broken when credits wrap to two lines */
	#siteCredits a.nwwebdev {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}

}
