/**
 * Hero Block Styles
 */

.hero-block {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 2rem;
	text-align: center;
}

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

.hero-subheadline {
	font-size: 1rem;
	font-weight: 400;
	color: #333;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-headline {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #2c3e50;
	margin-bottom: 2rem;
}

.hero-highlight {
	position: relative;
	display: inline-block;
	padding: 0 0.5rem;
}

.hero-highlight-svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	overflow: visible;
	z-index: -1;
	pointer-events: none;
}

.hero-highlight-path {
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	stroke-linecap: round;
	stroke-linejoin: round;
	animation: drawHighlight 2.5s ease-in-out forwards;
}

@keyframes drawHighlight {
	0% {
		stroke-dashoffset: 1200;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

.hero-cta {
	margin-top: 2rem;
	margin-bottom: 1.5rem;
}

.hero-philosophy-line {
	font-size: 1.125rem;
	font-weight: 400;
	font-style: italic;
	color: #4a5568;
	line-height: 1.6;
	margin-top: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn-hero {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	background: transparent;
	border: 2px solid #2c3e50;
	color: #2c3e50;
	text-decoration: none;
	border-radius: 25px;
	font-family: "Poppins", Sans-serif;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	margin-top: 1.5rem;
}

.btn-hero:hover {
	background: #2c3e50;
	color: #fff;
	border-color: #2c3e50;
}

.btn-icon {
	width: 12px;
	height: 12px;
	fill: currentColor;
	transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
	transform: translateY(2px);
}

/* Parallax effect */
.hero-parallax .hero-background {
	will-change: transform;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-headline {
		font-size: 2rem;
	}

	.hero-subheadline {
		font-size: 0.875rem;
	}

	.hero-content {
		padding: 1.5rem;
	}
}

