 /* Custom styles to match the image aesthetics */
body {
	font-family: 'Georgia', serif;
	background: url('../images/bg.png');
	background-size: cover;
	color: #1d2f2f;
}
.header-bg {
	background-color: #E0E1DB; /* Header background color */
}
.nav-link {
	color: #09354B; /* Dark grey for nav links */
	transition: color 0.3s ease;
}
.nav-link:hover {
	color: #2a2a2a;
}
.active-link {
	font-weight: bold;
	text-decoration: underline;
}
.plaid-bg {
	background-image: url('/images/bg.png'); /* Plaid pattern from bg.jpg */
	background-size: 100px 100px;
	background-repeat: repeat;
}
.content-box {
	background-color: #5d8061; /* Darker green box background */
	color: white;
}
.price-box {
	background-color: #5d8061; /* Lighter green box background for prices */
	color: white;
}
.text-dark-green {
	color: #09354B; /* Sage green text color */
}
.text-dark-green-2 {
	color: #344d3d; /* Forest green text color */
}
.text-brown {
	color: #600A0A; /* Brown text color for prices */
}
.border-brown {
	border-color: #8B4513;
}
.input-field {
	background-color: #e0e0e0; /* Light grey for input fields */
	border: 1px solid #ccc;
}
.submit-button {
	background-color: #4a6b5c;
	color: white;
	transition: background-color 0.3s ease;
}
.submit-button:hover {
	background-color: #3a5b4c;
}
/* Custom font sizes to match the images */
.text-homepage-title {
	font-size: 2.5rem; /* Adjust as needed */
	line-height: 1.2;
}
.text-homepage-subtitle {
	font-size: 1.5rem;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.text-homepage-title {
		font-size: 3.5rem;
	}
	.text-homepage-subtitle {
		font-size: 2rem;
	}
}