/**
 * Landing Page - Hero Section Styles
 */

.landing-hero {
	background-size: cover;
	background-position: center;
	padding: 100px 20px;
	text-align: center;
	color: white;
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.landing-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.landing-hero-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
}

.landing-hero h1 {
	font-size: 48px;
	font-family: 'Playfair Display', serif;
	margin: 0 0 20px;
	font-weight: 700;
	letter-spacing: -1px;
	color: #222222;
	line-height: 1.2;
}

.landing-hero p {
	font-size: 18px;
	margin: 0;
	opacity: 0.9;
	font-family: 'Aria', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color:#222222;
}

/* Tablet - 768px y menor */
@media (max-width: 768px) {
	.landing-hero {
		padding: 60px 20px;
		min-height: 350px;
	}

	.landing-hero h1 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.landing-hero p {
		font-size: 16px;
		line-height: 1.5;
	}
}

/* Mobile - 480px y menor */
@media (max-width: 480px) {
	.landing-hero {
		padding: 30px 15px;
		min-height: 200px;
	}

	.landing-hero-content {
		padding: 15px 10px;
	}

	.landing-hero h1 {
		font-size: 28px;
		font-size: 1.8rem;
        margin-bottom: 2.2rem;
        text-shadow: 0 0 2px rgb(156 156 156 / 86%), 0 0 4px rgb(0 0 0 / 40%);
	}

	.landing-hero p {
		font-size: 14px;
		line-height: 1.4;
	}
}
