/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 600px;
	background-image: url("../images/bjornsmide-hero-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--color-primary1);
	text-align: center;
}

/* Overlay */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero > * {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4rem;
}

.hero p {
	max-width: 800px;
	font-size: 2rem;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2.5rem;
	background-color: var(--color-cta);
	color: var(--color-primary2);
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: var(--color-cta-hover);
}

/* ============================================
   MOBILE HERO
   ============================================ */

@media (max-width: 1040px) {
	.hero {
		min-height: 350px;
		padding: 2rem 2rem;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.cta-button {
		font-size: 1.2rem;
		padding: 0.8rem 1.5rem;
	}
}
