@charset "utf-8";
/* JaysEstimate.css */

p.space { line-height: 0%; }

#sitebackground {
	background-color: #000066;
}

#wrapper {
	background-color: white;
	max-width: 950px;
	margin: auto;
}

#navband {
	font-family: Roboto, Century Gothic, Arial;
	max-width: 950px;
	margin: auto;
	height: 60px;
	background-color: #000066;
	display: flex;
	align-items: center;
}

#navband ul { list-style-type: none; }
#navband a.active { color: lightblue; }
#navband a:hover { color: red; }
#navband a { text-decoration: none; color: white; }
#dontwrap { white-space: nowrap; }
#emaillink { margin-right: auto; }
#menu a { padding: 6px; text-decoration: none; color: white; }
#menu li { display: inline-block; }
#redstripe { height: 9px; background-color: red; }

#header {
	padding-top: 15px;
	margin: auto;
	text-align: center;
	display: block;
	font-family: Roboto, Century Gothic, Arial;
}

#estimate-content {
	padding: 30px 40px 20px 40px;
	font-family: Roboto, Century Gothic, Arial;
}

#estimate-content h1 {
	font-size: 36px;
	color: #000066;
	text-align: center;
	margin-bottom: 10px;
}

h2.estimate-subtitle {
	font-size: 20px;
	color: #666;
	text-align: center;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 20px;
}

#estimate-content > p {
	font-size: 17px;
	line-height: 1.6;
	color: black;
	text-align: center;
	margin-bottom: 25px;
}

#success-message {
	background-color: #e8f5e9;
	border: 2px solid #4caf50;
	border-radius: 8px;
	padding: 20px 25px;
	margin-bottom: 25px;
	text-align: center;
}

#success-message h2 {
	color: #2e7d32;
	margin-top: 0;
	font-size: 22px;
}

#success-message p {
	color: black;
	margin: 0;
	font-size: 16px;
}

#estimate-form-wrap {
	max-width: 650px;
	margin: 0 auto;
}

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

.form-group label {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: #000066;
	margin-bottom: 6px;
}

.required {
	color: red;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px 14px;
	font-size: 16px;
	font-family: Roboto, Century Gothic, Arial;
	border: 2px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #000066;
	outline: none;
}

.form-group textarea {
	resize: vertical;
}

.form-submit {
	text-align: center;
	margin-top: 25px;
}

.form-submit button {
	background-color: #000066;
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 700;
	font-family: Roboto, Century Gothic, Arial;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.form-submit button:hover {
	background-color: red;
}

.form-note {
	font-size: 14px;
	color: #666;
	margin-top: 12px;
}

#footer {
	margin-top: 35px;
	margin-bottom: 35px;
	padding-bottom: 35px;
	text-align: center;
	font-family: Roboto, Century Gothic, Arial;
}

@media screen and (max-width: 775px) {

	#navband {
		max-width: 600px;
		height: auto;
		display: block;
		text-align: center;
	}

	#navband ul {
		list-style-type: none;
		padding-inline-start: 0;
	}

	#estimate-content {
		padding: 20px;
	}

	#estimate-content h1 {
		font-size: 26px;
	}

	h2.estimate-subtitle {
		font-size: 17px;
	}

	.form-submit button {
		width: 100%;
		padding: 15px;
	}

}
