/**
 * Hero Section Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.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;
	opacity: 0.3;
}

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

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

.hero-text {
	max-width: 800px;
	margin: 0 auto;
}

.hero-subtitle {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 1rem;
	opacity: 0.9;
	letter-spacing: 0.05em;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #fff;
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background-color: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

.btn-primary:hover {
	background-color: #005177;
	border-color: #005177;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.btn-secondary {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-secondary:hover {
	background-color: #fff;
	color: #0073aa;
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-large {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.scroll-down {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 25px;
	position: relative;
	text-decoration: none;
}

.scroll-down span {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
}

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

	.hero-description {
		font-size: 1.125rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn-large {
		width: 100%;
		max-width: 300px;
	}

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

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-description {
		font-size: 1rem;
	}
}
