/*
 * Bayline Services — Hero & Shared Section Styles
 * Design tokens shared across all pages.
 */

:root {
	--bl-brand-hover: #14497f;
	--bl-navy-deep: #0a2544;
	--bl-sky: #7ec8f7;
	--bl-heading: #0d2f55;
	--bl-body-text: #0f172a;
	--bl-muted: #64748b;
	--bl-bg-light: #f7f9fc;
	--bl-bg-blue: #e8f1fb;
	--bl-border: #e2e8f0;
}

body {
	background-color: #ffffff;
}

/* -----------------------------------------------
   Shared section layout
----------------------------------------------- */

.bl-section-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 5rem 40px;
}

.bl-eyebrow {
	color: var(--wp--preset--color--brand);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 0.75rem;
}

.bl-eyebrow--light {
	color: var(--bl-sky);
}

.bl-section-title {
	color: var(--bl-heading);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	margin: 0 0 0.75rem;
}

.bl-section-title--left {
	text-align: left;
}

.bl-section-intro {
	color: var(--bl-muted);
	font-size: 0.98rem;
	line-height: 1.6;
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

/* -----------------------------------------------
   Reusable buttons
----------------------------------------------- */

.bl-btn {
	display: inline-block;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	border-radius: 6px;
	padding: 0.9rem 1.9rem;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bl-btn--primary {
	background-color: var(--wp--preset--color--brand);
	color: #ffffff;
	border: none;
}

.bl-btn--primary:hover {
	background-color: var(--bl-brand-hover);
	color: #ffffff;
}

.bl-btn--outline {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.7);
}

.bl-btn--outline:hover {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.bl-btn--secondary {
	background-color: transparent;
	color: var(--wp--preset--color--brand);
	border: 1px solid var(--wp--preset--color--brand);
}

.bl-btn--secondary:hover {
	background-color: var(--wp--preset--color--brand);
	color: #ffffff;
}

/* -----------------------------------------------
   Home hero
----------------------------------------------- */

.bl-hero {
	position: relative;
	background-color: var(--bl-navy-deep);
	overflow: hidden;
}

.bl-hero__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 58%;
	background-image:
		linear-gradient(to right, var(--bl-navy-deep) 0%, rgba(10, 37, 68, 0.55) 38%, rgba(10, 37, 68, 0.22) 100%),
		url("../images/hero-building.jpg");
	background-size: cover;
	background-position: center right;
}

.bl-hero__inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 6.5rem 40px 5.5rem;
}

.bl-hero__content {
	max-width: 600px;
}

.bl-hero__title {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 2.25rem;
}

.bl-hero__title-accent {
	color: var(--bl-sky);
}

.bl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (max-width: 1023px) {
	.bl-hero__image {
		width: 100%;
		background-image:
			linear-gradient(to right, rgba(10, 37, 68, 0.92) 0%, rgba(10, 37, 68, 0.75) 100%),
			url("../images/hero-building.jpg");
	}

	.bl-hero__inner {
		padding: 4.5rem 24px 4rem;
	}

	.bl-hero__title {
		font-size: 2rem;
	}

	.bl-section-inner {
		padding: 3.5rem 24px;
	}

	.bl-section-title {
		font-size: 1.3rem;
	}
}
