/*
	Quiet By Nature - Custom Brand Overrides
	Colors from PDF branding:
	- Orange: #E8751A (headings, primary accents)
	- Teal: #4ECDC4 (secondary accents, borders)
	- Dark olive/gray: #6B6B54 (subtle text)
*/

/* ==========================================
   HEADER - no panel, text sits on the forest
   ========================================== */

#header {
	background-image: none !important;
	background-color: transparent;
}

/* ==========================================
   TEXT SHADOWS for readability on forest
   ========================================== */

#header .content .inner h1 {
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0.35rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

#header .content .inner p {
	text-transform: none;
	letter-spacing: 0.1rem;
	opacity: 1;
	font-weight: 400;
	font-size: 1.05rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   LOGO - bolder border
   ========================================== */

#header .logo {
	border: solid 2px #4ECDC4;
}

#header .logo .icon:before {
	color: #4ECDC4;
}

/* ==========================================
   HEADER CONTENT BORDERS - bolder, more visible
   ========================================== */

#header .content {
	border-color: rgba(78, 205, 196, 0.7);
	border-top-width: 2px;
	border-bottom-width: 2px;
}

/* Connecting line between logo and content - thicker */
#header > *:before {
	background: rgba(78, 205, 196, 0.5) !important;
	width: 2px !important;
	left: calc(50% - 1px) !important;
}

/* Remove connecting line above nav buttons */
#header nav:before {
	display: none !important;
}

/* ==========================================
   MOBILE PADDING FIX - text was touching border
   ========================================== */

@media screen and (max-width: 480px) {
	#header .content .inner {
		padding: 2.5rem 1.5rem !important;
	}
}

@media screen and (max-width: 736px) {
	#header .content .inner {
		padding: 2.5rem 1.5rem;
	}
}

/* ==========================================
   COMING SOON BADGE - solid orange fill
   ========================================== */

.coming-soon {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.45rem 1.8rem;
	background-color: #E8751A;
	border: none;
	border-radius: 3px;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.25rem;
	text-transform: uppercase;
}

/* ==========================================
   NAV BUTTONS - remove outer wrapper border,
   each button gets its own border
   ========================================== */

#header nav ul {
	border: none !important;
}

#header nav ul li {
	border: none !important;
}

#header nav ul li a {
	border: solid 1px rgba(255, 255, 255, 0.6) !important;
	background-color: rgba(0, 0, 0, 0.45);
	font-weight: 400;
}

#header nav ul li a:hover {
	background-color: rgba(78, 205, 196, 0.25);
	border-color: #4ECDC4 !important;
}

#header nav ul li a:active {
	background-color: rgba(78, 205, 196, 0.35);
}

/* Desktop: small gap between side-by-side buttons */
#header nav ul li {
	margin: 0 0.35rem;
}

/* Mobile stacked buttons: gap between them */
@media screen and (max-width: 480px) {
	#header nav ul li {
		margin: 0 0 0.75rem 0;
	}

	#header nav ul li:last-child {
		margin-bottom: 0;
	}
}

/* ==========================================
   BACKGROUND OVERLAY - moderate darkening
   ========================================== */

#bg:before {
	background-image: linear-gradient(
		to top,
		rgba(10, 20, 14, 0.5),
		rgba(10, 20, 14, 0.3) 40%,
		rgba(10, 20, 14, 0.3) 60%,
		rgba(10, 20, 14, 0.5)
	), url("../../images/overlay.png") !important;
}

/* ==========================================
   ARTICLE STYLES (modals)
   ========================================== */

h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
	border-bottom-color: #4ECDC4;
}

#main article h2.major {
	color: #E8751A;
}

#main article h3 {
	color: #4ECDC4;
	margin-top: 1.5rem;
}

/* Lists inside articles */
#main article ul {
	list-style: none;
	padding-left: 0;
}

#main article ul li {
	padding: 0.35rem 0;
	padding-left: 1.5rem;
	position: relative;
}

#main article ul li:before {
	content: "\f06c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #4ECDC4;
	font-size: 0.7rem;
	top: 0.55rem;
}

/* Address block */
.address {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(78, 205, 196, 0.3);
	font-style: normal;
	line-height: 1.8;
}

/* ==========================================
   LINKS
   ========================================== */

a {
	border-bottom-color: rgba(78, 205, 196, 0.4);
}

a:hover {
	color: #4ECDC4;
}

/* ==========================================
   FORM OVERRIDES
   ========================================== */

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	border-color: #4ECDC4 !important;
	box-shadow: 0 0 0 1px #4ECDC4 !important;
}

/* Primary button */
input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	background-color: #E8751A !important;
	color: #ffffff !important;
	border: none;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background-color: #d06815 !important;
}

/* ==========================================
   FOOTER - small frosted pill, just the text
   No backdrop-filter to avoid mobile glitches
   ========================================== */

#footer .copyright {
	opacity: 1;
	font-size: 0.8rem;
	font-weight: 400;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0.4rem 1rem;
	border-radius: 4px;
	display: inline-block;
}

/* ==========================================
   FIX: Don't apply leaf icons to action lists
   ========================================== */

#main article ul.actions li:before {
	content: none;
	display: none;
}

#main article ul.actions li {
	padding-left: 0;
}
