/**
 * Hero Header Styles
 * Based on the React component styles
 */

.header-hero {
	padding: 32px 0;
	min-height: calc(100vh - 110px);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	margin-top: -16px;
	display: flex;
	align-items: center;
}

.header-hero .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Two columns: left = content, right = empty */
.header-hero-row {
	display: flex;
	align-items: center;
	gap: 48px;
	width: 100%;
}

.header-hero-col {
	min-width: 0;
}

.header-hero-col-left {
	flex: 1 1 auto;
}

.header-hero-col-right {
	flex: 0 0 50%;
	max-width: 50%;
}

.header-hero .buttons-container {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.header-hero h1 {
	color: orange;
	margin-bottom: 32px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.header-hero p {
	margin-bottom: 32px;
	font-size: 1.25rem;
	line-height: 1.6;
}

.header-hero[data-size="half"] {
	min-height: auto;
	height: 50vh;
	background-position: top;
}

.header-hero .get-a-quote {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: #fff;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	cursor: pointer;
}

.header-hero .get-a-quote:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.header-hero .get-a-quote i {
	font-size: 18px;
}

.header-hero .get-a-quote-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.header-hero .get-a-quote-white:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: orange;
	color: #fff;
	transform: translateY(-2px);
}

.header-hero .get-a-quote-white i {
	font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {

	.header-hero .buttons-container {
		display: none;
	}

	.header-hero h1 {
		font-size: 2rem;
	}

	.header-hero p {
		font-size: 1.1rem;
	}
}

@media (max-width: 800px) {
	.header-hero-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.header-hero-col-right {
		display: none;
	}
}

@media (max-width: 576px) {
	.header-hero h1 {
		font-size: 1.75rem;
	}

	.header-hero p {
		font-size: 1rem;
	}
}
