:root {
	--color-primary: #c53030;
	--color-primary-dark: #9b2c2c;
	--color-accent: #dd6b20;
	--color-bg: #fffaf0;
	--color-bg-alt: #fef5e7;
	--color-text: #1a202c;
	--color-text-light: #4a5568;
	--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	color: var(--color-text);
	background-color: var(--color-bg);
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Hero Section */
.hero {
	position: relative;
	padding: 8rem 0 6rem;
	text-align: center;
	background-image:
		linear-gradient(135deg, rgba(197, 48, 48, 0.85) 0%, rgba(221, 107, 32, 0.8) 100%),
		url('bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to top, var(--color-bg), transparent);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	background: rgba(255, 255, 255, 0.95);
	padding: 3rem 4rem;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	max-width: 600px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.hero .tagline {
	font-size: 1.25rem;
	color: var(--color-accent);
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.hero .description {
	font-size: 1.1rem;
	color: var(--color-text-light);
	line-height: 1.8;
}

/* Divider */
.divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	margin: 1.5rem auto;
	border-radius: 2px;
}

/* Contact Section */
.contact {
	padding: 5rem 0;
	background-color: #fff;
}

.contact h2 {
	font-size: 1.75rem;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	text-align: center;
	font-weight: 600;
}

.contact-card {
	background: var(--color-bg);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
	max-width: 400px;
	margin: 0 auto;
	border: 1px solid rgba(197, 48, 48, 0.1);
}

.contact address {
	font-style: normal;
	text-align: center;
	color: var(--color-text-light);
	line-height: 2;
}

.contact address strong {
	color: var(--color-text);
	font-size: 1.1rem;
}

.contact .location-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	text-align: center;
}

.email-contact {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.email-icon {
	font-size: 1.25rem;
}

.email {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.email:hover {
	color: var(--color-primary-dark);
	text-decoration: underline;
}

/* Footer */
footer {
	padding: 2rem 0;
	background-color: var(--color-text);
}

footer p {
	text-align: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 600px) {
	.hero {
		padding: 5rem 0 4rem;
		min-height: 60vh;
		background-attachment: scroll;
	}

	.hero-content {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}

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

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

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

	.contact {
		padding: 3rem 0;
	}

	.contact-card {
		margin: 0 1rem;
	}
}
