/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

header {
	display:flex;
	justify-content: space-between;
	align-items:center;
	padding:1rem;
	background-color: #2E8B57;
	border-bottom:4px solid #FFD700;
}

header h1 {
	color:#F5F5F5;
}

#menu {
  display: none;
  flex-direction: column;
  background-color: #87CEEB;
  border-top: 1px solid #FFD700;
}

#menu.active {
  display: flex;
}

#menu a {
  text-decoration: none;
  color: #222222;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
}

#menu a:last-child {
  border-bottom: none;
}


.intro {
	padding: 1rem;
	text-align: left;
	background-color:#F5F5F5;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	margin:1rem
}

.intro h2 {
	font-size:1.8rem;
	margin-bottom:1rem;
	text-align: center;
	color:#2E8B57;
}

.intro p {
	margin-bottom:1rem;
	line-height:1.6;
	font-size:1rem;
	color:#222222;
}

.intro p+p {
	border-top:1px solid #eee;
	padding-top: 0.8rem;
	margin-top: 0.8rem;
}

.intro img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.google {
	padding:1.5rem;
	margin:1rem;
	background-color: #f9fafc;
	border-radius: 8px;
}

.google h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.review {
	padding:1.5rem;
	margin:1rem;
	background-color: #fff8f0;
	border-radius: 8px;
}

.review h2 {
	text-align: center;
	margin-bottom: 1rem;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.9rem;
	background-color: #2E8B57;
  	color: #fff;
	padding:1rem;
	border-top: 4px solid #FFD700;
}

.menu-items {
	padding: 1.5rem;
	margin: 1rem;
	background-color: #fafafa;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-items h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	text-align: center;
	color: #2a2a2a;
}

.menu-items p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #444;
}

.menu-items ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-items li {
	margin-bottom: 1rem;
	line-height: 1.6;
	font-size: 1rem;
	color: #333;
}
.menu-items li strong {
	display:block;
	font-size: 1.1rem;
	color: #000;
	margin-bottom: 0.3rem;
}

.menu-items h4 {
	display:flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
	margin-top: 1rem;
	color: #222;
}

.menu-items .price {
	font-weight: bold;
	color: #555;
	margin-left: 1rem;
	flex-shrink: 0;
}

.contact-form {
	display:flex;
	flex-direction: column;
	gap:1rem;
}

.contact-form label {
	font-weight: bold;
}

.contact-form input, .contact-form textarea {
	padding:0.5rem;
	border:1px solid #ccc;
	border-radius: 6px;
	font-size:1rem;
}

.contact-form .required {
	color:red;
}

.contact-form button {
	padding:.75rem;
	background-color: #FF7F32;
	border:none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	color:#fff;
}

.logo {
	display:flex;
	align-items: center;
	gap: .75rem;
}

.site-logo {
	height:50px;
	width:auto;
}

.logo h1 {
	font-size: 1.8rem;
	font-weight: bold;
	color:#333;
	margin:0;
}