#main {
	width: auto;
	height: 120vh;
	max-width: 100%;
}

.hero {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 1rem;
}

.hero-card {
	background: #d17d3c;
	color: white;
	border-radius: 24px;
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	flex-wrap: wrap;
	overflow: hidden;
}

.hero-text {
	flex: 1;
	min-width: 280px;
}

.hero-text small {
	font-size: 1rem;
	opacity: 0.9;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-text h1 {
	font-size: 3rem;
	margin: 1rem 0;
	line-height: 1.1;
}

.hero-text p {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 500px;
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	background: #ffb24794;
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.05rem;
	font-weight: bold;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn {
	padding: 0.9rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s ease;
}

.primary {
	background: white;
	color: #d17d3c;
}

.primary:hover {
	transform: translateY(-3px);
}

.secondary {
	border: 2px solid white;
	color: white;
}

.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

.hero-image img {
	width: 320px;
	max-width: 100%;
}
