:root {
	--forest-green: #0f2e1c;
	--earth-tan: #F8FCF9;
	--soft-gold: #C5A059;
	--text-dark: #333333;
	--white: #eef4f0;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background-color: var(--earth-tan);
	color: var(--text-dark);
	line-height: 1.6;
}

/* Hero Section */
header {
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
 color: white;
	padding: 0 20px;
	position: relative;
	overflow: hidden;
}

#bg-canvas {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 0;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-logo {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	margin: 0 0 1rem 0;
	text-transform: uppercase;
}

.glitch-container {
	position: relative;
	display: inline-block;
}

.glitch-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.layer-1 {
	color: var(--white);
	text-shadow: -3px 0 #ff003c;
	left: 2px;
}

.layer-2 {
	color: var(--white);
	text-shadow: 3px 0 #00e5ff;
	left: -2px;
}

.coming-soon-badge {
	display: block;
	width: fit-content;
	margin: 0 auto 20px auto;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 5px 15px;
 border-radius: 20px;
 font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	backdrop-filter: blur(5px);
}

.hero-content p {
	font-size: 1.2rem;
	max-width: 600px;
 margin: 0 auto;
	font-weight: 300;
	letter-spacing: 1px;
}

/* Main Content */
section {
	padding: 80px 20px;
	max-width: 800px;
	margin: 0 auto;
 text-align: center;
}

h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	color: var(--forest-green);
	margin-bottom: 20px;
}

.lead-text {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 40px;
}

/* Form Styling */
.form-container {
	background: var(--white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	text-align: left;
}

.form-group {
	margin-bottom: 25px;
}

label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--forest-green);
	font-size: 0.9rem;
	text-transform: uppercase;
 letter-spacing: 1px;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	transition: border-color 0.3s;
}

input:focus, textarea:focus {
	outline: none;
	border-color: var(--soft-gold);
}

button {
	background-color: var(--forest-green);
	color: white;
	padding: 18px 30px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
	letter-spacing: 1px;
}

button:hover {
	background-color: #08160E;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
	background-color: var(--forest-green);
	color: rgba(255,255,255,0.7);
	padding: 60px 20px;
	text-align: center;
}

.footer-logo {
	font-family: 'Cormorant Garamond', serif;
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.footer-logo-img {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.copyright {
	font-size: 0.8rem;
	margin-top: 20px;
	text-transform: uppercase;
}

/* Thank You Message */
.thank-you-container {
	text-align: center;
	animation: slideInUp 0.6s ease-out;
}

.thank-you-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--forest-green), #1a4d2e);
	color: white;
	border-radius: 50%;
	font-size: 3rem;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(15, 46, 28, 0.2);
}

#thank-you-message h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	color: var(--forest-green);
	margin: 20px 0 10px 0;
}

.thank-you-subtitle {
	font-size: 1.1rem;
	color: var(--soft-gold);
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.thank-you-text {
	font-size: 1rem;
	color: #555;
	line-height: 1.8;
	max-width: 500px;
	margin: 0 auto;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}